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-8377c281ac
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 217b64577e4 Bump the github-actions-updates group across 1 directory
with 6 updates
add 09bba935c0f Skip Java SDK jobs for doc-only changes (#69674)
add f900d28dcbf Fill Taiwanese Mandarin translation gap (#69708)
add 1a45a6a4737 Bump flask-appbuilder to 5.2.2 in FAB provider (#69730)
add 549af7a070e Sync magpie setup bootstrap with upstream sandbox-bypass
guidance (#69421)
add c860159eee8 Add Azure AI Foundry Agents operators (Create, Update,
Delete, Run) (#68799)
add 2e5962245f1 Show prepare breeze timing in CI duration alerts (#69732)
add 170470f4f5c Add Ubuntu Noble system dependencies to INSTALL guide
(#69754)
add 621192d76a9 Add upgrade-fab-provider skill and FAB contributing doc
(#69729)
add e714b1df7ff Add Vertex AI Agent Engine operators (Create, Get, Query,
Update, Delete) (#68479)
add bec335f1cb4 Add dataclasses-json floor to common.ai llamaindex extra
(#69755)
add a52424284b5 Add build toolchain reference to Java SDK README (#69670)
add 6e6d0af05e5 Add cloud-based auth (aws_iam, gcp, azure_ad) to Akeyless
secrets backend (#69772)
add d094fe92dc5 Remove redundant bundle pre-cleaning from triggerer and
trigger_dag tests (#69446)
add dfd1ea30527 Add expand/collapse all for Dag Run conf JSON in Dag Runs
list (#69567)
add a0e0ae1d068 Reduce DAG card tooltip controller overhead (#69681)
add 9aa0e1275bc Bump the github-actions-updates group across 1 directory
with 6 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 (217b64577e4)
\
N -- N -- N
refs/heads/dependabot/github_actions/github-actions-updates-8377c281ac
(9aa0e1275bc)
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 | 2 +
.agents/skills/magpie-setup/adopt.md | 60 ++-
.agents/skills/magpie-setup/agents.md | 1 +
.agents/skills/magpie-setup/upgrade.md | 15 +
.agents/skills/magpie-setup/verify.md | 1 +
.agents/skills/upgrade-fab-provider/SKILL.md | 270 ++++++++++++
.claude/skills/upgrade-fab-provider | 1 +
.github/skills/upgrade-fab-provider | 1 +
.github/workflows/codeql-analysis.yml | 6 +-
.github/workflows/registry-tests.yml | 2 +-
.gitignore | 1 +
INSTALL | 22 +-
.../airflow/ui/public/i18n/locales/zh-TW/dags.json | 2 +
.../src/airflow/ui/src/mocks/handlers/dag_runs.ts | 2 +-
.../airflow/ui/src/pages/DagRuns/DagRuns.test.tsx | 44 +-
.../src/airflow/ui/src/pages/DagRuns/DagRuns.tsx | 21 +-
.../airflow/ui/src/pages/DagsList/DagCard.test.tsx | 32 +-
.../airflow/ui/src/pages/DagsList/RecentRuns.tsx | 135 +++---
.../tests/unit/api/common/test_trigger_dag.py | 1 -
airflow-core/tests/unit/jobs/test_triggerer_job.py | 1 -
.../src/airflow_breeze/utils/selective_checks.py | 6 +-
dev/breeze/tests/test_selective_checks.py | 28 ++
docs/spelling_wordlist.txt | 4 +
java-sdk/README.md | 3 +-
providers/akeyless/docs/secrets-backend.rst | 86 +++-
.../airflow/providers/akeyless/secrets/akeyless.py | 51 ++-
.../tests/unit/akeyless/secrets/test_akeyless.py | 117 ++++-
providers/common/ai/docs/index.rst | 8 +-
providers/common/ai/pyproject.toml | 1 +
providers/fab/CONTRIBUTING.rst | 56 +++
providers/fab/README.rst | 2 +-
providers/fab/docs/index.rst | 2 +-
providers/fab/pyproject.toml | 2 +-
.../security_manager/test_fab_alignment.py | 2 +-
providers/google/README.rst | 1 +
providers/google/docs/index.rst | 1 +
.../google/docs/operators/cloud/vertex_ai.rst | 65 +++
providers/google/provider.yaml | 2 +
providers/google/pyproject.toml | 1 +
.../google/cloud/hooks/vertex_ai/agent_engine.py | 375 ++++++++++++++++
.../cloud/operators/vertex_ai/agent_engine.py | 443 +++++++++++++++++++
.../providers/google/cloud/triggers/vertex_ai.py | 116 +++++
.../airflow/providers/google/get_provider_info.py | 2 +
.../vertex_ai/example_vertex_ai_agent_engine.py | 280 ++++++++++++
.../vertex_ai/resources/agent_engine/Dockerfile | 13 +-
.../vertex_ai/resources/agent_engine}/__init__.py | 0
.../resources/agent_engine/hello_agent.py | 55 +++
.../cloud/hooks/vertex_ai/test_agent_engine.py | 385 +++++++++++++++++
.../cloud/operators/vertex_ai/test_agent_engine.py | 465 ++++++++++++++++++++
.../cloud/triggers/test_vertex_ai_agent_engine.py | 207 +++++++++
providers/microsoft/azure/README.rst | 2 +
providers/microsoft/azure/docs/index.rst | 2 +
.../microsoft/azure/docs/operators/ai_agents.rst | 128 ++++++
providers/microsoft/azure/provider.yaml | 52 +++
providers/microsoft/azure/pyproject.toml | 3 +
.../providers/microsoft/azure/_ai_agents.py | 72 ++++
.../providers/microsoft/azure/get_provider_info.py | 56 +++
.../providers/microsoft/azure/hooks/ai_agents.py | 454 ++++++++++++++++++++
.../microsoft/azure/operators/ai_agents.py | 398 +++++++++++++++++
.../microsoft/azure/triggers/ai_agents.py | 175 ++++++++
.../microsoft/azure/example_azure_ai_agents.py | 230 ++++++++++
.../unit/microsoft/azure/hooks/test_ai_agents.py | 475 +++++++++++++++++++++
.../microsoft/azure/operators/test_ai_agents.py | 463 ++++++++++++++++++++
.../tests/unit/microsoft/azure/test__ai_agents.py | 77 ++++
.../microsoft/azure/triggers/test_ai_agents.py | 197 +++++++++
scripts/ci/analyze_ci_job_durations.py | 85 +++-
scripts/tests/ci/test_analyze_ci_job_durations.py | 119 +++++-
uv.lock | 34 +-
68 files changed, 6309 insertions(+), 112 deletions(-)
create mode 100644 .agents/skills/upgrade-fab-provider/SKILL.md
create mode 120000 .claude/skills/upgrade-fab-provider
create mode 120000 .github/skills/upgrade-fab-provider
create mode 100644 providers/fab/CONTRIBUTING.rst
create mode 100644
providers/google/src/airflow/providers/google/cloud/hooks/vertex_ai/agent_engine.py
create mode 100644
providers/google/src/airflow/providers/google/cloud/operators/vertex_ai/agent_engine.py
create mode 100644
providers/google/tests/system/google/cloud/vertex_ai/example_vertex_ai_agent_engine.py
copy airflow-ctl/src/airflowctl/__init__.py =>
providers/google/tests/system/google/cloud/vertex_ai/resources/agent_engine/Dockerfile
(86%)
copy {airflow-core/src/airflow/_shared =>
providers/google/tests/system/google/cloud/vertex_ai/resources/agent_engine}/__init__.py
(100%)
create mode 100644
providers/google/tests/system/google/cloud/vertex_ai/resources/agent_engine/hello_agent.py
create mode 100644
providers/google/tests/unit/google/cloud/hooks/vertex_ai/test_agent_engine.py
create mode 100644
providers/google/tests/unit/google/cloud/operators/vertex_ai/test_agent_engine.py
create mode 100644
providers/google/tests/unit/google/cloud/triggers/test_vertex_ai_agent_engine.py
create mode 100644 providers/microsoft/azure/docs/operators/ai_agents.rst
create mode 100644
providers/microsoft/azure/src/airflow/providers/microsoft/azure/_ai_agents.py
create mode 100644
providers/microsoft/azure/src/airflow/providers/microsoft/azure/hooks/ai_agents.py
create mode 100644
providers/microsoft/azure/src/airflow/providers/microsoft/azure/operators/ai_agents.py
create mode 100644
providers/microsoft/azure/src/airflow/providers/microsoft/azure/triggers/ai_agents.py
create mode 100644
providers/microsoft/azure/tests/system/microsoft/azure/example_azure_ai_agents.py
create mode 100644
providers/microsoft/azure/tests/unit/microsoft/azure/hooks/test_ai_agents.py
create mode 100644
providers/microsoft/azure/tests/unit/microsoft/azure/operators/test_ai_agents.py
create mode 100644
providers/microsoft/azure/tests/unit/microsoft/azure/test__ai_agents.py
create mode 100644
providers/microsoft/azure/tests/unit/microsoft/azure/triggers/test_ai_agents.py