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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-c7cffec83b
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard ec92a862b8b Bump the core-ui-package-updates group across 1 directory 
with 51 updates
     add 0ef0a6beb4b Fix ``BranchPythonOperator`` failure when callable returns 
None (#54991)
     add 5f5c2a5970d Introduce `LIST` logic in AWS auth manager (#54987)
     add 0e89ef80db5 Small HITL UX improvements (#54990)
     add 81ef598fd8d Improve Grid view UX (#54846)
     add 37e74c74372 fix: Add cookies options into FAB provider.yaml (#54995)
     add 6bffc7596f3 Update `define-extra-link.rst` (#54985)
     add d91e51238be Add utility function for generic filter counting (#54817)
     add b2c42b713b8 Add map_index validation in categorize_task_instances 
(#54791)
     add 3b442a26186 Fix process leaks in `GitDagBundle` repository management 
(#54997)
     add ac1c1beb948 Run verify_integrity when cleared to run on latest (#54984)
     add b7387467c63 Honor dry-run mode better in start-rc-process to not run 
actual git commands (#55011)
     add 0558f8f2306 Fix serialization in google provider (#55014)
     add c0c24e49910 Added handler for cli command exit code in 
CloudComposerRunAirflowCLICommandOperator. (#54497)
     add b79b7f44381 Add `LIST` scope in Keycloak auth manager (#54998)
     add 85cd1646d35 Add hotkey shortcut to toggle between grid and graph 
views. (#54667)
     add f1af58da01f Dev: Remove `dry_run` overrides on some command for CI 
(#55025)
     add e5e0ef8126d Move from team_id to team_name (#55032)
     add 532ca6335b1 Bump the core-ui-package-updates group across 1 directory 
with 51 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   (ec92a862b8b)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-c7cffec83b
 (532ca6335b1)

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:
 airflow-core/docs/howto/define-extra-link.rst      |   2 +-
 .../core_api/services/public/task_instances.py     |  14 +-
 .../src/airflow/executors/base_executor.py         |   4 +-
 .../src/airflow/executors/executor_loader.py       |  20 +-
 .../src/airflow/executors/executor_utils.py        |  10 +-
 airflow-core/src/airflow/models/taskinstance.py    |   9 +-
 airflow-core/src/airflow/ui/package.json           |   4 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         |  40 +--
 .../src/airflow/ui/public/i18n/locales/ar/dag.json |   1 -
 .../src/airflow/ui/public/i18n/locales/de/dag.json |   3 +-
 .../src/airflow/ui/public/i18n/locales/en/dag.json |   7 +-
 .../airflow/ui/public/i18n/locales/en/hitl.json    |   7 +
 .../src/airflow/ui/public/i18n/locales/he/dag.json |   1 -
 .../src/airflow/ui/public/i18n/locales/ko/dag.json |   1 -
 .../src/airflow/ui/public/i18n/locales/nl/dag.json |   1 -
 .../src/airflow/ui/public/i18n/locales/pl/dag.json |   1 -
 .../src/airflow/ui/public/i18n/locales/tr/dag.json |   1 -
 .../airflow/ui/public/i18n/locales/zh-TW/dag.json  |   1 -
 .../ui/src/components/PendingActionsButton.tsx     |  58 ++++
 .../Dashboard/Stats => components}/StatsCard.tsx   |   0
 .../src/airflow/ui/src/hooks/navigation/types.ts   |   5 +-
 .../src/hooks/navigation/useKeyboardNavigation.ts  |  22 +-
 .../ui/src/hooks/navigation/useNavigation.ts       |  40 +--
 .../ui/src/layouts/Details/DetailsLayout.tsx       |  35 ++-
 .../airflow/ui/src/layouts/Details/Grid/Grid.tsx   |  49 +--
 .../airflow/ui/src/layouts/Details/Grid/GridTI.tsx | 134 +++-----
 .../ui/src/layouts/Details/Grid/useGridStore.ts    |  28 --
 .../ui/src/layouts/Details/PanelButtons.tsx        | 339 ++++++++++++---------
 .../ui/src/layouts/Details/ToggleGroups.tsx        |   4 +-
 .../airflow/ui/src/pages/Dag/Overview/Overview.tsx |   2 +
 .../src/pages/DagsList/DagsFilters/DagsFilters.tsx |  27 +-
 .../src/pages/Dashboard/Stats/DAGImportErrors.tsx  |   2 +-
 .../airflow/ui/src/pages/Dashboard/Stats/Stats.tsx |  29 +-
 .../airflow/ui/src/pages/Events/EventsFilters.tsx  |   3 +-
 .../src/airflow/ui/src/pages/Events/filterUtils.ts |  73 -----
 .../pages/HITLTaskInstances/HITLResponseForm.tsx   |   1 -
 .../pages/HITLTaskInstances/HITLTaskInstances.tsx  |  83 +++--
 .../ui/src/pages/Task/Overview/Overview.tsx        |   2 +
 .../src/airflow/ui/src/utils/filterUtils.test.ts   | 106 +++++++
 .../{rules/levels.js => src/utils/filterUtils.ts}  |  14 +-
 .../api_fastapi/core_api/services}/__init__.py     |   0
 .../core_api/services/public}/__init__.py          |   0
 .../services/public/test_task_instances.py         | 124 ++++++++
 .../tests/unit/executors/test_executor_loader.py   |  46 +--
 .../tests/unit/executors/test_executor_utils.py    |  84 ++---
 airflow-core/tests/unit/models/test_cleartasks.py  |  55 ++++
 .../commands/release_candidate_command.py          |   3 -
 devel-common/src/tests_common/pytest_plugin.py     |   1 -
 .../amazon/docs/auth-manager/manage/index.rst      |  29 +-
 .../amazon/aws/auth_manager/avp/entities.py        |   6 +-
 .../amazon/aws/auth_manager/avp/facade.py          |   6 +-
 .../amazon/aws/auth_manager/avp/schema.json        |  75 +++++
 .../amazon/aws/auth_manager/avp/test_entities.py   |  12 +-
 .../amazon/aws/auth_manager/avp/test_facade.py     |   9 +-
 providers/fab/provider.yaml                        |  14 +
 .../src/airflow/providers/fab/get_provider_info.py |  14 +
 .../git/src/airflow/providers/git/bundles/git.py   |   7 +-
 providers/git/tests/unit/git/bundles/test_git.py   |  16 +
 .../providers/google/cloud/hooks/cloud_composer.py |   7 +-
 .../cloud/hooks/cloud_storage_transfer_service.py  |  15 +-
 .../google/cloud/operators/cloud_composer.py       |  12 +-
 .../providers/google/cloud/operators/dataplex.py   |  24 +-
 .../providers/google/cloud/operators/dataproc.py   |  14 +-
 .../google/cloud/triggers/cloud_composer.py        |  17 +-
 .../providers/google/cloud/triggers/dataplex.py    |  16 +-
 .../providers/google/cloud/triggers/dataproc.py    |  23 +-
 .../test_cloud_storage_transfer_service_async.py   |  65 ++--
 .../google/cloud/operators/test_cloud_composer.py  |   6 +
 .../unit/google/cloud/operators/test_dataproc.py   |   4 +-
 .../unit/google/cloud/triggers/test_dataplex.py    |   4 +-
 .../unit/google/cloud/triggers/test_dataproc.py    |  28 +-
 .../keycloak/auth_manager/cli/commands.py          |   6 +-
 .../keycloak/auth_manager/keycloak_auth_manager.py |   2 +
 .../auth_manager/test_keycloak_auth_manager.py     |  18 +-
 .../airflow/providers/standard/operators/branch.py |  16 +-
 .../tests/unit/standard/operators/test_python.py   |  27 ++
 76 files changed, 1216 insertions(+), 772 deletions(-)
 create mode 100644 
airflow-core/src/airflow/ui/src/components/PendingActionsButton.tsx
 rename airflow-core/src/airflow/ui/src/{pages/Dashboard/Stats => 
components}/StatsCard.tsx (100%)
 delete mode 100644 
airflow-core/src/airflow/ui/src/layouts/Details/Grid/useGridStore.ts
 delete mode 100644 airflow-core/src/airflow/ui/src/pages/Events/filterUtils.ts
 create mode 100644 airflow-core/src/airflow/ui/src/utils/filterUtils.test.ts
 copy airflow-core/src/airflow/ui/{rules/levels.js => src/utils/filterUtils.ts} 
(72%)
 copy airflow-core/{src/airflow/_shared => 
tests/unit/api_fastapi/core_api/services}/__init__.py (100%)
 copy airflow-core/{src/airflow/_shared => 
tests/unit/api_fastapi/core_api/services/public}/__init__.py (100%)
 create mode 100644 
airflow-core/tests/unit/api_fastapi/core_api/services/public/test_task_instances.py

Reply via email to