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-380ac3ec7e
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 5518789ba24 Bump the core-ui-package-updates group across 1 directory 
with 49 updates
     add e737b5164d4 Remove configuration embedded note from providers (#56209)
     add d5ded852187 update AzureBaseHook to return credentials that supports 
get_token method (#52182)
     add 959e63eb1ee Revert "update AzureBaseHook to return credentials that 
supports get_token me…" (#56223)
     add a6506f2b468 Add optional pending dag runs check to auto refresh 
(#56014)
     add 9d4447d2784 Fix upgrade checks with prek (#56222)
     add 1f976d00fcc Fix scheduler crash during 3.0 to 3.1 migration when 
retry_delay is None (#56202)
     add 180ec473e9c Fix XCom object storage backend path validation (#56244)
     add 0931482db14 Temporarily limit fastapi to less than 0.118.0 to fix CI 
(#56239)
     add 1a3529a5754 chore: safeguard external call in OL sqlparser (#55692)
     add 9c62e762dab Add more comprehensive tests on DagCards (#55904)
     add 8615b55ae33 Bump version of providers (#56208)
     add 406a1a8ea67 Disable Gantt view by default (#56242)
     add c6531bb0637 Fix cron expression display for Day-of-Month and 
Day-of-Week conflicts (#54644)
     add d597ed99712 Add update_mask support for bulk PATCH APIs (#54597)
     add cb84438473d Implement filters for Dag run (#55735)
     add bfb7ecbb709 fix(api_fastapi): adjust model validator signature of 
TriggerDAGRunPostBody (#56025) (#56026)
     add bffd1f68458 Fix SQLA Mapped type import errors in model classes 
(#56253)
     add d3217056b06 Replace sasl with pyhive.get_installed_sasl for pure-sasl 
compatibility (#55772)
     add 422c6eb7bc7 SparkKubernetesOperator: preserve existing metadata labels 
in SparkApplication manifest (#56063)
     add 3f7991f30e8 Replace defaultValue with value in TaskTrySelect (#56141)
     add 12a9d7b5c5d Support Dynamic UI Alerts (#54677)
     add 130f4ae1999 [WEBSERVER] SerializedDagModel query bug fix impacting 
Grid view performance (#56257)
     add 80e8b4ac4b2 Bump the core-ui-package-updates group across 1 directory 
with 49 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   (5518789ba24)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-380ac3ec7e
 (80e8b4ac4b2)

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:
 .pre-commit-config.yaml                            |   2 +-
 airflow-core/docs/howto/customize-ui.rst           | 115 ++++++-
 airflow-core/pyproject.toml                        |  12 +-
 .../src/airflow/api_fastapi/common/parameters.py   |   8 +
 .../api_fastapi/core_api/datamodels/common.py      |   8 +
 .../api_fastapi/core_api/datamodels/dag_run.py     |  13 +-
 .../core_api/openapi/v2-rest-api-generated.yaml    | 103 ++++++
 .../api_fastapi/core_api/routes/public/dag_run.py  |  31 +-
 .../api_fastapi/core_api/routes/public/pools.py    |  34 +-
 .../core_api/routes/public/variables.py            |  33 +-
 .../api_fastapi/core_api/routes/ui/config.py       |   4 +-
 .../airflow/api_fastapi/core_api/routes/ui/grid.py |   2 +-
 .../api_fastapi/core_api/services/public/common.py |  48 +++
 .../api_fastapi/core_api/services/public/pools.py  |  89 ++++-
 .../core_api/services/public/variables.py          |  60 +++-
 airflow-core/src/airflow/models/dag_favorite.py    |   6 +-
 airflow-core/src/airflow/models/dagrun.py          |   8 +-
 .../src/airflow/models/db_callback_request.py      |   3 +-
 airflow-core/src/airflow/models/errors.py          |   6 +-
 airflow-core/src/airflow/models/pool.py            |   2 +-
 airflow-core/src/airflow/models/tasklog.py         |   6 +-
 airflow-core/src/airflow/models/taskmap.py         |   3 +-
 airflow-core/src/airflow/serialization/schema.json |   2 +-
 .../airflow/serialization/serialized_objects.py    |  15 +-
 airflow-core/src/airflow/timetables/_cron.py       |  47 ++-
 .../src/airflow/ui/openapi-gen/queries/common.ts   |   9 +-
 .../ui/openapi-gen/queries/ensureQueryData.ts      |  14 +-
 .../src/airflow/ui/openapi-gen/queries/prefetch.ts |  14 +-
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |  14 +-
 .../src/airflow/ui/openapi-gen/queries/suspense.ts |  14 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts | 115 +++++++
 .../ui/openapi-gen/requests/services.gen.ts        |  10 +
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |  26 ++
 airflow-core/src/airflow/ui/package.json           |  10 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 382 ++++++++++-----------
 .../airflow/ui/public/i18n/locales/en/common.json  |   4 +-
 .../airflow/ui/public/i18n/locales/en/dags.json    |   3 +-
 .../src/airflow/ui/src/components/DagRunInfo.tsx   |   4 +-
 .../ui/src/components/NeedsReviewButton.tsx        |   7 +-
 .../airflow/ui/src/components/TaskTrySelect.tsx    |   2 +-
 .../src/airflow/ui/src/constants/filterConfigs.tsx |  84 ++++-
 .../src/airflow/ui/src/constants/searchParams.ts   |   4 +
 .../ui/src/layouts/Details/DetailsLayout.tsx       |   2 +-
 .../airflow/ui/src/layouts/Details/Grid/Grid.tsx   |  15 +-
 airflow-core/src/airflow/ui/src/pages/Dag/Dag.tsx  |   2 +-
 .../airflow/ui/src/pages/Dag/Overview/Overview.tsx |   8 +-
 airflow-core/src/airflow/ui/src/pages/DagRuns.tsx  | 215 ++----------
 .../{XCom/XComFilters.tsx => DagRunsFilters.tsx}   |  38 +-
 .../airflow/ui/src/pages/DagsList/DagCard.test.tsx | 151 +++++++-
 .../src/airflow/ui/src/pages/DagsList/DagCard.tsx  |  16 +-
 .../ui/src/pages/Dashboard/Health/Health.tsx       |   2 +-
 .../HistoricalMetrics/HistoricalMetrics.tsx        |   2 +-
 .../pages/Dashboard/PoolSummary/PoolSummary.tsx    |   2 +-
 .../airflow/ui/src/pages/Dashboard/Stats/Stats.tsx |   2 +-
 .../ui/src/pages/Task/Overview/Overview.tsx        |  11 +-
 .../src/airflow/ui/src/queries/useGridRuns.ts      |   4 +-
 .../src/airflow/ui/src/queries/useGridStructure.ts |   3 +-
 airflow-core/src/airflow/ui/src/utils/query.ts     |  33 +-
 .../src/airflow/ui/src/utils/useFiltersHandler.ts  |   8 +
 .../core_api/routes/public/test_connections.py     |  48 +++
 .../core_api/routes/public/test_dag_run.py         |  57 ++-
 .../core_api/routes/public/test_pools.py           | 177 +++++++++-
 .../core_api/routes/public/test_variables.py       | 107 ++++++
 .../unit/serialization/test_dag_serialization.py   |  68 +++-
 .../test_cron_mixin.py}                            |  32 +-
 .../src/airflowctl/api/datamodels/generated.py     |  33 ++
 .../includes/providers-configurations-ref.rst      |   6 -
 .../airflow/providers/apache/hive/hooks/hive.py    |  37 +-
 .../kubernetes/operators/custom_object_launcher.py |   4 +-
 .../operators/test_custom_object_launcher.py       |  21 ++
 .../airflow/providers/common/io/xcom/backend.py    |   3 +-
 .../src/airflow/providers/openlineage/sqlparser.py |  34 +-
 .../tests/unit/openlineage/test_sqlparser.py       |  50 +++
 scripts/in_container/run_schema_defaults_check.py  |   3 +
 74 files changed, 1851 insertions(+), 719 deletions(-)
 copy airflow-core/src/airflow/ui/src/pages/{XCom/XComFilters.tsx => 
DagRunsFilters.tsx} (77%)
 copy airflow-core/tests/unit/{listeners/lifecycle_listener.py => 
timetables/test_cron_mixin.py} (57%)

Reply via email to