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-1a800ef2ca
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 3e742031697 Bump the pip-dependency-updates group across 3 directories 
with 2 updates
     add 315d1591644 Fix deadlock in ti_update_state caused by FOR UPDATE 
locking dag_run (#67246)
     add 8f216be1f1a Bump picomatch from 4.0.3 to 4.0.4 in /registry (#67124)
     add 8d1ef7d628e Bump brace-expansion from 5.0.5 to 5.0.6 in /registry 
(#67125)
     add 22c450fbc35 Bump liquidjs from 10.25.5 to 10.27.0 in /registry (#67126)
     add 7936ed6ce61 Bump ws from 8.19.0 to 8.20.1 in /registry (#67136)
     add b64c302b2e9 Add LlamaIndex operators to common.ai provider (#67121)
     add 706c1196484 Add /.github/skills/issue-* to .gitignore (#67275)
     add dae49a37f58 AIP-76: Consume task-emitted partition keys on asset 
events (#66782)
     add f51d9e6ed23 workflows: use task-sdk alias in publish-docs 
NON_PROVIDER_TOKENS (#67279)
     add dfd9655139e Update spelling wordlist to fix errors in common-ai 
provider (#67278)
     add b13d796fbf1 Fixing mypy errors in google gen ai provider and tests 
(#67276)
     add 5bc196f5528 docs: Clarify manual DAG run data interval semantics in 
Airflow 3 (#64740)
     add 075937c4a9b Refactor and extract shared request handler logic from 
supervisor _handle_request methods (#65624)
     add 824722219b4 Fix provider executor tests broken in main (#67268)
     add 75ca1714f96 fix: Support log level parsing from container output in 
`EcsRunTaskOperator` (#67180)
     add c91117a89b1 Prevent durable storage tests from leaking hook lineage 
(#67252)
     add f2af887699a Add ExecuteCallback support to AWS ECS Executor (#63657)
     add d5240bc3377 Bump the pip-dependency-updates group across 3 directories 
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   (3e742031697)
            \
             N -- N -- N   
refs/heads/dependabot/pip/airflow-core/pip-dependency-updates-1a800ef2ca 
(d5240bc3377)

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           |   2 +-
 .gitignore                                         |   1 +
 airflow-core/docs/core-concepts/dag-run.rst        |  18 ++
 .../docs/installation/upgrading_to_airflow3.rst    |  48 +++-
 .../execution_api/routes/task_instances.py         |   4 +-
 .../src/airflow/dag_processing/processor.py        |  98 ++-----
 .../src/airflow/jobs/triggerer_job_runner.py       |  81 ++----
 airflow-core/src/airflow/models/taskinstance.py    | 106 +++++---
 .../tests/unit/models/test_taskinstance.py         | 157 +++++++++++
 dev/registry/derive_wave_providers.py              |   2 +-
 docs/spelling_wordlist.txt                         |   5 +
 .../aws/executors/aws_lambda/lambda_executor.py    |   5 +-
 .../amazon/aws/executors/batch/batch_executor.py   |   5 +-
 .../amazon/aws/executors/ecs/ecs_executor.py       | 176 ++++++++----
 .../providers/amazon/aws/executors/ecs/utils.py    |  61 +++--
 .../airflow/providers/amazon/aws/triggers/ecs.py   |   5 +-
 .../providers/amazon/aws/utils/task_log_fetcher.py |  48 +++-
 .../executors/aws_lambda/test_lambda_executor.py   |  10 +-
 .../aws/executors/batch/test_batch_executor.py     |  19 +-
 .../amazon/aws/executors/ecs/test_ecs_executor.py  | 283 ++++++++++++++------
 .../unit/amazon/aws/utils/test_task_log_fetcher.py | 124 ++++++++-
 .../unit/celery/executors/test_celery_executor.py  |   2 +-
 .../executors/test_kubernetes_executor.py          |   2 +-
 providers/common/ai/docs/hooks/index.rst           |   7 +
 providers/common/ai/docs/hooks/llamaindex.rst      | 115 ++++++++
 .../common/ai/docs/operators/document_loader.rst   |   6 +-
 providers/common/ai/docs/operators/index.rst       |   6 +
 .../ai/docs/operators/llamaindex_embedding.rst     | 119 +++++++++
 .../ai/docs/operators/llamaindex_retrieval.rst     | 109 ++++++++
 providers/common/ai/provider.yaml                  |  45 ++++
 providers/common/ai/pyproject.toml                 |   8 +
 .../ai/example_dags/example_llamaindex_hook.py     | 147 ++++++++++
 .../ai/example_dags/example_llamaindex_rag.py      | 236 ++++++++++++++++
 .../providers/common/ai/get_provider_info.py       |  40 +++
 .../providers/common/ai/hooks/llamaindex.py        | 189 +++++++++++++
 .../common/ai/operators/llamaindex_embedding.py    | 210 +++++++++++++++
 .../common/ai/operators/llamaindex_retrieval.py    | 199 ++++++++++++++
 .../common/ai/tests/unit/common/ai/conftest.py     |  12 +
 .../tests/unit/common/ai/hooks/test_llamaindex.py  | 170 ++++++++++++
 .../ai/operators/test_llamaindex_embedding.py      | 211 +++++++++++++++
 .../ai/operators/test_llamaindex_retrieval.py      | 238 +++++++++++++++++
 .../providers/google/cloud/operators/gen_ai.py     |   4 +-
 .../gen_ai/example_gen_ai_generative_model.py      |  29 +-
 .../tests/unit/google/cloud/hooks/test_gen_ai.py   |  29 +-
 .../unit/google/cloud/operators/test_gen_ai.py     |  29 +-
 registry/pnpm-lock.yaml                            |  34 +--
 .../airflow/sdk/execution_time/request_handlers.py | 186 +++++++++++++
 .../src/airflow/sdk/execution_time/supervisor.py   | 124 +++------
 uv.lock                                            | 297 ++++++++++++++++++++-
 49 files changed, 3533 insertions(+), 528 deletions(-)
 create mode 100644 providers/common/ai/docs/hooks/llamaindex.rst
 create mode 100644 providers/common/ai/docs/operators/llamaindex_embedding.rst
 create mode 100644 providers/common/ai/docs/operators/llamaindex_retrieval.rst
 create mode 100644 
providers/common/ai/src/airflow/providers/common/ai/example_dags/example_llamaindex_hook.py
 create mode 100644 
providers/common/ai/src/airflow/providers/common/ai/example_dags/example_llamaindex_rag.py
 create mode 100644 
providers/common/ai/src/airflow/providers/common/ai/hooks/llamaindex.py
 create mode 100644 
providers/common/ai/src/airflow/providers/common/ai/operators/llamaindex_embedding.py
 create mode 100644 
providers/common/ai/src/airflow/providers/common/ai/operators/llamaindex_retrieval.py
 create mode 100644 
providers/common/ai/tests/unit/common/ai/hooks/test_llamaindex.py
 create mode 100644 
providers/common/ai/tests/unit/common/ai/operators/test_llamaindex_embedding.py
 create mode 100644 
providers/common/ai/tests/unit/common/ai/operators/test_llamaindex_retrieval.py

Reply via email to