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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/eslint-9.23.0
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 0ead882eff4 Bump eslint in /providers/fab/src/airflow/providers/fab/www
     add 9b421936318 Add Edit connection button on list connection page (#48102)
     add 6c046abde1f Bugfix/update NPM dependencies (#48123)
     add cd5eb94eb3f Bump eslint in /providers/fab/src/airflow/providers/fab/www

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   (0ead882eff4)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/eslint-9.23.0
 (cd5eb94eb3f)

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:
 .../auth/managers/simple/ui/package.json           |   28 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         | 2172 ++++----
 .../src/airflow/ui/openapi-gen/queries/common.ts   |    2 +-
 .../queries/{prefetch.ts => ensureQueryData.ts}    |  278 +-
 .../src/airflow/ui/openapi-gen/queries/index.ts    |    2 +-
 .../ui/openapi-gen/queries/infiniteQueries.ts      |    2 +-
 .../src/airflow/ui/openapi-gen/queries/prefetch.ts |    2 +-
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |    2 +-
 .../src/airflow/ui/openapi-gen/queries/suspense.ts |    2 +-
 airflow-core/src/airflow/ui/package.json           |   88 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 5181 +++++++++-----------
 .../src/components/DagActions/RunBackfillModal.tsx |    6 +-
 .../src/components/FlexibleForm/FieldDateTime.tsx  |    1 +
 .../components/FlexibleForm/FieldMultilineText.tsx |    1 +
 .../ui/src/components/FlexibleForm/FieldNumber.tsx |    1 +
 .../ui/src/components/FlexibleForm/FieldString.tsx |    1 +
 .../ui/src/components/FlexibleForm/HiddenInput.tsx |    1 +
 .../src/airflow/ui/src/components/StateBadge.tsx   |    2 +-
 .../src/airflow/ui/src/components/StateIcon.tsx    |    2 +
 .../src/components/TriggerDag/TriggerDAGModal.tsx  |   10 +-
 .../ui/src/components/ui/Accordion/ItemTrigger.tsx |    2 +-
 .../ui/src/components/ui/ActionBar/BarContent.tsx  |    4 +-
 .../src/airflow/ui/src/components/ui/Alert.tsx     |   12 +-
 .../ui/src/components/ui/Breadcrumb/Root.tsx       |    4 +-
 .../src/airflow/ui/src/components/ui/Button.tsx    |    4 +-
 .../src/airflow/ui/src/components/ui/Checkbox.tsx  |    6 +-
 .../ui/src/components/ui/Dialog/CloseTrigger.tsx   |    2 +-
 .../ui/src/components/ui/Dialog/Content.tsx        |    6 +-
 .../ui/src/components/ui/FileUpload/Dropzone.tsx   |    4 +-
 .../ui/src/components/ui/FileUpload/FileInput.tsx  |    2 +-
 .../ui/src/components/ui/FileUpload/Item.tsx       |    6 +-
 .../ui/src/components/ui/FileUpload/List.tsx       |    6 +-
 .../ui/src/components/ui/FileUpload/Root.tsx       |    2 +-
 .../airflow/ui/src/components/ui/InputGroup.tsx    |   10 +-
 .../src/airflow/ui/src/components/ui/Menu.tsx      |    4 +-
 .../ui/src/components/ui/Pagination/PageText.tsx   |    2 +-
 .../ui/src/components/ui/Pagination/Root.tsx       |    4 +-
 .../ui/src/components/ui/Popover/Content.tsx       |    4 +-
 .../src/airflow/ui/src/components/ui/RadioCard.tsx |   14 +-
 .../ui/src/components/ui/Select/Content.tsx        |    4 +-
 .../ui/src/components/ui/Select/ItemGroup.tsx      |    2 +-
 .../ui/src/components/ui/Select/Trigger.tsx        |    4 +-
 .../ui/src/components/ui/Select/ValueText.tsx      |    2 +-
 .../src/airflow/ui/src/components/ui/Switch.tsx    |    8 +-
 .../src/airflow/ui/src/components/ui/Tag.tsx       |    8 +-
 .../src/airflow/ui/src/components/ui/Tooltip.tsx   |   12 +-
 .../src/airflow/ui/src/layouts/Nav/LogoutModal.tsx |    4 +-
 .../airflow/ui/src/layouts/Nav/TimezoneModal.tsx   |    4 +-
 .../src/pages/Connections/AddConnectionButton.tsx  |   40 +-
 .../ui/src/pages/Connections/ConnectionForm.tsx    |  149 +-
 .../pages/Connections/ConnectionStandardFields.tsx |   98 +
 .../ui/src/pages/Connections/Connections.tsx       |   17 +
 .../EditConnectionButton.tsx}                      |   41 +-
 .../src/pages/TaskInstance/RenderedTemplates.tsx   |    1 +
 .../src/airflow/ui/src/queries/useAddConnection.ts |    6 +-
 .../ui/src/queries/useConnectionTypeMeta.ts        |    6 +-
 .../src/airflow/ui/src/queries/useDagParams.ts     |    2 +-
 .../{useEditPool.ts => useEditConnection.tsx}      |   58 +-
 58 files changed, 4003 insertions(+), 4345 deletions(-)
 copy airflow-core/src/airflow/ui/openapi-gen/queries/{prefetch.ts => 
ensureQueryData.ts} (89%)
 create mode 100644 
airflow-core/src/airflow/ui/src/pages/Connections/ConnectionStandardFields.tsx
 copy 
airflow-core/src/airflow/ui/src/pages/{Variables/ManageVariable/EditVariableButton.tsx
 => Connections/EditConnectionButton.tsx} (62%)
 copy airflow-core/src/airflow/ui/src/queries/{useEditPool.ts => 
useEditConnection.tsx} (50%)

Reply via email to