This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/typescript-ffe91a7dc7
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit c5687751266 Bump the typescript group across 1 directory with 4 updates
add a19c3dd19bd Fix DAGs list page Last Run/Next Run going stale after
runs complete (#70667)
add abdf3f8f6aa Add SandboxToolset for sandboxed agent shell and file
access (#68847)
add efec6ba3529 Fix `clearTaskInstances` returning 500 instead of 422 on
invalid body (#70237)
add e33a4f6dc78 Clarify How to upgrade docs for PyPI installs (#70897)
add 08974228440 Add synchronous Vertex AI Agent Engine query operator
(#70933)
add 7b4564201fa Fail Glue job tasks stopped mid-run in deferrable verbose
mode (#71495)
add 56f7acf804b Add pnpm overrides after audit review (#71253)
add 6afc88de6a8 Bump the typescript group across 1 directory with 4 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 (c5687751266)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/typescript-ffe91a7dc7
(6afc88de6a8)
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:
.../docs/installation/installing-from-pypi.rst | 2 +
airflow-core/docs/installation/upgrading.rst | 8 +-
.../core_api/datamodels/task_instances.py | 13 +-
airflow-core/src/airflow/ui/package.json | 7 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 189 +++++---
.../ui/src/queries/useDagRunStateCounts.tsx | 5 +-
.../src/airflow/ui/src/queries/useDags.tsx | 14 +-
.../core_api/routes/public/test_task_instances.py | 34 ++
docs/spelling_wordlist.txt | 6 +
.../airflow/providers/amazon/aws/triggers/glue.py | 5 +-
.../tests/unit/amazon/aws/triggers/test_glue.py | 9 +-
providers/common/ai/docs/toolsets.rst | 345 +++++++++++++-
providers/common/ai/provider.yaml | 4 +
.../providers/common/ai/get_provider_info.py | 5 +
.../providers/common/ai/sandbox/__init__.py | 35 +-
.../airflow/providers/common/ai/sandbox/base.py | 289 ++++++++++++
.../airflow/providers/common/ai/sandbox/output.py | 156 +++++++
.../src/airflow/providers/common/ai/sandbox/sbx.py | 440 ++++++++++++++++++
.../providers/common/ai/toolsets/__init__.py | 11 +-
.../providers/common/ai/toolsets/sandbox.py | 438 ++++++++++++++++++
.../providers/common/ai/utils/tool_definition.py | 26 ++
.../common/ai/tests/system/common/ai/README.md | 41 ++
.../common/ai/example_sandbox_toolset_sbx.py | 149 ++++++
.../ai/tests/unit/common/ai/sandbox}/__init__.py | 0
.../ai/tests/unit/common/ai/sandbox/test_base.py | 224 +++++++++
.../ai/tests/unit/common/ai/sandbox/test_output.py | 126 +++++
.../ai/tests/unit/common/ai/sandbox/test_sbx.py | 331 ++++++++++++++
.../tests/unit/common/ai/toolsets/test_sandbox.py | 505 +++++++++++++++++++++
.../google/docs/operators/cloud/vertex_ai.rst | 11 +
.../google/cloud/hooks/vertex_ai/agent_engine.py | 63 ++-
.../cloud/operators/vertex_ai/agent_engine.py | 87 ++++
.../vertex_ai/example_vertex_ai_agent_engine.py | 13 +
.../cloud/hooks/vertex_ai/test_agent_engine.py | 87 ++++
.../cloud/operators/vertex_ai/test_agent_engine.py | 63 +++
34 files changed, 3629 insertions(+), 112 deletions(-)
copy airflow-core/src/airflow/observability/stats.py =>
providers/common/ai/src/airflow/providers/common/ai/sandbox/__init__.py (63%)
create mode 100644
providers/common/ai/src/airflow/providers/common/ai/sandbox/base.py
create mode 100644
providers/common/ai/src/airflow/providers/common/ai/sandbox/output.py
create mode 100644
providers/common/ai/src/airflow/providers/common/ai/sandbox/sbx.py
create mode 100644
providers/common/ai/src/airflow/providers/common/ai/toolsets/sandbox.py
create mode 100644 providers/common/ai/tests/system/common/ai/README.md
create mode 100644
providers/common/ai/tests/system/common/ai/example_sandbox_toolset_sbx.py
copy {airflow-core/src/airflow/_shared =>
providers/common/ai/tests/unit/common/ai/sandbox}/__init__.py (100%)
create mode 100644
providers/common/ai/tests/unit/common/ai/sandbox/test_base.py
create mode 100644
providers/common/ai/tests/unit/common/ai/sandbox/test_output.py
create mode 100644 providers/common/ai/tests/unit/common/ai/sandbox/test_sbx.py
create mode 100644
providers/common/ai/tests/unit/common/ai/toolsets/test_sandbox.py