This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/github_actions/github-actions-updates-589aebb867
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 2730b03b8e5 Bump the github-actions-updates group across 1 directory
with 8 updates
add b96b5fdb058 Fix broken class references and truncated wording in
OpenAI provider docs (#69710)
add 4e0f297dc44 Remove redundant ORM result uniquing in core queries
(#69913)
add 43038e01182 Fix Azure Data Factory hook broken with
azure-mgmt-datafactory 10 (#69800)
add eca04903bde Rename coordinator label to area:coordinator and align
CODEOWNERS (#69906)
add 7fed0f07cf0 Fix Hive metastore partition sensor initialization (#69612)
add c68e9f16325 Update the metrics registry hook to ban direct imports of
stats emitting module-level functions (#68675)
add a7cc0f9d45d Secure AWS auth cookies behind TLS proxies (#69898)
add 0dfb55358c4 Requeue KubernetesExecutor tasks whose pod failed before
execution started (#69058)
add d527c03f1de Fix @asset reserved keys with default value (#69642)
add 707b1ccf137 Clean up graph/grid UI (#69883)
add ae6188dbc79 Stop re-rendering the whole Grid on every hover (#69912)
add 781b6b9f85e Prevent malformed OpenSearch log entries from crashing
task log fetch (#69307)
add 14560e4d2a5 Clarify FAB and Auth documentation regarding
external_db_managers (#69929)
add 663a7920389 Support excluding files from `common.ai` Agent Skills
discovery (#69924)
add af6d5c2c4c8 Bump eslint (#69932)
add 8c3a1169709 Add team_name attribute to plugins for multi-team (#69502)
add 00ce83c6c44 Fix deadline never firing after non-deadline Dag edit
(#68734)
add 5930c02ad0f TriggerRunnerSupervisor: Add trigger queue delay metric
(#67927)
add b6ae6686c33 Add pydantic-ai capability matrix references doc to Common
AI (#69887)
add 9bee629d207 Fix Apache Beam hook type error with mypy 2.2.0 typeshed
(#69946)
add d18f63d28ea Add Lee-W as common.ai codeowner (#69949)
add 8f1838cc025 Add airflow-ts-pack bundle build tool for TypeScript SDK
(#69295)
add 93d722e9b82 Re-render only the changed column when Grid summaries
stream in (#69917)
add 1224056f4f9 Fail constraints generation when a released provider is
downgraded (#69870)
add 3ac5101efee Bump the github-actions-updates group across 1 directory
with 8 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 (2730b03b8e5)
\
N -- N -- N
refs/heads/dependabot/github_actions/github-actions-updates-589aebb867
(3ac5101efee)
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/CODEOWNERS | 4 +-
.github/boring-cyborg.yml | 2 +-
.github/workflows/ci-amd.yml | 2 +
.github/workflows/ci-arm.yml | 2 +
.github/workflows/generate-constraints.yml | 25 +
.../update-constraints-on-push-stable.yml | 2 +
.github/workflows/update-constraints-on-push.yml | 2 +
.pre-commit-config.yaml | 2 +-
.../docs/core-concepts/auth-manager/index.rst | 4 +-
airflow-core/newsfragments/67927.feature.rst | 1 +
airflow-core/src/airflow/api_fastapi/app.py | 3 +
.../src/airflow/api_fastapi/common/db/dag_runs.py | 2 +-
.../api_fastapi/core_api/datamodels/plugins.py | 1 +
.../core_api/openapi/v2-rest-api-generated.yaml | 5 +
.../api_fastapi/core_api/routes/public/dag_run.py | 6 +-
.../api_fastapi/core_api/routes/public/plugins.py | 16 +-
.../core_api/routes/public/task_instances.py | 32 +-
.../api_fastapi/core_api/routes/ui/deadlines.py | 2 +-
.../airflow/api_fastapi/core_api/routes/ui/grid.py | 2 +-
.../core_api/services/public/task_instances.py | 4 +-
.../src/airflow/executors/workloads/trigger.py | 1 +
.../src/airflow/jobs/scheduler_job_runner.py | 18 +-
.../src/airflow/jobs/triggerer_job_runner.py | 27 +-
airflow-core/src/airflow/models/serialized_dag.py | 18 +-
airflow-core/src/airflow/plugins_manager.py | 39 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 11 +
.../airflow/ui/openapi-gen/requests/types.gen.ts | 1 +
.../src/airflow/ui/public/i18n/locales/ar/dag.json | 5 -
.../src/airflow/ui/public/i18n/locales/ca/dag.json | 5 -
.../src/airflow/ui/public/i18n/locales/de/dag.json | 5 -
.../src/airflow/ui/public/i18n/locales/en/dag.json | 3 -
.../src/airflow/ui/public/i18n/locales/fr/dag.json | 5 -
.../src/airflow/ui/public/i18n/locales/he/dag.json | 5 -
.../src/airflow/ui/public/i18n/locales/hi/dag.json | 5 -
.../src/airflow/ui/public/i18n/locales/hu/dag.json | 5 -
.../src/airflow/ui/public/i18n/locales/ko/dag.json | 3 -
.../src/airflow/ui/public/i18n/locales/pl/dag.json | 5 -
.../src/airflow/ui/public/i18n/locales/tr/dag.json | 5 -
.../airflow/ui/public/i18n/locales/zh-CN/dag.json | 5 -
.../airflow/ui/src/components/Graph/TaskNode.tsx | 3 +-
.../ui/src/components/Graph/elkGraphUtils.ts | 2 +-
.../src/airflow/ui/src/components/TaskName.tsx | 2 -
.../src/airflow/ui/src/context/hover/Context.ts | 28 -
.../airflow/ui/src/context/hover/HoverProvider.tsx | 31 -
.../src/airflow/ui/src/context/hover/index.ts | 21 -
.../src/airflow/ui/src/context/hover/useHover.ts | 31 -
.../ui/src/layouts/Details/DetailsLayout.tsx | 413 ++-
.../airflow/ui/src/layouts/Details/Gantt/Gantt.tsx | 16 +-
.../layouts/Details/Gantt/GanttTimeline.test.tsx | 7 +-
.../ui/src/layouts/Details/Gantt/GanttTimeline.tsx | 9 +-
.../airflow/ui/src/layouts/Details/Grid/Bar.tsx | 12 +-
.../airflow/ui/src/layouts/Details/Grid/Grid.tsx | 15 +-
.../airflow/ui/src/layouts/Details/Grid/GridTI.tsx | 14 +-
.../layouts/Details/Grid/TaskInstancesColumn.tsx | 15 +-
.../ui/src/layouts/Details/Grid/TaskNames.tsx | 19 +-
.../layouts/Details/Grid/gridHover.css} | 18 +-
.../layouts/Details/Grid/useGridCrosshairHover.ts | 95 +
.../airflow/ui/src/layouts/Details/GridFilters.tsx | 7 +-
.../ui/src/layouts/Details/PanelButtons.tsx | 15 +-
.../ui/src/pages/GroupTaskInstance/Header.tsx | 4 +-
.../airflow/ui/src/queries/useGridTISummaries.ts | 6 +-
.../core_api/routes/public/test_plugins.py | 73 +
.../unit/cli/commands/test_plugins_command.py | 1 +
airflow-core/tests/unit/jobs/test_triggerer_job.py | 48 +
.../tests/unit/models/test_serialized_dag.py | 113 +
.../tests/unit/plugins/test_plugins_manager.py | 68 +
.../src/airflowctl/api/datamodels/generated.py | 1 +
docs/spelling_wordlist.txt | 2 +
.../amazon/aws/auth_manager/routes/login.py | 2 +-
.../amazon/aws/auth_manager/routes/test_login.py | 11 +-
.../airflow/providers/apache/beam/hooks/beam.py | 2 +-
.../apache/hive/sensors/metastore_partition.py | 53 +-
.../hive/sensors/test_metastore_partition.py | 51 +-
providers/cncf/kubernetes/docs/changelog.rst | 12 +
providers/cncf/kubernetes/provider.yaml | 34 +
.../kubernetes/executors/kubernetes_executor.py | 139 +-
.../providers/cncf/kubernetes/get_provider_info.py | 14 +
.../executors/test_kubernetes_executor.py | 290 +++
providers/common/ai/README.rst | 1 +
providers/common/ai/docs/index.rst | 3 +-
providers/common/ai/docs/operators/agent.rst | 12 +
providers/common/ai/docs/toolsets.rst | 10 +
providers/common/ai/pyproject.toml | 6 +-
.../ai/example_dags/example_agent_capabilities.py | 34 +
.../airflow/providers/common/ai/toolsets/skills.py | 20 +-
.../tests/unit/common/ai/toolsets/test_skills.py | 50 +
providers/fab/docs/upgrading.rst | 6 +-
.../fab/src/airflow/providers/fab/www/package.json | 2 +-
.../src/airflow/providers/fab/www/pnpm-lock.yaml | 22 +-
providers/microsoft/azure/README.rst | 2 +-
providers/microsoft/azure/docs/index.rst | 2 +-
providers/microsoft/azure/pyproject.toml | 2 +-
.../microsoft/azure/hooks/data_factory.py | 46 +-
.../microsoft/azure/hooks/test_data_factory.py | 73 +-
providers/openai/docs/index.rst | 2 +-
providers/openai/docs/operators/openai.rst | 20 +-
providers/openai/provider.yaml | 2 +-
.../airflow/providers/openai/get_provider_info.py | 2 +-
.../providers/opensearch/log/os_task_handler.py | 28 +-
.../unit/opensearch/log/test_os_task_handler.py | 44 +
pyproject.toml | 8 +
.../prek/check_metrics_synced_with_the_registry.py | 139 +-
scripts/in_container/run_generate_constraints.py | 131 +-
.../test_check_metrics_synced_with_the_registry.py | 190 ++
.../cli => scripts/tests/in_container}/__init__.py | 0
.../in_container/test_run_generate_constraints.py | 111 +
.../observability/metrics/metrics_template.yaml | 7 +
.../plugins_manager/plugins_manager.py | 8 +
.../tests/plugins_manager/test_plugins_manager.py | 16 +
.../airflow/sdk/coordinators/node/coordinator.py | 48 +-
.../airflow/sdk/definitions/asset/decorators.py | 7 +-
.../task_sdk/coordinators/node/test_coordinator.py | 86 +-
.../task_sdk/definitions/test_asset_decorators.py | 38 +
ts-sdk/README.md | 34 +-
ts-sdk/example/README.md | 19 +-
ts-sdk/example/package.json | 2 +-
ts-sdk/package.json | 12 +
ts-sdk/pnpm-lock.yaml | 289 ++-
.../www/src/global.d.ts => ts-sdk/src/cli/main.ts | 10 +-
ts-sdk/src/cli/pack.ts | 225 ++
ts-sdk/src/coordinator/manifest.ts | 44 +
ts-sdk/src/coordinator/runtime.ts | 9 +
.../tests/cli/fixtures/empty-entry.ts | 4 +-
.../tests/cli/fixtures/entry.ts | 12 +-
.../tests/cli/fixtures/noisy-entry.ts | 15 +-
ts-sdk/tests/cli/pack.test.ts | 190 ++
ts-sdk/tests/coordinator/runtime-manifest.test.ts | 61 +
uv.lock | 2634 ++++++++++----------
128 files changed, 4678 insertions(+), 2047 deletions(-)
create mode 100644 airflow-core/newsfragments/67927.feature.rst
delete mode 100644 airflow-core/src/airflow/ui/src/context/hover/Context.ts
delete mode 100644
airflow-core/src/airflow/ui/src/context/hover/HoverProvider.tsx
delete mode 100644 airflow-core/src/airflow/ui/src/context/hover/index.ts
delete mode 100644 airflow-core/src/airflow/ui/src/context/hover/useHover.ts
copy airflow-core/src/airflow/ui/{tests/e2e/fixtures/index.ts =>
src/layouts/Details/Grid/gridHover.css} (67%)
create mode 100644
airflow-core/src/airflow/ui/src/layouts/Details/Grid/useGridCrosshairHover.ts
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
copy providers/edge3/src/airflow/providers/edge3/plugins/www/src/global.d.ts
=> ts-sdk/src/cli/main.ts (79%)
create mode 100644 ts-sdk/src/cli/pack.ts
create mode 100644 ts-sdk/src/coordinator/manifest.ts
copy airflow-core/src/airflow/ui/src/components/Clear/TaskInstance/index.tsx
=> ts-sdk/tests/cli/fixtures/empty-entry.ts (90%)
copy airflow-core/src/airflow/ui/src/components/FlexibleForm/index.tsx =>
ts-sdk/tests/cli/fixtures/entry.ts (70%)
copy airflow-core/src/airflow/ui/src/components/ui/Accordion/index.tsx =>
ts-sdk/tests/cli/fixtures/noisy-entry.ts (76%)
create mode 100644 ts-sdk/tests/cli/pack.test.ts
create mode 100644 ts-sdk/tests/coordinator/runtime-manifest.test.ts