This is an automated email from the ASF dual-hosted git repository.
bzp2010 pushed a change to branch
dependabot/github_actions/actions/setup-node-2.4.1
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git.
discard fdfa00c chore(deps): bump actions/setup-node from 2.4.0 to 2.4.1
add 321a195 feat: basic support Apache APISIX 2.10 (#2149)
add 5514657 feat: add shell to wait for services (#2157)
add ef1e2db feat: release 2.9.0 (#2154)
add 49224ef refactor: entity interface format (#2156)
add 29e3084 feat: add GetPlugin interface (#2158)
add 7fd36b3 chore(deps): bump actions/setup-node from 2.4.0 to 2.4.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 (fdfa00c)
\
N -- N -- N
refs/heads/dependabot/github_actions/actions/setup-node-2.4.1 (7fd36b3)
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/backend-e2e-test.yml | 10 +-
CHANGELOG.md | 28 ++
README.md | 2 +-
api/VERSION | 2 +-
api/conf/schema.json | 322 ++++++++++++++++++++-
api/internal/core/entity/entity.go | 9 +-
.../healthz.go => core/entity/interface.go} | 33 ++-
api/internal/core/store/store.go | 14 +-
api/test/docker/docker-compose.yaml | 2 +-
api/test/e2enew/service/service_test.go | 126 +++++++-
api/{run.sh => test/shell/wait_for_services.sh} | 18 +-
docs/en/latest/config.json | 2 +-
docs/en/latest/deploy-with-rpm.md | 2 +-
docs/en/latest/deploy.md | 2 +-
docs/en/latest/develop.md | 2 +-
web/cypress/fixtures/plugin-dataset.json | 118 +++++++-
...delete-plugin.spec.js => plugin-schema.spec.js} | 27 +-
...ate-route-with-referer-restriction-form.spec.js | 63 +++-
.../service/create-edit-delete-service.spec.js | 12 +
web/cypress/support/commands.js | 157 +++++-----
web/package.json | 2 +-
web/src/components/Plugin/PluginDetail.tsx | 21 +-
web/src/components/Plugin/UI/limit-conn.tsx | 50 +++-
web/src/components/Plugin/UI/proxy-mirror.tsx | 17 +-
.../components/Plugin/UI/referer-restriction.tsx | 121 ++++++--
web/src/components/Plugin/locales/en-US.ts | 11 +
web/src/components/Plugin/locales/zh-CN.ts | 11 +-
web/src/pages/Service/components/Step1.tsx | 68 ++++-
web/src/pages/Service/locales/en-US.ts | 2 +
web/src/pages/Service/locales/zh-CN.ts | 2 +
web/src/pages/Service/service.ts | 5 +-
.../IconFont.tsx => pages/Service/transform.ts} | 26 +-
web/src/pages/Service/typing.d.ts | 1 +
33 files changed, 1077 insertions(+), 211 deletions(-)
copy api/internal/{handler/healthz/healthz.go => core/entity/interface.go}
(61%)
copy api/{run.sh => test/shell/wait_for_services.sh} (76%)
rename web/cypress/integration/plugin/{create-edit-delete-plugin.spec.js =>
plugin-schema.spec.js} (77%)
copy web/src/{components/IconFont/IconFont.tsx => pages/Service/transform.ts}
(72%)