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

github-bot pushed a change to branch dependabot/npm_and_yarn/axios-1.13.1
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git


 discard 790c7fec1 chore(deps): bump axios from 1.11.0 to 1.13.1
     add 2d7e1947b feat: add Turkish (tr) language support (#3252)
     add b28b8841f test: add E2E tests for Consumer Groups (#3086) (#3250)
     add 4d9480152 test: add E2E tests for SSLs (#3087) (#3249)
     add 9a7661b6f test: add E2E tests for global rules (#3248)
     add e611715bc test(plugin_configs): add comprehensive E2E tests for plugin 
configs resource (#3246)
     add af28b8dc4 test: add E2E tests for protos (#3244)
     add bb5dddb62 test(e2e): Add E2E tests for consumer and credentials (#3243)
     add 855218205 test: add E2E tests for plugin metadata resource (#3247)
     add d32c945a4 fix: mask sensitive fields (#3251)
     add 889cef96e ci: remove label trigger e2e test (#3262)
     add e23b0d1bf chore(deps): bump apache/skywalking-eyes (#3261)
     add 951f319c1 chore(deps): bump actions/checkout from 5 to 6 (#3260)
     add b0d518137 enhance toc scrolling accuracy (#3264)
     add c7f05f8f9 chore(deps): bump actions/upload-artifact from 4 to 6 (#3265)
     add dae6ffadf chore(deps): bump axios from 1.11.0 to 1.13.1

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   (790c7fec1)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/axios-1.13.1 
(dae6ffadf)

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:
 .github/workflows/codeql-analysis.yml              |    2 +-
 .github/workflows/e2e.yml                          |   11 +-
 .github/workflows/gitleaks.yml                     |    2 +-
 .github/workflows/license-checker.yml              |    4 +-
 e2e/pom/{upstreams.ts => consumer_groups.ts}       |   28 +-
 e2e/pom/{routes.ts => consumers.ts}                |   26 +-
 e2e/pom/credentials.ts                             |   70 +
 e2e/pom/{upstreams.ts => global_rules.ts}          |   28 +-
 e2e/pom/{upstreams.ts => plugin_configs.ts}        |   30 +-
 e2e/pom/{stream_routes.ts => plugin_metadata.ts}   |   25 +-
 e2e/pom/{upstreams.ts => protos.ts}                |   26 +-
 e2e/tests/auth.spec.ts                             |   39 +-
 e2e/tests/consumer_groups.crud-all-fields.spec.ts  |  173 ++
 .../consumer_groups.crud-required-fields.spec.ts   |  147 +
 ...s.list.spec.ts => consumer_groups.list.spec.ts} |   68 +-
 e2e/tests/consumers.credentials.list.spec.ts       |  413 +++
 e2e/tests/consumers.crud-all-fields.spec.ts        |  145 +
 e2e/tests/consumers.crud-required-fields.spec.ts   |  127 +
 ...streams.list.spec.ts => consumers.list.spec.ts} |   57 +-
 e2e/tests/global_rules.crud-all-fields.spec.ts     |  137 +
 .../global_rules.crud-required-fields.spec.ts      |  110 +
 e2e/tests/global_rules.list.spec.ts                |  115 +
 e2e/tests/plugin_configs.crud-all-fields.spec.ts   |  265 ++
 .../plugin_configs.crud-required-fields.spec.ts    |  211 ++
 ...ms.list.spec.ts => plugin_configs.list.spec.ts} |   67 +-
 e2e/tests/plugin_metadata.crud-all-fields.spec.ts  |  222 ++
 .../plugin_metadata.crud-required-fields.spec.ts   |  143 +
 e2e/tests/plugin_metadata.list.spec.ts             |   83 +
 e2e/tests/protos.crud-all-fields.spec.ts           |  211 ++
 e2e/tests/protos.crud-required-fields.spec.ts      |  209 ++
 .../{routes.list.spec.ts => protos.list.spec.ts}   |   75 +-
 e2e/tests/ssls.crud-all-fields.spec.ts             |  190 ++
 e2e/tests/ssls.crud-required-fields.spec.ts        |  157 ++
 .../{routes.list.spec.ts => ssls.list.spec.ts}     |   75 +-
 e2e/utils/test.ts                                  |    3 +-
 package.json                                       |    2 +-
 pnpm-lock.yaml                                     | 2909 +++++++++-----------
 src/apis/consumer_groups.ts                        |   24 +-
 src/apis/consumers.ts                              |   20 +-
 src/components/Header/LanguageMenu.tsx             |    1 +
 src/components/form-slice/FormPartSecret.tsx       |   11 +-
 src/components/form-slice/FormSection/index.tsx    |    2 +-
 .../form-slice/FormSection/style.module.css        |    1 +
 .../form/{TextInput.tsx => PasswordInput.tsx}      |   16 +-
 src/components/page/SettingsModal.tsx              |   10 +-
 src/config/i18n.ts                                 |   10 +-
 src/locales/tr/common.json                         |  368 +++
 47 files changed, 5133 insertions(+), 1935 deletions(-)
 copy e2e/pom/{upstreams.ts => consumer_groups.ts} (64%)
 copy e2e/pom/{routes.ts => consumers.ts} (70%)
 create mode 100644 e2e/pom/credentials.ts
 copy e2e/pom/{upstreams.ts => global_rules.ts} (64%)
 copy e2e/pom/{upstreams.ts => plugin_configs.ts} (63%)
 copy e2e/pom/{stream_routes.ts => plugin_metadata.ts} (56%)
 copy e2e/pom/{upstreams.ts => protos.ts} (70%)
 create mode 100644 e2e/tests/consumer_groups.crud-all-fields.spec.ts
 create mode 100644 e2e/tests/consumer_groups.crud-required-fields.spec.ts
 copy e2e/tests/{upstreams.list.spec.ts => consumer_groups.list.spec.ts} (50%)
 create mode 100644 e2e/tests/consumers.credentials.list.spec.ts
 create mode 100644 e2e/tests/consumers.crud-all-fields.spec.ts
 create mode 100644 e2e/tests/consumers.crud-required-fields.spec.ts
 copy e2e/tests/{upstreams.list.spec.ts => consumers.list.spec.ts} (57%)
 create mode 100644 e2e/tests/global_rules.crud-all-fields.spec.ts
 create mode 100644 e2e/tests/global_rules.crud-required-fields.spec.ts
 create mode 100644 e2e/tests/global_rules.list.spec.ts
 create mode 100644 e2e/tests/plugin_configs.crud-all-fields.spec.ts
 create mode 100644 e2e/tests/plugin_configs.crud-required-fields.spec.ts
 copy e2e/tests/{upstreams.list.spec.ts => plugin_configs.list.spec.ts} (50%)
 create mode 100644 e2e/tests/plugin_metadata.crud-all-fields.spec.ts
 create mode 100644 e2e/tests/plugin_metadata.crud-required-fields.spec.ts
 create mode 100644 e2e/tests/plugin_metadata.list.spec.ts
 create mode 100644 e2e/tests/protos.crud-all-fields.spec.ts
 create mode 100644 e2e/tests/protos.crud-required-fields.spec.ts
 copy e2e/tests/{routes.list.spec.ts => protos.list.spec.ts} (55%)
 create mode 100644 e2e/tests/ssls.crud-all-fields.spec.ts
 create mode 100644 e2e/tests/ssls.crud-required-fields.spec.ts
 copy e2e/tests/{routes.list.spec.ts => ssls.list.spec.ts} (53%)
 copy src/components/form/{TextInput.tsx => PasswordInput.tsx} (74%)
 create mode 100644 src/locales/tr/common.json

Reply via email to