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


    omit 77ad3daab03 Bump the core-ui-package-updates group across 1 directory 
with 58 updates
     add 46e2bdca6d2 AIP-67 multi-team: Introduce multi-team task scheduling 
(#57837)
     add b34e63a246d Update references to mask_secret in the docs to use the 
latest path (#58526)
     add 83eaca08260 +Parse string with timezone to dayjs object, rather than 
create dayjs object and convert it (#57880)
     add 3dfd5bfabdb Enhance FilterBar with DateRangeFilter for compact UI 
(#56173)
     add 554c1856945 Checkbox before clear task confirmation to prevent rerun 
of tasks in 'Running' states. (#56351)
     add 9569d4321fd Upgrade js-yaml to 4.1.1 in Core (#58502)
     add d88c593f436 Bump the core-ui-package-updates group across 1 directory 
with 58 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   (77ad3daab03)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-f7fe840db6
 (d88c593f436)

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:
 .../security/secrets/mask-sensitive-values.rst     |   4 +-
 .../auth/managers/simple/ui/package-lock.json      |  18 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         |  10 +-
 .../core_api/datamodels/task_instances.py          |   1 +
 .../core_api/openapi/v2-rest-api-generated.yaml    |  10 +
 .../core_api/routes/public/task_instances.py       |  20 +-
 airflow-core/src/airflow/exceptions.py             |   4 +
 .../src/airflow/jobs/scheduler_job_runner.py       | 169 ++++++-
 airflow-core/src/airflow/models/taskinstance.py    |  14 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |   5 +
 .../ui/openapi-gen/requests/services.gen.ts        |   1 +
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   5 +
 airflow-core/src/airflow/ui/package.json           |   2 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         |  28 +-
 .../airflow/ui/public/i18n/locales/en/common.json  |   5 +-
 .../ui/public/i18n/locales/en/components.json      |   7 +
 .../airflow/ui/public/i18n/locales/en/dags.json    |   7 +-
 .../airflow/ui/public/i18n/locales/en/hitl.json    |   3 +-
 .../ui/src/components/Assets/AssetEventsFilter.tsx |  21 +-
 .../ClearTaskInstanceConfirmationDialog.tsx        | 151 ++++++
 .../Clear/TaskInstance/ClearTaskInstanceDialog.tsx |  92 ++--
 .../airflow/ui/src/components/DateTimeInput.tsx    |   2 +-
 .../ui/src/components/FilterBar/FilterBar.tsx      |  17 +-
 .../ui/src/components/FilterBar/FilterPill.tsx     |   3 +-
 .../ui/src/components/FilterBar/defaultIcons.tsx   |   7 +-
 .../components/FilterBar/filters/DateFilter.tsx    |   8 +-
 .../src/components/FilterBar/filters/DateInput.tsx | 102 ++++
 .../FilterBar/filters/DateRangeCalendar.tsx        | 182 ++++++++
 .../FilterBar/filters/DateRangeFilter.test.tsx     | 247 ++++++++++
 .../FilterBar/filters/DateRangeFilter.tsx          | 162 +++++++
 .../FilterBar/filters/DateRangeInputs.tsx          | 191 ++++++++
 .../components/FilterBar/filters/NumberFilter.tsx  |  11 +-
 .../components/FilterBar/filters/SelectFilter.tsx  |   6 +-
 .../FilterBar/filters/TextSearchFilter.tsx         |   7 +-
 .../airflow/ui/src/components/FilterBar/types.ts   |  11 +-
 .../airflow/ui/src/components/FilterBar/utils.ts   |  73 +++
 .../src/airflow/ui/src/constants/filterConfigs.tsx |  66 ++-
 .../src/airflow/ui/src/constants/searchParams.ts   |   5 +
 .../src/airflow/ui/src/hooks/useCalendarSelect.ts  |  37 +-
 .../src/airflow/ui/src/hooks/useDateRangeFilter.ts | 334 +++++++++++++
 .../src/airflow/ui/src/pages/DagRunsFilters.tsx    |  30 +-
 .../airflow/ui/src/pages/Events/EventsFilters.tsx  |  27 +-
 .../ui/src/pages/HITLTaskInstances/HITLFilters.tsx |  38 +-
 .../src/airflow/ui/src/pages/XCom/XComFilters.tsx  |  30 +-
 .../ui/src/queries/useClearTaskInstances.ts        |  41 +-
 .../src/airflow/ui/src/utils/datetimeUtils.test.ts |  33 +-
 .../src/airflow/ui/src/utils/datetimeUtils.ts      |  10 +
 .../src/airflow/ui/src/utils/useFiltersHandler.ts  | 100 +++-
 .../core_api/routes/public/test_task_instances.py  |   4 +-
 airflow-core/tests/unit/jobs/test_scheduler_job.py | 519 +++++++++++++++++++++
 .../src/airflowctl/api/datamodels/generated.py     |   1 +
 .../react_plugin_template/pnpm-lock.yaml           |   8 +-
 52 files changed, 2545 insertions(+), 344 deletions(-)
 create mode 100644 
airflow-core/src/airflow/ui/src/components/Clear/TaskInstance/ClearTaskInstanceConfirmationDialog.tsx
 create mode 100644 
airflow-core/src/airflow/ui/src/components/FilterBar/filters/DateInput.tsx
 create mode 100644 
airflow-core/src/airflow/ui/src/components/FilterBar/filters/DateRangeCalendar.tsx
 create mode 100644 
airflow-core/src/airflow/ui/src/components/FilterBar/filters/DateRangeFilter.test.tsx
 create mode 100644 
airflow-core/src/airflow/ui/src/components/FilterBar/filters/DateRangeFilter.tsx
 create mode 100644 
airflow-core/src/airflow/ui/src/components/FilterBar/filters/DateRangeInputs.tsx
 create mode 100644 
airflow-core/src/airflow/ui/src/components/FilterBar/utils.ts
 copy 
providers/edge3/src/airflow/providers/edge3/plugins/www/src/utils/useContainerWidth.ts
 => airflow-core/src/airflow/ui/src/hooks/useCalendarSelect.ts (58%)
 create mode 100644 airflow-core/src/airflow/ui/src/hooks/useDateRangeFilter.ts

Reply via email to