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/api_fastapi/auth/managers/simple/ui/axios-1.8.4
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard bb474358428 Bump axios
     add 9b421936318 Add Edit connection button on list connection page (#48102)
     add 6c046abde1f Bugfix/update NPM dependencies (#48123)
     add 93ec99aafc4 Bump axios

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   (bb474358428)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui/axios-1.8.4
 (93ec99aafc4)

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-lock.json      | 1572 +++---
 .../auth/managers/simple/ui/package.json           |   26 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         | 2100 ++++----
 .../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 +-
 59 files changed, 4814 insertions(+), 5032 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