This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-f7fe840db6
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 156e631a13e Bump the core-ui-package-updates group across 1 directory
with 58 updates
add b867d5dc5ff Change translation freeze setting to False (#56116)
(#58631)
add 3cda11b1ce1 [v3-1-test] Convert `check_translation_completeness.py`
into breeze command (#58637) (#58654)
add 24d1594faa4 [v3-1-test] Fix connection retrieval from secrets backend
without conn_type (#58528) (#58664)
add 6ba77b8e3b7 [v3-1-test] Improve 404 handling by adding fallback route
for invalid URLs (#58546) (#58629)
add abcac64f624 Add number of queries guard for ui structure (#58051)
(#58632)
add 6b9f3cd690c Update refresh token flow (#55506) (#58649)
add f3111bc68b2 [v3-1-test] Minor updates to the python client release
guide (#58665) (#58668)
add 7269e385c42 Bump the core-ui-package-updates group across 1 directory
with 58 updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (156e631a13e)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-f7fe840db6
(7269e385c42)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/basic-tests.yml | 17 +-
.pre-commit-config.yaml | 10 +-
airflow-core/src/airflow/api_fastapi/app.py | 2 +
.../api_fastapi/auth/managers/base_auth_manager.py | 11 +-
.../auth/middlewares}/__init__.py | 0
.../api_fastapi/auth/middlewares/refresh_token.py | 68 ++++
.../src/airflow/api_fastapi/core_api/app.py | 6 +
.../core_api/openapi/v2-rest-api-generated.yaml | 34 --
.../api_fastapi/core_api/routes/public/auth.py | 20 --
.../api_fastapi/core_api/routes/ui/structure.py | 3 +
.../src/airflow/ui/openapi-gen/queries/common.ts | 6 -
.../ui/openapi-gen/queries/ensureQueryData.ts | 11 -
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 11 -
.../src/airflow/ui/openapi-gen/queries/queries.ts | 11 -
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 11 -
.../ui/openapi-gen/requests/services.gen.ts | 24 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 25 --
airflow-core/src/airflow/ui/package.json | 4 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 112 +++----
airflow-core/src/airflow/ui/public/i18n/README.md | 68 ++--
.../airflow/ui/public/i18n/locales/en/common.json | 1 +
airflow-core/src/airflow/ui/src/pages/Error.tsx | 5 +-
airflow-core/src/airflow/ui/src/router.tsx | 4 +
.../auth/managers/test_base_auth_manager.py | 3 +
.../unit/api_fastapi/auth/middlewares}/__init__.py | 0
.../auth/middlewares/test_refresh_token.py | 106 ++++++
.../core_api/routes/public/test_auth.py | 61 ----
.../api_fastapi/core_api/routes/test_routes.py | 1 -
.../core_api/routes/ui/test_structure.py | 15 +-
dev/README_RELEASE_PYTHON_CLIENT.md | 17 +-
dev/breeze/doc/09_release_management_tasks.rst | 10 +-
dev/breeze/doc/10_ui_tasks.rst | 75 +++++
...ze_topics.rst => 11_advanced_breeze_topics.rst} | 0
dev/breeze/doc/README.rst | 3 +-
dev/breeze/doc/images/output-commands.svg | 34 +-
.../output_setup_check-all-params-in-groups.svg | 24 +-
.../output_setup_check-all-params-in-groups.txt | 2 +-
.../output_setup_regenerate-command-images.svg | 28 +-
.../output_setup_regenerate-command-images.txt | 2 +-
dev/breeze/doc/images/output_ui.svg | 103 ++++++
dev/breeze/doc/images/output_ui.txt | 1 +
.../output_ui_check-translation-completeness.svg | 120 +++++++
.../output_ui_check-translation-completeness.txt | 1 +
dev/breeze/src/airflow_breeze/breeze.py | 2 +
.../src/airflow_breeze/commands/ui_commands.py} | 366 +++++++++++----------
.../airflow_breeze/commands/ui_commands_config.py | 34 +-
.../src/airflow_breeze/configure_rich_click.py | 15 +-
.../src/airflow_breeze/utils/selective_checks.py | 2 +-
dev/breeze/tests/test_selective_checks.py | 1 +
dev/breeze/tests/test_ui_commands.py | 347 +++++++++++++++++++
devel-common/src/docs/utils/conf_constants.py | 1 -
.../keycloak/auth_manager/keycloak_auth_manager.py | 28 +-
.../keycloak/auth_manager/routes/test_login.py | 77 +----
.../auth_manager/test_keycloak_auth_manager.py | 39 +++
task-sdk/src/airflow/sdk/definitions/connection.py | 6 -
.../tests/task_sdk/definitions/test_connection.py | 17 -
56 files changed, 1341 insertions(+), 664 deletions(-)
copy airflow-core/src/airflow/{api/common =>
api_fastapi/auth/middlewares}/__init__.py (100%)
create mode 100644
airflow-core/src/airflow/api_fastapi/auth/middlewares/refresh_token.py
copy airflow-core/{src/airflow/api/common =>
tests/unit/api_fastapi/auth/middlewares}/__init__.py (100%)
create mode 100644
airflow-core/tests/unit/api_fastapi/auth/middlewares/test_refresh_token.py
create mode 100644 dev/breeze/doc/10_ui_tasks.rst
rename dev/breeze/doc/{10_advanced_breeze_topics.rst =>
11_advanced_breeze_topics.rst} (100%)
create mode 100644 dev/breeze/doc/images/output_ui.svg
create mode 100644 dev/breeze/doc/images/output_ui.txt
create mode 100644
dev/breeze/doc/images/output_ui_check-translation-completeness.svg
create mode 100644
dev/breeze/doc/images/output_ui_check-translation-completeness.txt
rename dev/{i18n/check_translations_completeness.py =>
breeze/src/airflow_breeze/commands/ui_commands.py} (86%)
mode change 100755 => 100644
copy airflow-core/tests/unit/utils/test_strings.py =>
dev/breeze/src/airflow_breeze/commands/ui_commands_config.py (64%)
create mode 100644 dev/breeze/tests/test_ui_commands.py