You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by gi...@apache.org on 2022/11/06 06:52:29 UTC

[apisix-dashboard] branch dependabot/npm_and_yarn/web/moment-2.29.4 updated (5fb842536 -> f6b524ef9)

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

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


 discard 5fb842536 chore(deps): bump moment from 2.29.2 to 2.29.4 in /web
     add 95566d5f5 feat: Add config struct of OpenID-Connect Login (#2597)
     add b777d99be docs: add Slack invitation link badge (#2617)
     add 16c3e3e3a Feat: add tip and preset model for plugin editor, improve e2e stability (#2581)
     add e68b3aaf9 feat: dashboard support windows (#2619)
     add 7cbdc482f feat: Adding a Loading state to buttons (#2630)
     add 14ffc5837 feat:Configure plug-ins to support this feature (#2647)
     add 831df82a6 feat: add login filter of OpenID-Connect (#2608)
     add f64372fd5 feat: add etcd store auto re-initialize (#2650)
     add 78ade9289 fix: plugin_config missing on service exist (#2657)
     add b5672b64d fix: ant-table unable to request (#2641)
     add f6b524ef9 chore(deps): bump moment from 2.29.2 to 2.29.4 in /web

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   (5fb842536)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/web/moment-2.29.4 (f6b524ef9)

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/actions/tmate-action                       |   2 +-
 .github/workflows/backend-cli-test.yml             |  15 +-
 .github/workflows/backend-e2e-test.yml             |   4 +-
 .github/workflows/release-test.yml                 |   2 +-
 Dockerfile                                         |   4 +-
 README.md                                          |   1 +
 api/cmd/root.go                                    |  64 +++
 api/conf/conf.yaml                                 |  10 +
 api/go.mod                                         |  32 +-
 api/go.sum                                         | 459 +++++++++--------
 api/internal/conf/conf.go                          |  33 ++
 api/internal/core/server/store.go                  |   4 +-
 api/internal/core/storage/etcd.go                  |  54 +-
 api/internal/core/store/store.go                   | 121 +++--
 api/internal/filter/authentication.go              |  70 +--
 api/internal/filter/invalid_request.go             |   5 +-
 api/internal/filter/oidc.go                        | 100 ++++
 .../handler/data_loader/loader/openapi3/import.go  |   3 +-
 api/internal/route.go                              |   2 +-
 api/internal/utils/closer.go                       |   4 +-
 api/test/docker/Dockerfile                         |   2 +-
 api/test/docker/docker-compose.yaml                |   9 +
 api/test/e2e/go.mod                                |   5 +-
 api/test/e2e/go.sum                                |  39 +-
 .../auth_suite_test.go => oidc/oidc_suite_test.go} |   6 +-
 api/test/e2e/oidc/oidc_test.go                     | 275 ++++++++++
 api/test/shell/cli_test.sh                         | 117 ++++-
 web/.eslintrc.js                                   |  29 +-
 web/copy-folder.mjs                                |  16 +
 ...eate-consumer-with-basic-auth-plugin-form.cy.js |   2 +-
 .../plugin/create-delete-in-drawer-plugin.cy.js    |   4 +-
 .../create-route-with-plugin-orchestration.cy.js   |   1 +
 web/cypress/e2e/plugin/plugin-schema.cy.js         |   6 +-
 ...mplate-create-edit-delete-plugin-template.cy.js |   1 +
 ...emplate-create-plugin-template-with-route.cy.js |  18 +-
 .../rest/service-edit-service-with-upstream.cy.js  |   4 +-
 .../e2e/rest/service-save-paginator-status.cy.js   |   2 +-
 ...am-create_and_edit_upstream_with_no_nodes.cy.js |   4 +-
 web/cypress/e2e/route/batch-delete-route.cy.js     |  11 +-
 ...oute-with-search-service-and-set-priority.cy.js |   3 +-
 web/package.json                                   |  11 +-
 web/src/app.tsx                                    |  13 +-
 web/src/components/ActionBar/ActionBar.tsx         |   9 +-
 web/src/components/ActionBar/index.ts              |   2 +-
 web/src/components/Footer/index.tsx                |   2 +-
 web/src/components/HeaderDropdown/index.tsx        |   5 +-
 web/src/components/LabelsfDrawer/LabelsDrawer.tsx  |   4 +-
 web/src/components/NoticeIcon/NoticeList.tsx       |   4 +-
 web/src/components/NoticeIcon/index.tsx            |   8 +-
 web/src/components/PanelSection/index.tsx          |   5 +-
 web/src/components/Plugin/Models.ts                | 197 ++++++++
 web/src/components/Plugin/PluginDetail.tsx         |  29 +-
 web/src/components/Plugin/PluginPage.tsx           |   9 +-
 web/src/components/Plugin/UI/api-breaker.tsx       |   6 +-
 web/src/components/Plugin/UI/basic-auth.tsx        |   4 +-
 web/src/components/Plugin/UI/cors.tsx              |   6 +-
 web/src/components/Plugin/UI/limit-conn.tsx        |   4 +-
 web/src/components/Plugin/UI/limit-count.tsx       |   6 +-
 web/src/components/Plugin/UI/limit-req.tsx         |   4 +-
 web/src/components/Plugin/UI/plugin.tsx            |  10 +-
 web/src/components/Plugin/UI/proxy-mirror.tsx      |   4 +-
 .../components/Plugin/UI/referer-restriction.tsx   |   6 +-
 web/src/components/Plugin/index.ts                 |   2 +-
 web/src/components/Plugin/modelCode.ts             | 316 ++++++++++++
 web/src/components/PluginFlow/PluginFlow.tsx       |   8 +-
 .../PluginFlow/components/FlowGraph/FlowGraph.ts   |   9 +-
 .../PluginFlow/components/Toolbar/index.tsx        |  18 +-
 web/src/components/PluginFlow/constants.ts         |   4 +-
 web/src/components/PluginFlow/locales/tr-TR.ts     |   5 +-
 web/src/components/RawDataEditor/RawDataEditor.tsx |  10 +-
 web/src/components/RawDataEditor/locales/tr-TR.ts  |   2 +-
 web/src/components/RightContent/AvatarDropdown.tsx |   8 +-
 web/src/components/RightContent/index.tsx          |   4 +-
 web/src/components/Upstream/UpstreamForm.tsx       |  17 +-
 .../Upstream/components/KeepalivePool.tsx          |   2 +-
 web/src/components/Upstream/components/Nodes.tsx   |   4 +-
 .../components/Upstream/components/PassHost.tsx    |   2 +-
 web/src/components/Upstream/components/Retries.tsx |   2 +-
 .../Upstream/components/RetryTimeout.tsx           |   2 +-
 web/src/components/Upstream/components/Scheme.tsx  |   2 +-
 .../Upstream/components/ServiceDiscovery.tsx       |   3 +-
 .../Upstream/components/ServiceDiscoveryArgs.tsx   |   2 +-
 web/src/components/Upstream/components/TLS.tsx     |   3 +-
 web/src/components/Upstream/components/Timeout.tsx |   2 +-
 web/src/components/Upstream/components/Type.tsx    |   4 +-
 .../Upstream/components/UpstreamSelector.tsx       |   2 +-
 .../Upstream/components/UpstreamType.tsx           |   5 +-
 .../components/active-check/Concurrency.tsx        |   2 +-
 .../active-check/Healthy/HttpStatuses.tsx          |   4 +-
 .../components/active-check/Healthy/Interval.tsx   |   3 +-
 .../components/active-check/Healthy/index.ts       |   2 +-
 .../Upstream/components/active-check/Host.tsx      |   2 +-
 .../Upstream/components/active-check/HttpPath.tsx  |   2 +-
 .../active-check/HttpsVerifyCertificate.tsx        |   2 +-
 .../Upstream/components/active-check/Port.tsx      |   2 +-
 .../components/active-check/ReqHeaders.tsx         |   4 +-
 .../Upstream/components/active-check/Timeout.tsx   |   3 +-
 .../Upstream/components/active-check/Type.tsx      |   2 +-
 .../active-check/Unhealthy/HttpStatuses.tsx        |   4 +-
 .../components/active-check/Unhealthy/Interval.tsx |   2 +-
 .../components/active-check/Unhealthy/Timeouts.tsx |   2 +-
 .../components/active-check/Unhealthy/index.ts     |   6 +-
 .../Upstream/components/active-check/index.ts      |  13 +-
 .../passive-check/Healthy/HttpStatuses.tsx         |   4 +-
 .../components/passive-check/Healthy/Successes.tsx |   2 +-
 .../Upstream/components/passive-check/Type.tsx     |   2 +-
 .../passive-check/Unhealthy/HttpFailures.tsx       |   2 +-
 .../passive-check/Unhealthy/HttpStatuses.tsx       |   4 +-
 .../passive-check/Unhealthy/TcpFailures.tsx        |   2 +-
 .../passive-check/Unhealthy/Timeouts.tsx           |   2 +-
 .../components/passive-check/Unhealthy/index.ts    |   4 +-
 .../Upstream/components/passive-check/index.ts     |   2 +-
 web/src/components/Upstream/index.ts               |   2 +-
 web/src/components/Upstream/locales/tr-TR.ts       |  17 +-
 web/src/components/Upstream/service.ts             |   6 +-
 web/src/components/Upstream/typings.d.ts           |   4 +-
 web/src/global.tsx                                 |   6 +-
 web/src/helpers.tsx                                |  12 +-
 web/src/hooks/usePagination.ts                     |   8 +-
 web/src/locales/en-US.ts                           |  12 +-
 web/src/locales/en-US/component.ts                 |   3 +-
 web/src/locales/tr-TR.ts                           |  12 +-
 web/src/locales/tr-TR/component.ts                 |   9 +-
 web/src/locales/tr-TR/settingDrawer.ts             |   6 +-
 web/src/locales/zh-CN.ts                           |  12 +-
 web/src/locales/zh-CN/component.ts                 |   3 +-
 web/src/pages/Consumer/Create.tsx                  |  17 +-
 web/src/pages/Consumer/List.tsx                    |  35 +-
 web/src/pages/Consumer/components/Preview.tsx      |   3 +-
 web/src/pages/Consumer/components/Step1.tsx        |   2 +-
 web/src/pages/Consumer/locales/tr-TR.ts            |   4 +-
 web/src/pages/Dashboard/Dashboard.tsx              |   6 +-
 web/src/pages/Dashboard/locales/tr-TR.ts           |   3 +-
 web/src/pages/Plugin/List.tsx                      |  36 +-
 web/src/pages/Plugin/PluginMarket.tsx              |   9 +-
 web/src/pages/PluginTemplate/Create.tsx            |   8 +-
 web/src/pages/PluginTemplate/List.tsx              |  12 +-
 .../pages/PluginTemplate/components/Preview.tsx    |   3 +-
 web/src/pages/PluginTemplate/components/Step1.tsx  |   3 +-
 web/src/pages/Proto/List.tsx                       |  30 +-
 .../pages/Proto/components/ProtoDrawer/index.tsx   |  16 +-
 web/src/pages/Proto/locales/tr-TR.ts               |   6 +-
 web/src/pages/Route/Create.tsx                     |  32 +-
 web/src/pages/Route/List.tsx                       |  87 ++--
 .../Route/components/CreateStep4/CreateStep4.tsx   |   3 +-
 .../pages/Route/components/DataLoader/Import.tsx   |  10 +-
 .../components/DataLoader/loader/OpenAPI3.tsx      |   3 +-
 .../components/DebugViews/AuthenticationView.tsx   |   3 +-
 .../Route/components/DebugViews/DebugDrawView.tsx  |  16 +-
 .../components/DebugViews/DebugFormDataView.tsx    |   6 +-
 .../components/DebugViews/DebugParamsView.tsx      |   5 +-
 web/src/pages/Route/components/DebugViews/index.ts |   2 +-
 .../Route/components/ResultView/ResultView.tsx     |   2 +-
 .../Route/components/Step1/MatchingRulesView.tsx   |  12 +-
 web/src/pages/Route/components/Step1/MetaView.tsx  |   9 +-
 .../pages/Route/components/Step1/ProxyRewrite.tsx  |   9 +-
 .../Route/components/Step1/RequestConfigView.tsx   |   9 +-
 web/src/pages/Route/components/Step1/index.tsx     |   9 +-
 web/src/pages/Route/components/Step3/index.tsx     |   6 +-
 web/src/pages/Route/locales/en-US.ts               |   2 +-
 web/src/pages/Route/locales/tr-TR.ts               |   2 +-
 web/src/pages/Route/locales/zh-CN.ts               |   2 +-
 web/src/pages/Route/service.ts                     |   5 +-
 web/src/pages/Route/transform.ts                   |   7 +-
 web/src/pages/SSL/Create.tsx                       |  21 +-
 web/src/pages/SSL/List.tsx                         |  35 +-
 .../pages/SSL/components/CertificateForm/index.tsx |   4 +-
 .../SSL/components/CertificateUploader/index.tsx   |   7 +-
 web/src/pages/SSL/components/Step1/index.tsx       |   6 +-
 web/src/pages/SSL/components/Step2/index.tsx       |   2 +-
 web/src/pages/SSL/locales/tr-TR.ts                 |   2 +-
 web/src/pages/ServerInfo/List.tsx                  |   6 +-
 web/src/pages/Service/Create.tsx                   |  22 +-
 web/src/pages/Service/List.tsx                     |  40 +-
 web/src/pages/Service/components/Preview.tsx       |   3 +-
 web/src/pages/Service/components/Step1.tsx         |   4 +-
 web/src/pages/Service/locales/tr-TR.ts             |   2 +-
 web/src/pages/Service/service.ts                   |   1 +
 web/src/pages/Setting/Setting.tsx                  |   6 +-
 web/src/pages/Setting/index.ts                     |   2 +-
 web/src/pages/Upstream/Create.tsx                  |  32 +-
 web/src/pages/Upstream/List.tsx                    |  36 +-
 web/src/pages/Upstream/components/Step1.tsx        |   2 +-
 web/src/pages/Upstream/index.ts                    |   2 +-
 web/src/pages/Upstream/locales/tr-TR.ts            |   8 +-
 web/src/pages/User/Login.tsx                       |  14 +-
 web/src/pages/User/Logout.tsx                      |   2 +-
 .../pages/User/components/LoginMethodPassword.tsx  |   6 +-
 web/src/pages/User/index.ts                        |   2 +-
 web/src/pages/User/locales/tr-TR.ts                |   3 +-
 web/yarn.lock                                      | 562 +++++++++++++++++++--
 191 files changed, 2816 insertions(+), 970 deletions(-)
 create mode 100644 api/internal/filter/oidc.go
 copy api/test/e2e/{auth/auth_suite_test.go => oidc/oidc_suite_test.go} (92%)
 create mode 100644 api/test/e2e/oidc/oidc_test.go
 create mode 100644 web/copy-folder.mjs
 create mode 100644 web/src/components/Plugin/Models.ts
 create mode 100644 web/src/components/Plugin/modelCode.ts