This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-0453533dc7
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard fbcefd40e81 Bump the ui-plugin-template-package-updates group across 1 
directory with 25 updates
     add 0224303bc68 Fix backfill run_on_latest_version defaulting to False 
instead of True (#59304)
     add 95adec475f9 Add hints for claim validation to auth manager 
documentation (#59320)
     add c9e190fb254 Add todo re exception handling in dagrun create loop 
(#59121)
     add a27dd7be521 Update json to JSON for consistency in translations 
(#59323)
     add f4cd07129d8 Bump the fab-ui-package-updates group across 1 directory 
with 3 updates (#59242)
     add 2bacaea711e `ISSUE_TRIAGE_PROCESS.rst` fix link: spelling and 
whitespace (#59340)
     add dfeca8274e0 Update manager.py (#59330)
     add 81dee2f4fe1 Optimize K8s API usage for watching events (#59080)
     add 310e1181cb5 Fix _format_schema_for_description to handle missing 
"fields" key gracefully (#59343)
     add 23ab73adf0a build: upgrade uv to 0.9.17, prek to 0.2.21, ruff to 
0.14.9 (#59350)
     add 8b604105c97 add pull for docker images + complie UI assets for 
workflow_dispatch (#59315)
     add cd4c768a0f3 nit: bump OL client dependency to 1.41 (#59321)
     add acce763164f Add toaster notifications for Connection Test (#59354)
     add 5fdee096fe8 Fix toast notification description text truncation (#59356)
     add 8256ee16d1d Add task group ID filtering support to task instance query 
(#58092)
     add 2fddc4b99b1 Bump the ui-plugin-template-package-updates group across 1 
directory with 25 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   (fbcefd40e81)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-0453533dc7
 (2fddc4b99b1)

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/actions/breeze/action.yml                  |   2 +-
 .github/actions/install-prek/action.yml            |   4 +-
 .github/workflows/basic-tests.yml                  |   2 +-
 .github/workflows/release_dockerhub_image.yml      |   2 +-
 .github/workflows/ui-e2e-tests.yml                 |   9 +
 .pre-commit-config.yaml                            |   2 +-
 Dockerfile                                         |   2 +-
 Dockerfile.ci                                      |   4 +-
 ISSUE_TRIAGE_PROCESS.rst                           |   2 +-
 airflow-core/docs/best-practices.rst               |   2 +-
 .../src/airflow/api_fastapi/common/parameters.py   |  57 +++-
 .../api_fastapi/core_api/datamodels/backfills.py   |   1 +
 .../core_api/openapi/v2-rest-api-generated.yaml    |  16 +
 .../core_api/routes/public/backfills.py            |   1 +
 .../core_api/routes/public/task_instances.py       |   7 +-
 airflow-core/src/airflow/cli/cli_config.py         |   5 +-
 airflow-core/src/airflow/dag_processing/manager.py |   7 +-
 .../src/airflow/jobs/scheduler_job_runner.py       |   4 +
 .../src/airflow/ui/openapi-gen/queries/common.ts   |   5 +-
 .../ui/openapi-gen/queries/ensureQueryData.ts      |   6 +-
 .../src/airflow/ui/openapi-gen/queries/prefetch.ts |   6 +-
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |   6 +-
 .../src/airflow/ui/openapi-gen/queries/suspense.ts |   6 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |   5 +
 .../ui/openapi-gen/requests/services.gen.ts        |   2 +
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   5 +
 .../airflow/ui/public/i18n/locales/en/admin.json   |   6 +
 .../airflow/ui/public/i18n/locales/en/common.json  |   4 +-
 .../TaskInstance/ClearGroupTaskInstanceDialog.tsx  |   2 +-
 .../src/components/DagActions/RunBackfillForm.tsx  |  42 +--
 .../ui/src/components/ui/Toaster/Toaster.tsx       |   4 +-
 .../ui/src/pages/Task/Overview/Overview.tsx        |   4 +-
 .../ui/src/pages/TaskInstances/TaskInstances.tsx   |   3 +-
 .../airflow/ui/src/queries/useTestConnection.ts    |  21 +-
 .../core_api/routes/public/test_task_instances.py  |  21 ++
 .../unit/cli/commands/test_backfill_command.py     |   6 +-
 .../src/airflowctl/api/datamodels/generated.py     |   1 +
 chart/templates/rbac/pod-launcher-role.yaml        |   1 +
 dev/breeze/doc/ci/02_images.md                     |   4 +-
 dev/breeze/pyproject.toml                          |   2 +-
 .../commands/release_management_commands.py        |   4 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   2 +-
 .../airflow_breeze/utils/docker_compose_utils.py   |  17 +-
 dev/breeze/uv.lock                                 | 161 ++++-----
 .../react_plugin_template/package.json             |   2 +-
 .../react_plugin_template/pnpm-lock.yaml           |  44 +--
 devel-common/pyproject.toml                        |   2 +-
 .../providers/cncf/kubernetes/hooks/kubernetes.py  |  96 +++++-
 .../providers/cncf/kubernetes/operators/pod.py     |  26 +-
 .../providers/cncf/kubernetes/triggers/pod.py      |  27 +-
 .../providers/cncf/kubernetes/utils/pod_manager.py |  87 +++--
 .../unit/cncf/kubernetes/hooks/test_kubernetes.py  | 211 ++++++++++++
 .../unit/cncf/kubernetes/triggers/test_pod.py      |  24 +-
 .../unit/cncf/kubernetes/utils/test_pod_manager.py | 374 ++++++++++++++++++++-
 providers/fab/docs/auth-manager/token.rst          |  10 +-
 .../airflow/providers/fab/www/package-lock.json    | 158 ++++++---
 .../fab/src/airflow/providers/fab/www/package.json |   4 +-
 providers/fab/www-hash.txt                         |   2 +-
 .../providers/google/cloud/hooks/bigquery.py       |  25 +-
 .../tests/unit/google/cloud/hooks/test_bigquery.py |   5 +
 providers/openlineage/docs/index.rst               |   4 +-
 providers/openlineage/pyproject.toml               |   4 +-
 pyproject.toml                                     |   2 +-
 scripts/ci/prek/check_imports_in_providers.py      |   2 +-
 scripts/ci/prek/ruff_format.py                     |   2 +-
 scripts/tools/setup_breeze                         |   2 +-
 66 files changed, 1268 insertions(+), 320 deletions(-)

Reply via email to