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 50bd7d94796 Bump the typescript group across 1 directory with 4 updates
add 956b7f866aa Verify Java SDK build dependencies (#71400)
add d1e5f1a6134 Fix Calendar view hanging for Dags with high-frequency
cron schedules (#71263)
add 576c6530784 Update providers metadata 2026-08-10 (#71385)
add 1637347c128 Bump the auth-ui-package-updates group across 1 directory
with 6 updates (#71410)
add e8b81132f88 Bump eslint-plugin-unicorn (#71412)
add a9c35b24ef1 Always tag providers from the wave tag during release
(#71431)
add fdbf56053cd Bump the edge-ui-package-updates group across 1 directory
with 14 updates (#71420)
add 84a211b5d22 UI: Show owning team on Dag, Dag Run, and Task Instance
detail pages (#70312)
add e3671dd24e1 Keep Dag run execution API endpoints working for older
Task SDK clients (#70138)
add fe9ca480fb8 Add ConnectionNotFoundError to the TypeScript SDK (#71375)
add cf4c7690e04 Require a lower bound on every dependency in
pyproject.toml (#71378)
add e068c6e0934 Update grid view refresh (#71004)
add 8a5c3ba704b Bump the core-ui-package-updates group across 1 directory
with 2 updates (#71417)
add affe4595ba1 Bump the ui-plugin-template-package-updates group across 1
directory with 6 updates (#71406)
add a214341bd42 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 (50bd7d94796)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/typescript-ffe91a7dc7
(a214341bd42)
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/java-sdk-release-verify.yml | 40 +-
.pre-commit-config.yaml | 8 +
.../language-sdks/typescript.rst | 4 +-
.../auth/managers/simple/ui/package.json | 14 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 269 +-
.../src/airflow/api_fastapi/common/db/dag_runs.py | 6 +-
.../src/airflow/api_fastapi/common/db/dags.py | 37 +-
.../api_fastapi/common/db/task_instances.py | 5 +-
.../api_fastapi/core_api/datamodels/dags.py | 1 +
.../core_api/openapi/v2-rest-api-generated.yaml | 5 +
.../api_fastapi/core_api/routes/public/dag_run.py | 8 +-
.../api_fastapi/core_api/routes/public/dags.py | 4 +-
.../core_api/routes/public/task_instances.py | 7 +-
.../api_fastapi/core_api/services/ui/calendar.py | 6 +-
.../execution_api/datamodels/taskinstance.py | 4 +
.../execution_api/routes/task_instances.py | 5 +-
.../execution_api/versions/v2026_06_30.py | 27 +
airflow-core/src/airflow/models/dag.py | 24 +
airflow-core/src/airflow/models/dagbundle.py | 6 +
airflow-core/src/airflow/models/dagrun.py | 8 +
airflow-core/src/airflow/models/taskinstance.py | 1 +
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 11 +
.../airflow/ui/openapi-gen/requests/types.gen.ts | 1 +
airflow-core/src/airflow/ui/package.json | 4 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 98 +-
.../TeamName.test.tsx} | 38 +-
.../components/{WarningAlert.tsx => TeamName.tsx} | 23 +-
.../{rules/levels.js => src/hooks/useShowTeam.ts} | 15 +-
.../airflow/ui/src/layouts/Details/Grid/Grid.tsx | 2 -
.../src/airflow/ui/src/pages/Dag/Details.tsx | 12 +
.../src/airflow/ui/src/pages/Dag/Header.test.tsx | 37 +-
.../src/airflow/ui/src/pages/Dag/Header.tsx | 11 +
.../src/airflow/ui/src/pages/DagRuns/DagRuns.tsx | 8 +-
.../src/airflow/ui/src/pages/DagsList/DagCard.tsx | 7 +-
.../src/airflow/ui/src/pages/DagsList/DagsList.tsx | 8 +-
.../src/airflow/ui/src/pages/Run/Details.tsx | 12 +
.../src/airflow/ui/src/pages/Run/Header.test.tsx | 21 +
.../src/airflow/ui/src/pages/Run/Header.tsx | 11 +
.../airflow/ui/src/pages/TaskInstance/Details.tsx | 12 +
.../ui/src/pages/TaskInstance/Header.test.tsx | 78 +
.../airflow/ui/src/pages/TaskInstance/Header.tsx | 11 +
.../ui/src/pages/TaskInstances/TaskInstances.tsx | 8 +-
.../gridViewQueryKeys.test.ts} | 27 +-
.../airflow/ui/src/queries/gridViewQueryKeys.ts | 3 +
.../src/airflow/ui/src/queries/useGridStructure.ts | 38 +-
.../ui/src/queries/useGridTISummaries.test.tsx | 47 +-
.../airflow/ui/src/queries/useGridTISummaries.ts | 7 +-
.../core_api/routes/public/test_dag_run.py | 19 +
.../core_api/routes/public/test_dags.py | 36 +-
.../core_api/routes/public/test_task_instances.py | 45 +
.../core_api/routes/ui/test_calendar.py | 39 +
.../versions/head/test_task_instances.py | 59 +
.../versions/v2026_06_30/test_dag_runs.py | 90 +
airflow-core/tests/unit/models/test_team.py | 130 +
.../src/airflowctl/api/datamodels/generated.py | 1 +
clients/python/pyproject.toml | 2 +-
.../13_airflow_dependencies_and_extras.rst | 15 +
dev/README_RELEASE_PROVIDERS.md | 35 +
.../react_plugin_template/package.json | 12 +-
.../react_plugin_template/pnpm-lock.yaml | 204 +-
generated/provider_metadata.json | 8 +
java-sdk/README.md | 22 +
java-sdk/build.gradle.kts | 9 +
java-sdk/buildSrc/build.gradle.kts | 7 +
.../main/kotlin/airflow-jvm-conventions.gradle.kts | 4 -
java-sdk/gradle/verification-metadata.xml | 3029 ++++++++++++++++++++
java-sdk/plugin/build.gradle.kts | 4 -
java-sdk/settings.gradle.kts | 14 +
providers/common/ai/docs/index.rst | 10 +-
providers/common/ai/pyproject.toml | 10 +-
.../providers/edge3/plugins/www/package.json | 28 +-
.../providers/edge3/plugins/www/pnpm-lock.yaml | 640 ++---
.../airflow/providers/openlineage/utils/utils.py | 7 +-
scripts/ci/prek/check_dependency_lower_bounds.py | 146 +
scripts/ci/prek/check_ti_vs_tis_attributes.py | 2 +
.../ci/prek/test_check_dependency_lower_bounds.py | 143 +
ts-sdk/README.md | 10 +-
ts-sdk/src/coordinator/client.ts | 8 +-
ts-sdk/src/index.ts | 2 +-
ts-sdk/src/sdk/client.ts | 20 +
ts-sdk/tests/coordinator/client.test.ts | 26 +
ts-sdk/tests/public-api.test.ts | 9 +
uv.lock | 20 +-
83 files changed, 5055 insertions(+), 849 deletions(-)
copy airflow-core/src/airflow/ui/src/{layouts/Nav/DocsButton.test.tsx =>
components/TeamName.test.tsx} (51%)
copy airflow-core/src/airflow/ui/src/components/{WarningAlert.tsx =>
TeamName.tsx} (66%)
copy airflow-core/src/airflow/ui/{rules/levels.js => src/hooks/useShowTeam.ts}
(70%)
create mode 100644
airflow-core/src/airflow/ui/src/pages/TaskInstance/Header.test.tsx
copy airflow-core/src/airflow/ui/src/{utils/ChakraWrapper.test.tsx =>
queries/gridViewQueryKeys.test.ts} (57%)
create mode 100644
airflow-core/tests/unit/api_fastapi/execution_api/versions/v2026_06_30/test_dag_runs.py
create mode 100644 java-sdk/gradle/verification-metadata.xml
create mode 100755 scripts/ci/prek/check_dependency_lower_bounds.py
create mode 100644 scripts/tests/ci/prek/test_check_dependency_lower_bounds.py