This is an automated email from the ASF dual-hosted git repository.

dependabot[bot] pushed a change to branch 
dependabot/pip/airflow-core/pip-dependency-updates-72f83f7f84
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit e222c820271 Bump the pip-dependency-updates group across 3 directories 
with 3 updates
     add bc2628e4f34 Auto-generate sorted packages.txt during providers PyPI 
upload (#69356)
     add 7cf8b438e5c Update providers metadata 2026-07-03 (#69352)
     add 0211b908ba6 Make kinit renewable lifetime configurable for Heimdal 
Kerberos support (#67804)
     add c2497281599 Regenerate Anthropic provider docs to remove stale 
common.compat extra (#69363)
     add f87aa58e09d Migrate common.ai provider to pydantic-ai 2.x and remove 
the <2 cap (#69358)
     add 7b240274732 Extract shared bundle metadata logic from coordinators 
(#69296)
     add 66154e0dce0 Return 422 for empty backfill window and stop leaving 
orphan rows (#68883)
     add ac8d9474319 Remove duplicate tests in Task SDK (#68504)
     add 91e50880a44 Improve mobile responsiveness for dashboard asset cards 
(#69294)
     add be1c03afacd Refresh apache-magpie setup skill with trusted 
skill-sources support (#69376)
     add 4fe401cd89e Switch the default async Postgres driver from asyncpg to 
psycopg3 (provider) (#69089)
     add 7b3389664a2 Show running task logs in the UI with Elasticsearch remote 
logging (#69090)
     add a9f0cf50454 Clarify custom-time parameterized timetable logic (#34897) 
(#69151)
     add 2c46d0b3c45 Update multi-node executor guidance (#48605) (#69154)
     add b5a60ceae6b Document native template rendering type coercion (#34641) 
(#69152)
     add 34604d233f4 docs: clarify Redis maintenance for CeleryExecutor (#67393)
     add f10ebb54222 Switch the default async Postgres driver from asyncpg to 
psycopg3 (#68496)
     add 924f022d901 [AIP-94] Mark dags list-import-errors as migrated to 
airflowctl (#68602)
     add 3c9c8974e98 Update providers metadata 2026-07-04 (#69394)
     add d122d0386d6 Fix config lint warnings for remove_if_equals rules 
(#66370)
     add cf2806199fe [AIP-94] Mark connections commands as migrated to 
airflowctl (#68972)
     add 638c63523a2 [AIP-94] Mark dags pause/unpause as migrated to airflowctl 
(#68650)
     add 673183b2c81 Speed up lang-SDK k8s test by building Go/Java natively in 
CI (#69411)
     add dffc5079dde Remove stale TODO comments for XCom map_index handling 
(#69369)
     add ea10f4fb773 Rerun flaky SSHRemoteJobOperator kill test on 
process-group races (#69384)
     add 9ec996edc4f Remove defensive bundle/team pre-cleaning from api_fastapi 
tests (#69416)
     add 5c93fbaab67 [AIP-94] Mark dags list-runs as migrated to airflowctl 
(#69409)
     add 2629cf34ce2 UI: Load Monaco codicon glyph styles via direct CSS import 
(#69419)
     add b641f1f152d Bump swagger-ui-dist (#69343)
     add 44a587cb93b Bump the pip-dependency-updates group across 3 directories 
with 3 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   (e222c820271)
            \
             N -- N -- N   
refs/heads/dependabot/pip/airflow-core/pip-dependency-updates-72f83f7f84 
(44a587cb93b)

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:
 .agents/skills/magpie-setup/SKILL.md               |  36 ++-
 .agents/skills/magpie-setup/adopt.md               |  34 +++
 .agents/skills/magpie-setup/skill-sources.md       | 278 +++++++++++++++++++++
 .agents/skills/magpie-setup/upgrade.md             |  35 +++
 .agents/skills/magpie-setup/verify.md              |  29 +++
 .agents/skills/magpie-setup/worktree-init.md       |  13 +
 .github/workflows/ci-amd.yml                       |   2 +
 .github/workflows/ci-arm.yml                       |   2 +
 .github/workflows/k8s-tests.yml                    |  44 ++++
 .../production-deployment.rst                      |   9 +-
 airflow-core/docs/core-concepts/operators.rst      |   7 +
 airflow-core/docs/core-concepts/params.rst         |   5 +
 airflow-core/docs/howto/set-up-database.rst        |  50 +++-
 airflow-core/docs/howto/timetable.rst              |   7 +
 airflow-core/newsfragments/68496.significant.rst   |  32 +++
 airflow-core/pyproject.toml                        |   2 +-
 .../core_api/routes/public/backfills.py            |   2 +
 .../src/airflow/cli/commands/backfill_command.py   |  48 ++--
 .../src/airflow/cli/commands/connection_command.py |  13 +-
 .../src/airflow/cli/commands/dag_command.py        |   4 +
 .../src/airflow/config_templates/config.yml        |   9 +
 airflow-core/src/airflow/models/backfill.py        |  31 ++-
 airflow-core/src/airflow/security/kerberos.py      |  24 +-
 airflow-core/src/airflow/settings.py               |   8 +-
 .../ui/src/components/Assets/AssetEvent.tsx        |   6 +-
 .../ui/src/components/Assets/TriggeredRuns.tsx     |   4 +-
 .../ui/src/components/DataTable/CardList.tsx       |   2 +-
 .../src/components/MonacoEditor/configureMonaco.ts |   6 +-
 .../tests/unit/api_fastapi/common/db/test_dags.py  |   1 -
 .../core_api/routes/public/test_assets.py          |   2 -
 .../core_api/routes/public/test_backfills.py       |  59 ++++-
 .../core_api/routes/public/test_dag_run.py         |   2 -
 .../core_api/routes/public/test_dag_stats.py       |   4 -
 .../core_api/routes/public/test_dag_tags.py        |   2 -
 .../core_api/routes/public/test_dag_versions.py    |   3 +-
 .../core_api/routes/public/test_import_error.py    |   1 -
 .../core_api/routes/public/test_pools.py           |   2 +-
 .../core_api/routes/public/test_task_instances.py  |   1 -
 .../routes/public/test_task_state_store.py         |   1 -
 .../core_api/routes/public/test_tasks.py           |   1 -
 .../core_api/routes/public/test_variables.py       |   1 -
 .../core_api/routes/ui/test_backfills.py           |   1 -
 .../unit/cli/commands/test_backfill_command.py     |  61 ++++-
 .../unit/cli/commands/test_command_deprecations.py |  11 +
 airflow-core/tests/unit/core/test_settings.py      |  33 +++
 airflow-core/tests/unit/models/test_backfill.py    |  92 ++++++-
 airflow-core/tests/unit/security/test_kerberos.py  |  30 +++
 airflow-ctl/pyproject.toml                         |   2 +-
 .../src/airflowctl/ctl/commands/config_command.py  |  32 ++-
 .../ctl/commands/test_config_command.py            |  67 +++++
 dev/README_RELEASE_PROVIDERS.md                    |  79 +++---
 dev/breeze/doc/ci/04_selective_checks.md           |   1 +
 .../airflow_breeze/commands/kubernetes_commands.py | 241 ++++++++++--------
 dev/breeze/src/airflow_breeze/global_constants.py  |   4 +
 .../src/airflow_breeze/utils/selective_checks.py   |   2 +
 .../tests/test_kubernetes_lang_sdk_commands.py     | 149 +++++++++++
 dev/breeze/tests/test_selective_checks.py          |  13 +
 generated/provider_metadata.json                   |  28 +++
 kubernetes-tests/lang_sdk/README.md                |  10 +
 providers/anthropic/docs/index.rst                 |  19 --
 providers/celery/docs/celery_executor.rst          |  21 ++
 providers/common/ai/README.rst                     |   2 +-
 providers/common/ai/docs/index.rst                 |   2 +-
 providers/common/ai/docs/observability.rst         |   8 +
 providers/common/ai/pyproject.toml                 |  10 +-
 .../providers/common/ai/hooks/pydantic_ai.py       |  34 ++-
 .../airflow/providers/common/ai/observability.py   |  11 +-
 .../airflow/providers/common/ai/operators/agent.py |   2 +-
 .../airflow/providers/common/ai/operators/llm.py   |   2 +-
 .../common/ai/operators/llm_file_analysis.py       |   2 +-
 .../tests/unit/common/ai/hooks/test_pydantic_ai.py |  15 +-
 .../ai/tests/unit/common/ai/test_observability.py  |   9 +-
 .../providers/elasticsearch/log/es_task_handler.py |  11 +
 .../unit/elasticsearch/log/test_es_task_handler.py |  39 +++
 providers/postgres/README.rst                      |   5 +-
 providers/postgres/docs/changelog.rst              |  15 ++
 providers/postgres/docs/index.rst                  |   3 +-
 providers/postgres/pyproject.toml                  |  13 +-
 .../airflow/providers/postgres/hooks/postgres.py   |  20 +-
 .../ssh/tests/unit/ssh/utils/test_remote_job.py    |   4 +
 registry/package.json                              |   2 +-
 registry/pnpm-lock.yaml                            |  10 +-
 task-sdk/pyproject.toml                            |   2 +-
 task-sdk/src/airflow/sdk/api/client.py             |   4 -
 .../airflow/sdk/coordinators/_bundle_metadata.py   |  82 ++++++
 .../sdk/coordinators/executable/coordinator.py     |  62 +----
 .../airflow/sdk/coordinators/java/coordinator.py   |  20 +-
 .../airflow/sdk/coordinators/node/coordinator.py   |  56 +----
 .../coordinators/executable/test_coordinator.py    |   4 +-
 .../tests/task_sdk/definitions/test_taskgroup.py   |  52 ----
 .../tests/task_sdk/execution_time/test_comms.py    |  10 -
 uv.lock                                            |  33 +--
 92 files changed, 1748 insertions(+), 514 deletions(-)
 create mode 100644 .agents/skills/magpie-setup/skill-sources.md
 create mode 100644 airflow-core/newsfragments/68496.significant.rst
 create mode 100644 dev/breeze/tests/test_kubernetes_lang_sdk_commands.py
 create mode 100644 task-sdk/src/airflow/sdk/coordinators/_bundle_metadata.py

Reply via email to