This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-a782a09749
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 804e476baa3 Bump the ui-plugin-template-package-updates group across 1
directory with 15 updates
add b9a23eec792 improved a log message in the dag parsing. (#60789)
add 3ac2c63e5c6 Bump the core-ui-package-updates group across 1 directory
with 9 updates (#60792)
add ccf553fa9b6 Bump the fab-ui-package-updates group across 1 directory
with 5 updates (#60791)
add 19ff4128b2e Fix missing fastavro after PR #60732 (#60797)
add 41403de774f Move deadline_alerts into their own table for UI
integration (#58248)
add 728079af9b0 Add E2E test to verify XComs page displays XCom entries
correctly #59358 (#60620)
add ad8ce129d08 Adding Airflow generic version for Breeze installations
for Airflow (#60809)
add 84fbeec0e6d Fix TaskSDK unit test config file path handling for
installed packages and monorepo structure (#60811)
add 5d395e07d42 build: upgrade prek to 0.2.30 (#60816)
add 2abd3093baa Add task-sdk label to execution_api PRs (#60819)
add fbb200e4151 Fix unnecessary DAG version churn when DAG file paths
change (#60799)
add c441e4bf12f Reduce API server memory usage by eliminating
`SerializedDAG` loads on task start (#60803)
add a7120d28383 Move fernet utils in serde to remove core dependency
(#60771)
add d889b97660a Correct some cross references in shared library and sdk
plugins_manager (#60698)
add be1562b1ac7 Update cherry-picker failure notice to include install
steps (#60823)
add 57146f09588 more explicit secrets path error messages (#55015) (#59224)
add e7efeedccb6 add static checker for preventing to increase dag version
(#59430)
add 9f0099fd464 Logout the user when the refresh token is no longer valid
(#60781)
add 6480471aff6 Remove non-logic redundant selection and query in FAB
(#60807)
add 0e31fcbefa2 Fix: In the log.exception() , the format specifier for the
first parameter is missing (#58295)
add 4bf1bfff16a CI: Upgrade important CI environment (#60827)
add efb27dc9e2f Fix connection test API to restore masked password/extra
from existing connections (#59643)
add faab1c79400 Bump the ui-plugin-template-package-updates group across 1
directory with 15 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 (804e476baa3)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-a782a09749
(faab1c79400)
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/actions/install-prek/action.yml | 2 +-
.github/boring-cyborg.yml | 9 +-
.pre-commit-config.yaml | 2 +-
Dockerfile.ci | 2 +-
airflow-core/docs/img/airflow_erd.sha256 | 2 +-
airflow-core/docs/img/airflow_erd.svg | 4496 ++++++++++----------
airflow-core/docs/migrations-ref.rst | 5 +-
airflow-core/newsfragments/60803.significant.rst | 1 +
.../auth/managers/exceptions.py} | 4 +-
.../auth/managers/simple/ui/package-lock.json | 250 +-
.../auth/managers/simple/ui/package.json | 18 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 533 +--
.../api_fastapi/auth/middlewares/refresh_token.py | 31 +-
.../core_api/openapi/v2-rest-api-generated.yaml | 1 +
.../core_api/routes/public/connections.py | 19 +-
.../execution_api/datamodels/taskinstance.py | 2 -
.../execution_api/routes/task_instances.py | 58 +-
.../api_fastapi/execution_api/versions/__init__.py | 7 +-
.../execution_api/versions/v2026_03_31.py | 21 +-
.../src/airflow/config_templates/config.yml | 16 +
.../src/airflow/dag_processing/bundles/base.py | 2 +-
.../src/airflow/dag_processing/collection.py | 14 +-
airflow-core/src/airflow/dag_processing/manager.py | 12 +-
.../src/airflow/dag_processing/processor.py | 18 +-
.../0099_3_2_0_ui_improvements_for_deadlines.py | 677 +++
airflow-core/src/airflow/models/__init__.py | 3 +
airflow-core/src/airflow/models/dag.py | 9 +-
airflow-core/src/airflow/models/dagrun.py | 9 +-
airflow-core/src/airflow/models/dagwarning.py | 1 +
airflow-core/src/airflow/models/deadline.py | 22 +-
airflow-core/src/airflow/models/deadline_alert.py | 105 +
airflow-core/src/airflow/models/serialized_dag.py | 84 +-
airflow-core/src/airflow/models/variable.py | 2 +-
.../src/airflow/serialization/definitions/dag.py | 95 +-
.../definitions/deadline.py} | 16 +-
.../airflow/serialization/serialized_objects.py | 36 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 2 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 2 +-
airflow-core/src/airflow/ui/playwright.config.ts | 3 +
.../ui/src/components/ExpandCollapseButtons.tsx | 2 +
.../ui/src/components/FilterBar/FilterBar.tsx | 1 +
.../src/airflow/ui/tests/e2e/pages/XComsPage.ts | 222 +
.../ui/tests/e2e/specs/dag-audit-log.spec.ts | 14 +-
.../src/airflow/ui/tests/e2e/specs/xcoms.spec.ts | 104 +
.../airflow/utils/dag_version_inflation_checker.py | 529 +++
airflow-core/src/airflow/utils/db.py | 2 +-
.../auth/middlewares/test_refresh_token.py | 6 +-
.../core_api/routes/public/test_connections.py | 137 +-
.../core_api/routes/public/test_dag_warning.py | 5 +-
.../versions/head/test_task_instances.py | 72 +-
.../versions/v2025_04_28/test_task_instances.py | 67 +-
.../tests/unit/dag_processing/bundles/test_base.py | 28 +-
.../tests/unit/dag_processing/test_processor.py | 35 +
.../unit/dags/test_dag_version_inflation_check.py | 97 +
airflow-core/tests/unit/jobs/test_scheduler_job.py | 30 +-
airflow-core/tests/unit/models/test_dag.py | 24 +-
airflow-core/tests/unit/models/test_dagrun.py | 170 +-
airflow-core/tests/unit/models/test_deadline.py | 54 +-
.../tests/unit/models/test_deadline_alert.py | 189 +
.../unit/serialization/test_dag_serialization.py | 40 +-
.../unit/serialization/test_serialized_objects.py | 2 +-
.../utils/test_dag_version_inflation_checker.py | 735 ++++
.../src/airflowctl/api/datamodels/generated.py | 1 +
dev/README_RELEASE_PROVIDERS.md | 2 +
dev/backport/update_backport_status.py | 2 +
dev/breeze/doc/ci/02_images.md | 2 +-
dev/breeze/pyproject.toml | 2 +-
.../commands/release_management_commands.py | 4 +-
dev/breeze/uv.lock | 134 +-
devel-common/src/tests_common/pytest_plugin.py | 5 -
devel-common/src/tests_common/test_utils/db.py | 8 +
providers/databricks/pyproject.toml | 1 +
.../fab/auth_manager/security_manager/override.py | 11 -
.../airflow/providers/fab/www/package-lock.json | 1080 +++--
.../fab/src/airflow/providers/fab/www/package.json | 10 +-
...ae17e66a9a3f.js => 743.8fb7d21632ed892227fe.js} | 2 +-
...txt => 743.8fb7d21632ed892227fe.js.LICENSE.txt} | 0
...> airflowDefaultTheme.51e5d14856ee1ebc83ca.css} | 0
...=> airflowDefaultTheme.51e5d14856ee1ebc83ca.js} | 0
...628cf7be.css => flash.865b6940c00b2a9041b3.css} | 0
...b3628cf7be.js => flash.865b6940c00b2a9041b3.js} | 0
...8f.css => loadingDots.07f5b9805847242736e1.css} | 0
...c08f.js => loadingDots.07f5b9805847242736e1.js} | 0
...33e2a3bab.css => main.99b8deb941ee474726c9.css} | 0
...d133e2a3bab.js => main.99b8deb941ee474726c9.js} | 2 +-
...xt => main.99b8deb941ee474726c9.js.LICENSE.txt} | 0
.../providers/fab/www/static/dist/manifest.json | 26 +-
....css => materialIcons.4fe84ae36604d84dec78.css} | 0
...bf.js => materialIcons.4fe84ae36604d84dec78.js} | 0
...fe9c405ac.js => moment.0ec3ee3fb60dc999b1fd.js} | 0
...3ac79c64.js => runtime.45b36fb8335446865b53.js} | 0
providers/fab/www-hash.txt | 2 +-
.../hashicorp/_internal_client/vault_client.py | 4 +-
.../airflow/providers/hashicorp/secrets/vault.py | 16 +-
.../tests/unit/hashicorp/secrets/test_vault.py | 58 +
.../keycloak/auth_manager/keycloak_auth_manager.py | 21 +-
.../keycloak/auth_manager/routes/login.py | 21 +-
.../keycloak/auth_manager/routes/test_login.py | 16 +
.../auth_manager/test_keycloak_auth_manager.py | 10 +-
.../src/airflow_shared/module_loading/__init__.py | 22 +-
.../tests/module_loading/test_module_loading.py | 70 +-
shared/plugins_manager/pyproject.toml | 1 +
.../plugins_manager/plugins_manager.py | 2 +-
.../src/airflow/sdk/api/datamodels/_generated.py | 3 -
task-sdk/src/airflow/sdk/configuration.py | 9 +-
.../models => task-sdk/src/airflow/sdk}/crypto.py | 27 +-
.../sdk/definitions/_internal/expandinput.py | 4 +-
task-sdk/src/airflow/sdk/definitions/deadline.py | 14 +-
task-sdk/src/airflow/sdk/definitions/xcom_arg.py | 23 +-
.../src/airflow/sdk/execution_time/task_mapping.py | 133 +
.../src/airflow/sdk/execution_time/task_runner.py | 39 +-
task-sdk/src/airflow/sdk/plugins_manager.py | 2 +-
.../src/airflow/sdk/serde/serializers/deltalake.py | 4 +-
.../src/airflow/sdk/serde/serializers/iceberg.py | 4 +-
.../task_sdk/definitions/test_mappedoperator.py | 147 +-
task-sdk/tests/task_sdk/docs/test_public_api.py | 1 +
.../task_sdk/execution_time/test_task_mapping.py | 189 +
task-sdk/tests/task_sdk/serde/test_serializers.py | 4 +
task-sdk/tests/task_sdk/test_crypto.py | 137 +
119 files changed, 7605 insertions(+), 3826 deletions(-)
create mode 100644 airflow-core/newsfragments/60803.significant.rst
copy airflow-core/src/airflow/{models/skipmixin.py =>
api_fastapi/auth/managers/exceptions.py} (86%)
create mode 100644
airflow-core/src/airflow/migrations/versions/0099_3_2_0_ui_improvements_for_deadlines.py
create mode 100644 airflow-core/src/airflow/models/deadline_alert.py
copy airflow-core/src/airflow/{api/client/__init__.py =>
serialization/definitions/deadline.py} (69%)
create mode 100644 airflow-core/src/airflow/ui/tests/e2e/pages/XComsPage.ts
create mode 100644 airflow-core/src/airflow/ui/tests/e2e/specs/xcoms.spec.ts
create mode 100644
airflow-core/src/airflow/utils/dag_version_inflation_checker.py
create mode 100644
airflow-core/tests/unit/dags/test_dag_version_inflation_check.py
create mode 100644 airflow-core/tests/unit/models/test_deadline_alert.py
create mode 100644
airflow-core/tests/unit/utils/test_dag_version_inflation_checker.py
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{743.0c0bf201ae17e66a9a3f.js
=> 743.8fb7d21632ed892227fe.js} (99%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{743.0c0bf201ae17e66a9a3f.js.LICENSE.txt
=> 743.8fb7d21632ed892227fe.js.LICENSE.txt} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{airflowDefaultTheme.ef6fc04c9b6920cd75c9.css
=> airflowDefaultTheme.51e5d14856ee1ebc83ca.css} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{airflowDefaultTheme.ef6fc04c9b6920cd75c9.js
=> airflowDefaultTheme.51e5d14856ee1ebc83ca.js} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{flash.eaaf777ec1b3628cf7be.css
=> flash.865b6940c00b2a9041b3.css} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{flash.eaaf777ec1b3628cf7be.js
=> flash.865b6940c00b2a9041b3.js} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{loadingDots.76f4332c0a932c3dc08f.css
=> loadingDots.07f5b9805847242736e1.css} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{loadingDots.76f4332c0a932c3dc08f.js
=> loadingDots.07f5b9805847242736e1.js} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{main.bc1f701c3d133e2a3bab.css
=> main.99b8deb941ee474726c9.css} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{main.bc1f701c3d133e2a3bab.js
=> main.99b8deb941ee474726c9.js} (97%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{main.bc1f701c3d133e2a3bab.js.LICENSE.txt
=> main.99b8deb941ee474726c9.js.LICENSE.txt} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{materialIcons.ad07a489b2f0fc1a96bf.css
=> materialIcons.4fe84ae36604d84dec78.css} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{materialIcons.ad07a489b2f0fc1a96bf.js
=> materialIcons.4fe84ae36604d84dec78.js} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{moment.5b85b4f6be2fe9c405ac.js
=> moment.0ec3ee3fb60dc999b1fd.js} (100%)
rename
providers/fab/src/airflow/providers/fab/www/static/dist/{runtime.254c277d91ce3ac79c64.js
=> runtime.45b36fb8335446865b53.js} (100%)
copy {airflow-core/src/airflow/models => task-sdk/src/airflow/sdk}/crypto.py
(81%)
create mode 100644 task-sdk/src/airflow/sdk/execution_time/task_mapping.py
create mode 100644 task-sdk/tests/task_sdk/execution_time/test_task_mapping.py
create mode 100644 task-sdk/tests/task_sdk/test_crypto.py