This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/v3-3-test/3-3-fab-ui-package-updates-d83a3cf524
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 2fc0ce89d3b Bump the 3-3-fab-ui-package-updates group across 1
directory with 2 updates
add a033b7a6c61 [v3-3-test] Refuse a separator-bearing secret id before
the team scoped lookup (#70902) (#71041)
add 4140090d787 [v3-3-test] Mask nested entities when writing bulk
audit-log entries (#70890) (#71043)
add 15509f95e53 [v3-3-test] Fix the deadline_reference decorator's
no-parentheses form (#70708) (#70966)
add f624c4e94d2 [v3-3-test] Fix task state store Execution API rejecting
keys that contain slashes (#69178) (#70967)
add 5f98b290fe7 [v3-3-test] Do not import the stored path when rebuilding
a Callback from serialized data (#70704) (#71042)
add 5a9ce036296 [v3-3-test] Resolve the constraints a release ships
instead of taggin… (#71081)
add 188b92cdb1b Fail constraints generation when a released provider is
downgraded (#69870) (#71082)
add e013f62d167 [v3-3-test] Update description on What is Airflow (#70547)
(#71068)
add e105f2cdc97 [v3-3-test] UI: Refresh task details immediately when
switching tasks (#70789) (#71012)
add e681907a7b1 [v3-3-test] Release TI lock before asset listener
callbacks (#70951) (#71065)
add d3be18ffc2d Clarify AssetAlias usage (#67392) (#71087)
add 89e42bae612 Copy 2.11.2 release notes to main (#70648) (#71088)
add 44a31fa84d6 [v3-3-test] Show larger dag run and task instance counts
on the dashboard (#70892) (#71008)
add a0526899cca [v3-3-test] Raise the datamodel-code-generator floor for
the codegen toolchain (#70670) (#70976)
add 319b211218a [v3-3-test] Add regression test for SERVER_TERMINATED
precedence over retry (#70774) (#71066)
add b080248faf2 [v3-3-test] Mask list-shaped Variable values on
deserialization (#70891) (#71069)
add 4e8a1d485a1 [v3-3-test] Fix task callbacks being skipped when
`TriggerDagRunOperator` gets a 404 (#70719) (#71083)
add ac30d808c66 [v3-3-test] Resolve backfill_id in the access dependency
with the type the routes declare (#70889) (#71090)
add 2fe7e032c49 [v3-3-test] Make serde errors for unsupported types a bit
more actionable (#70974) (#70982)
add 358062d98ba [v3-3-test] Hide team scoped values of options registered
as sensitive (#70755) (#71099)
add f6a5f1a0729 Bump the 3-3-fab-ui-package-updates group across 1
directory with 2 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 (2fc0ce89d3b)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/v3-3-test/3-3-fab-ui-package-updates-d83a3cf524
(f6a5f1a0729)
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/ci-amd.yml | 2 +
.github/workflows/ci-arm.yml | 2 +
.github/workflows/generate-constraints.yml | 41 +-
.github/workflows/release-constraints.yml | 248 +++++++++++
.../update-constraints-on-push-stable.yml | 2 +
.github/workflows/update-constraints-on-push.yml | 2 +
README.md | 2 +
RELEASE_NOTES.rst | 27 ++
.../docs/authoring-and-scheduling/assets.rst | 10 +-
airflow-core/docs/howto/deadline-alerts.rst | 7 +
airflow-core/docs/index.rst | 6 +-
airflow-core/newsfragments/70708.bugfix.rst | 1 +
airflow-core/newsfragments/70755.significant.rst | 29 ++
.../core_api/datamodels/ui/dashboard.py | 4 +-
.../api_fastapi/core_api/openapi/_private_ui.yaml | 12 +-
.../api_fastapi/core_api/routes/public/config.py | 4 +-
.../airflow/api_fastapi/core_api/routes/ui/dags.py | 3 +
.../api_fastapi/core_api/routes/ui/dashboard.py | 88 ++--
.../src/airflow/api_fastapi/core_api/security.py | 21 +-
.../api_fastapi/core_api/services/public/config.py | 5 +
.../airflow/api_fastapi/execution_api/AGENTS.md | 4 +-
.../execution_api/routes/task_instances.py | 21 +-
.../execution_api/routes/task_state_store.py | 6 +-
.../execution_api/versions/v2026_06_30.py | 6 +-
.../src/airflow/api_fastapi/logging/decorators.py | 59 ++-
airflow-core/src/airflow/assets/manager.py | 63 ++-
airflow-core/src/airflow/models/taskinstance.py | 13 +-
.../src/airflow/secrets/environment_variables.py | 46 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 14 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 3 +-
.../ui/src/components/TaskTrySelect.test.tsx | 128 ++++++
.../airflow/ui/src/components/TaskTrySelect.tsx | 1 +
.../Dashboard/HistoricalMetrics/DagRunMetrics.tsx | 19 +-
.../HistoricalMetrics/HistoricalMetrics.tsx | 4 +-
.../Dashboard/HistoricalMetrics/MetricSection.tsx | 5 +-
.../HistoricalMetrics/TaskInstanceMetrics.tsx | 14 +-
.../src/pages/TaskInstance/TaskInstance.test.tsx | 144 ++++++
.../ui/src/pages/TaskInstance/TaskInstance.tsx | 1 +
.../always/test_secrets_environment_variables.py | 44 ++
.../core_api/routes/public/test_config.py | 64 +++
.../core_api/routes/ui/test_dashboard.py | 66 ++-
.../unit/api_fastapi/core_api/test_security.py | 51 ++-
.../versions/head/test_task_instances.py | 78 ++++
.../versions/head/test_task_state_store.py | 26 ++
.../unit/api_fastapi/logging/test_decorators.py | 150 +++++++
airflow-core/tests/unit/assets/test_manager.py | 38 ++
.../cli/commands/test_rotate_fernet_key_command.py | 2 +-
.../tests/unit/dag_processing/test_processor.py | 8 +
airflow-core/tests/unit/models/test_deadline.py | 39 ++
airflow-ctl/pyproject.toml | 2 +-
.../airflowctl/api/datamodels/auth_generated.py | 2 +-
.../src/airflowctl/api/datamodels/generated.py | 379 ++++++++--------
.../tests/airflow_ctl/api/test_operations.py | 65 ++-
.../ctl/commands/test_connections_command.py | 4 +-
.../airflow_ctl/ctl/commands/test_dag_command.py | 9 +
.../ctl/commands/test_variable_command.py | 5 +-
dev/README_RELEASE_AIRFLOW.md | 50 ++-
dev/breeze/doc/09_release_management_tasks.rst | 54 +++
...put_release-management_generate-constraints.svg | 54 ++-
...put_release-management_generate-constraints.txt | 2 +-
.../output_setup_check-all-params-in-groups.svg | 24 +-
.../output_setup_check-all-params-in-groups.txt | 2 +-
.../output_setup_regenerate-command-images.svg | 2 +-
.../output_setup_regenerate-command-images.txt | 2 +-
dev/breeze/doc/images/output_workflow-run.svg | 14 +-
dev/breeze/doc/images/output_workflow-run.txt | 2 +-
.../output_workflow-run_release-constraints.svg | 138 ++++++
.../output_workflow-run_release-constraints.txt | 1 +
.../commands/release_candidate_command.py | 31 +-
.../src/airflow_breeze/commands/release_command.py | 48 +-
.../commands/release_management_commands.py | 4 +
.../commands/release_management_commands_config.py | 1 +
.../airflow_breeze/commands/workflow_commands.py | 44 ++
.../commands/workflow_commands_config.py | 12 +-
.../airflow_breeze/utils/release_constraints.py | 61 +++
dev/breeze/tests/test_release_command.py | 57 +--
dev/breeze/tests/test_release_constraints.py | 91 ++++
devel-common/src/tests_common/pytest_plugin.py | 3 +
.../tests/unit/amazon/aws/hooks/test_base_aws.py | 6 +
.../src/airflow/providers/fab/www/pnpm-lock.yaml | 24 +-
.../unit/openlineage/plugins/test_listener.py | 14 +-
reproducible_build.yaml | 4 +-
scripts/in_container/run_generate_constraints.py | 179 +++++++-
.../cli => scripts/tests/in_container}/__init__.py | 0
.../in_container/test_run_generate_constraints.py | 150 +++++++
.../src/airflow_shared/configuration/parser.py | 124 +++++-
.../tests/configuration/test_parser.py | 143 ++++++
task-sdk/pyproject.toml | 2 +-
task-sdk/src/airflow/sdk/api/client.py | 6 +-
.../src/airflow/sdk/api/datamodels/_generated.py | 106 ++---
task-sdk/src/airflow/sdk/definitions/callback.py | 22 +
task-sdk/src/airflow/sdk/definitions/deadline.py | 46 +-
task-sdk/src/airflow/sdk/execution_time/context.py | 5 +
.../airflow/sdk/execution_time/schema/schema.json | 494 +++++++++++----------
.../src/airflow/sdk/execution_time/task_runner.py | 98 +++-
task-sdk/src/airflow/sdk/serde/__init__.py | 13 +-
task-sdk/tests/conftest.py | 2 +
task-sdk/tests/task_sdk/api/test_client.py | 55 +++
task-sdk/tests/task_sdk/bases/test_hook.py | 2 +
.../tests/task_sdk/definitions/test_callback.py | 127 ++++++
.../tests/task_sdk/definitions/test_connection.py | 11 +-
.../execution_time/test_callback_supervisor.py | 22 +-
.../tests/task_sdk/execution_time/test_comms.py | 1 +
.../tests/task_sdk/execution_time/test_context.py | 85 +++-
.../task_sdk/execution_time/test_context_cache.py | 17 +-
.../tests/task_sdk/execution_time/test_secrets.py | 3 +
.../task_sdk/execution_time/test_supervisor.py | 97 +++-
.../task_sdk/execution_time/test_task_runner.py | 317 ++++++++++++-
task-sdk/tests/task_sdk/serde/test_serde.py | 18 +-
uv.lock | 17 +-
110 files changed, 4081 insertions(+), 925 deletions(-)
create mode 100644 .github/workflows/release-constraints.yml
create mode 100644 airflow-core/newsfragments/70708.bugfix.rst
create mode 100644 airflow-core/newsfragments/70755.significant.rst
create mode 100644
airflow-core/src/airflow/ui/src/components/TaskTrySelect.test.tsx
create mode 100644
airflow-core/src/airflow/ui/src/pages/TaskInstance/TaskInstance.test.tsx
create mode 100644
dev/breeze/doc/images/output_workflow-run_release-constraints.svg
create mode 100644
dev/breeze/doc/images/output_workflow-run_release-constraints.txt
create mode 100644 dev/breeze/src/airflow_breeze/utils/release_constraints.py
create mode 100644 dev/breeze/tests/test_release_constraints.py
copy {providers/keycloak/src/airflow/providers/keycloak/auth_manager/cli =>
scripts/tests/in_container}/__init__.py (100%)
create mode 100644 scripts/tests/in_container/test_run_generate_constraints.py