This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 2bdec91c2d2 [main] CI: Upgrade important CI environment
add 14ab7252212 TS SDK: replace registerTask with Dag and registerDags
(#71144)
add 29dd99d0034 Bound the scheduler's deserialized Dag cache (#71704)
add b5cdd5607e2 Fix and expand the common-ai provider's When to use
guidance (#71820)
add f1f02f9ef9c Document the common-ai LangChain and LlamaIndex connection
types (#71818)
add 8b01746b41b Document the common-ai MCPHook (#71817)
add d6af65e2680 Document the dedicated pydantic-ai vendor connection types
(#71774)
add 015313a2328 Fix Vertex AI Feature Store system test failure (#71238)
add 04145448135 Require Dag edit to delete asset queued events (#71736)
add 9ad206a01de Pin apache/infrastructure-actions to its released tags
(#70623)
add acfda3fc8e0 Regenerate API datamodels after the CI environment lock
upgrade (#71718)
add 96f42177747 [main] CI: Upgrade important CI environment
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 (2bdec91c2d2)
\
N -- N -- N refs/heads/ci-upgrade-main (96f42177747)
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:
.../actions/build_ci_image_with_cache/action.yml | 15 +-
.github/actions/install-prek/action.yml | 5 +-
.../actions/prepare_breeze_and_image/action.yml | 3 +-
.github/actions/prepare_single_ci_image/action.yml | 3 +-
.github/workflows/asf-allowlist-check.yml | 3 +-
.github/workflows/basic-tests.yml | 10 +-
.github/workflows/ci-image-build.yml | 20 +-
.github/workflows/ci-image-checks.yml | 5 +-
.github/workflows/prod-image-build.yml | 2 +-
.github/workflows/publish-docs-to-s3.yml | 5 +-
.github/zizmor.yml | 6 -
.../language-sdks/typescript.rst | 27 ++-
airflow-core/docs/security/api_permissions_ref.rst | 6 +-
airflow-core/newsfragments/71704.bugfix.rst | 1 +
.../api_fastapi/core_api/routes/public/assets.py | 6 +-
.../src/airflow/jobs/scheduler_job_runner.py | 14 +-
.../core_api/routes/public/test_assets.py | 67 ++++++
airflow-core/tests/unit/jobs/test_scheduler_job.py | 11 +-
dev/breeze/doc/images/output_ci_upgrade.svg | 32 +--
dev/breeze/doc/images/output_ci_upgrade.txt | 2 +-
.../src/airflow_breeze/commands/ci_commands.py | 15 +-
docs/spelling_wordlist.txt | 1 +
providers/common/ai/docs/connections/langchain.rst | 122 ++++++++++
.../common/ai/docs/connections/llamaindex.rst | 124 +++++++++++
providers/common/ai/docs/connections/mcp.rst | 6 +
.../common/ai/docs/connections/pydantic_ai.rst | 19 +-
.../ai/docs/connections/pydantic_ai_azure.rst | 76 +++++++
.../ai/docs/connections/pydantic_ai_bedrock.rst | 118 ++++++++++
.../ai/docs/connections/pydantic_ai_vertex.rst | 128 +++++++++++
providers/common/ai/docs/hooks/mcp.rst | 118 ++++++++++
providers/common/ai/docs/index.rst | 43 +++-
.../vertex_ai/example_vertex_ai_feature_store.py | 12 +-
ts-sdk/README.md | 57 +++--
ts-sdk/docs/index.md | 14 +-
ts-sdk/example/src/main.ts | 10 +-
ts-sdk/src/cli/pack.ts | 65 +++++-
ts-sdk/src/coordinator/index.ts | 5 +-
ts-sdk/src/coordinator/manifest.ts | 46 +++-
ts-sdk/src/coordinator/runtime.ts | 92 +++++++-
ts-sdk/src/index.ts | 8 +-
ts-sdk/src/sdk/brand.ts | 43 ++++
ts-sdk/src/sdk/dag.ts | 245 +++++++++++++++++++++
ts-sdk/src/sdk/registry.ts | 147 +++++++------
ts-sdk/tests/cli/fixtures/empty-entry.ts | 4 +-
ts-sdk/tests/cli/fixtures/entry.ts | 12 +-
ts-sdk/tests/cli/fixtures/noisy-entry.ts | 7 +-
ts-sdk/tests/cli/pack.test.ts | 159 ++++++++++++-
ts-sdk/tests/coordinator/integration.test.ts | 42 ++--
ts-sdk/tests/coordinator/protocol.test.ts | 5 +-
ts-sdk/tests/coordinator/public-api.test.ts | 20 +-
ts-sdk/tests/coordinator/runtime-manifest.test.ts | 91 +++++++-
ts-sdk/tests/public-api.test.ts | 201 ++++++++++++++---
ts-sdk/tests/sdk/dag.test.ts | 237 ++++++++++++++++++++
ts-sdk/tests/sdk/registry.test.ts | 197 +++++++++--------
54 files changed, 2353 insertions(+), 379 deletions(-)
create mode 100644 airflow-core/newsfragments/71704.bugfix.rst
create mode 100644 providers/common/ai/docs/connections/langchain.rst
create mode 100644 providers/common/ai/docs/connections/llamaindex.rst
create mode 100644 providers/common/ai/docs/connections/pydantic_ai_azure.rst
create mode 100644 providers/common/ai/docs/connections/pydantic_ai_bedrock.rst
create mode 100644 providers/common/ai/docs/connections/pydantic_ai_vertex.rst
create mode 100644 providers/common/ai/docs/hooks/mcp.rst
create mode 100644 ts-sdk/src/sdk/brand.ts
create mode 100644 ts-sdk/src/sdk/dag.ts
create mode 100644 ts-sdk/tests/sdk/dag.test.ts