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/api_fastapi/auth/managers/simple/ui/core-ui-package-updates-4677d33891
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 8ffff1500d6 Bump the core-ui-package-updates group across 1 directory
with 15 updates
add e55861f94ad Fix trigger rule error messages showing enum names instead
of values (#54774)
add e8a306f4b0f Add descriptive error message for invalid _cmd config
options (#54452)
add b48260dff09 Allow setting restartPolicy for batch jobs in chart
(#54354)
add 819db98a498 Improve test maintainability for supervisor request
handling tests (#54792)
add fdef01c7d25 `get_parsing_context` is no longer experimental (#54793)
add 96fef1f1dd4 Close German translation gaps for full UI translation
2025-08-21 (#54803)
add 2b10f1a420b Correct Trigger-Form UI Docs for current Airflow 3
features (#54799)
add db02dc1b28e Add map_index_template to MappedOperator (#54648)
add a63fc7b7eb4 Merge mapped and non-mapped HITL endpoints into one
(#54723)
add b4ea958d5d9 Relocate MaskSecret comms tests into task SDK comms tests
(#54795)
add 600716ffb97 Fix MySQL UUID generation in task_instance migration
(#54814)
add 27ce7614650 Fix external_python task failure when
``expect_airflow=False`` (#54809)
add e51d22a3f76 Refactor trigger rule string extraction in
``TriggerRuleDep`` (#54797)
add 4362c25e5cb Allow rendering of template fields with start from trigger
(#53071)
add d7e288339b1 feat(docs): Add bugraoz93 to publish doc action (#54805)
add 7cb7b35eeed feat(hitl): record HITLDetail action in audit log (#54767)
add 3c68c5036d1 Fix old release notes entry about pre-commit (#54819)
add 1cb057f5c27 Throttle HTTPError during consume pod logs (#54761)
add 7f307732fa6 feature: Add OpenLineage support for pubsub create
subscription operator - include inputs into OL (#54785)
add 8de1dbf24e0 Bump github.com/go-viper/mapstructure/v2 from 2.3.0 to
2.4.0 in /go-sdk (#54787)
add 89ea580864c Enhanced Pod Failure Logging in KubernetesExecutor
(#54115)
add 94b443f2299 Fix SMTP email template when mark_success_url is undefined
for RuntimeTaskInstance objects (#54680)
add 2f58d7635eb PostgresDialect should use index instead of name in
get_column_names and get_primary_keys (#54832)
add 05ceb9ddedd AIP-67 - Multi-team config: Executors (#54486)
add 7ba6d9f7163 feat(task_instances): add try_number as filter (#54695)
add dd5820b138c Support bar click in Gantt chart for taskI selection
(#54790)
add 2821393915d Fix XCom ``include_prior_dates`` API versioning coverage
(#54810)
add 7beaf8e75bb Bump the core-ui-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 (8ffff1500d6)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/core-ui-package-updates-4677d33891
(7beaf8e75bb)
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/publish-docs-to-s3.yml | 3 +-
RELEASE_NOTES.rst | 2 +-
airflow-core/docs/core-concepts/params.rst | 5 +-
airflow-core/docs/howto/dynamic-dag-generation.rst | 26 +-
airflow-core/docs/img/airflow_erd.sha256 | 2 +-
airflow-core/docs/img/airflow_erd.svg | 3852 ++++++++++----------
.../auth/managers/simple/ui/package-lock.json | 8 +-
.../auth/managers/simple/ui/package.json | 2 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 36 +-
.../src/airflow/api_fastapi/common/parameters.py | 9 +
.../core_api/openapi/v2-rest-api-generated.yaml | 161 +-
.../api_fastapi/core_api/routes/public/hitl.py | 74 +-
.../core_api/routes/public/task_instances.py | 11 +-
.../execution_api/versions/v2025_08_10.py | 5 +-
airflow-core/src/airflow/configuration.py | 11 +-
.../src/airflow/executors/executor_loader.py | 39 +-
.../src/airflow/jobs/triggerer_job_runner.py | 61 +-
...3_0_0_add_uuid_primary_key_to_task_instance_.py | 29 +-
airflow-core/src/airflow/models/mappedoperator.py | 4 +
.../airflow/serialization/serialized_objects.py | 3 +-
.../src/airflow/ti_deps/deps/trigger_rule_dep.py | 33 +-
airflow-core/src/airflow/triggers/base.py | 23 +-
.../src/airflow/ui/openapi-gen/queries/common.ts | 25 +-
.../ui/openapi-gen/queries/ensureQueryData.ts | 33 +-
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 33 +-
.../src/airflow/ui/openapi-gen/queries/queries.ts | 63 +-
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 33 +-
.../ui/openapi-gen/requests/services.gen.ts | 74 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 79 +-
.../src/airflow/ui/public/i18n/locales/de/dag.json | 1 +
.../airflow/ui/src/layouts/Details/Gantt/Gantt.tsx | 122 +-
.../airflow/ui/src/layouts/Details/Gantt/utils.ts | 173 +
.../pages/HITLTaskInstances/HITLResponseForm.tsx | 18 +-
.../ui/src/pages/TaskInstance/HITLResponse.tsx | 6 +-
.../airflow/ui/src/queries/useUpdateHITLDetail.ts | 10 +-
.../core_api/routes/public/test_hitl.py | 318 +-
.../core_api/routes/public/test_task_instances.py | 15 +
.../tests/unit/executors/test_executor_loader.py | 173 +-
airflow-core/tests/unit/jobs/test_triggerer_job.py | 68 +-
airflow-core/tests/unit/models/test_dagrun.py | 2 +-
.../unit/serialization/test_dag_serialization.py | 2 +-
chart/templates/jobs/create-user-job.yaml | 2 +-
chart/templates/jobs/migrate-database-job.yaml | 2 +-
chart/values.schema.json | 16 +
chart/values.yaml | 4 +
go-sdk/go.mod | 2 +-
go-sdk/go.sum | 4 +-
.../helm_tests/airflow_aux/test_create_user_job.py | 14 +
.../airflow_aux/test_migrate_database_job.py | 14 +
.../kubernetes_tests/test_kubernetes_executor.py | 123 +
.../kubernetes/executors/kubernetes_executor.py | 47 +-
.../executors/kubernetes_executor_types.py | 30 +-
.../executors/kubernetes_executor_utils.py | 186 +-
.../providers/cncf/kubernetes/utils/pod_manager.py | 15 +-
.../executors/test_kubernetes_executor.py | 23 +-
.../providers/google/cloud/operators/pubsub.py | 19 +-
.../unit/google/cloud/operators/test_pubsub.py | 53 +-
.../providers/postgres/dialects/postgres.py | 30 +-
.../tests/unit/postgres/dialects/test_postgres.py | 10 +-
.../smtp/notifications/templates/email.html | 2 +
.../airflow/providers/standard/operators/python.py | 2 +-
.../tests/unit/standard/operators/test_python.py | 22 +
reproducible_build.yaml | 4 +-
task-sdk/docs/api.rst | 2 +
task-sdk/src/airflow/sdk/__init__.py | 3 +
task-sdk/src/airflow/sdk/__init__.pyi | 2 +
task-sdk/src/airflow/sdk/api/client.py | 5 +-
task-sdk/src/airflow/sdk/bases/operator.py | 6 +-
.../src/airflow/sdk/bases/trigger.py | 19 +-
.../sdk/definitions/_internal/abstractoperator.py | 12 +
.../src/airflow/sdk/definitions/mappedoperator.py | 14 +-
.../src/airflow/sdk/execution_time/supervisor.py | 4 +-
.../task_sdk/definitions/test_secrets_masker.py | 31 -
.../tests/task_sdk/execution_time/test_comms.py | 36 +-
.../task_sdk/execution_time/test_supervisor.py | 1566 ++++----
75 files changed, 4170 insertions(+), 3801 deletions(-)
create mode 100644
airflow-core/src/airflow/ui/src/layouts/Details/Gantt/utils.ts
copy airflow-core/src/airflow/api_fastapi/execution_api/datamodels/token.py =>
task-sdk/src/airflow/sdk/bases/trigger.py (71%)