This is an automated email from the ASF dual-hosted git repository.
Lee-W pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 9ea5555529b [main] CI: Upgrade important CI environment
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 a9f5501add3 [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 (9ea5555529b)
\
N -- N -- N refs/heads/ci-upgrade-main (a9f5501add3)
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 +
.gitignore | 1 +
INSTALL | 22 +-
docs/spelling_wordlist.txt | 4 +
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 | 32 +-
50 files changed, 5846 insertions(+), 27 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