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/03/25 02:34:36 UTC

[apisix-dashboard] branch dependabot/github_actions/actions/setup-python-3 updated (3ea76c8 -> 16b0b48)

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

github-bot pushed a change to branch dependabot/github_actions/actions/setup-python-3
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git.


    omit 3ea76c8  chore(deps): bump actions/setup-python from 2.3.2 to 3
     add 9d99ab7  feat: basic support Apache APISIX 2.12.1 (#2315)
     add 2aadeff  chore: Extract paging related functions into standalone hook (#2334)
     add 6367ffd  feat: support protobuf on Web (#2320)
     add 561ed37  chore: modify the select upstream field to upstream (#2344)
     add 4e72d92  fix: ! (reverse) operator not handled correctly (#2364)
     add 7c5eced  feat: improve Consumer module (#2327)
     add eb51353  feat: add data loader framework (#2371)
     add 2c563dc  feat: release 2.11.0 (#2361)
     add edca223  feat: add security header (#2341)
     add 109d1cc  fix: format error in changelog (#2378)
     add bc13bb9  fix: caller location error in logs (#2367)
     add edeed6b  feat: storage grafana path in to etcd (#2362)
     add a7e700a  fix(import routes): merge route when route have the same name (#2330)
     add 2f1ebac  chore(deps): bump actions/setup-go from 2.1.5 to 3 (#2352)
     add f5bda38  chore(deps): bump actions/setup-node from 2.5.1 to 3 (#2350)
     add 94a8933  chore(deps): bump actions/checkout from 2 to 3 (#2356)
     add 16b0b48  chore(deps): bump actions/setup-python from 2.3.2 to 3

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   (3ea76c8)
            \
             N -- N -- N   refs/heads/dependabot/github_actions/actions/setup-python-3 (16b0b48)

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/auto-build-rpm.yml               |    2 +-
 .github/workflows/backend-cli-test.yml             |    2 +-
 .github/workflows/backend-e2e-test.yml             |    8 +-
 .github/workflows/backend-unit-test.yml            |    4 +-
 .github/workflows/codeql-analysis.yml              |    2 +-
 .github/workflows/deploy-with-docker.yml           |    2 +-
 .github/workflows/frontend-e2e-test.yml            |    6 +-
 .github/workflows/frontend-plugin-e2e-test.yml     |    6 +-
 .github/workflows/gitleaks.yml                     |    2 +-
 .github/workflows/go-lint.yml                      |    6 +-
 .github/workflows/license-checker.yml              |    2 +-
 .github/workflows/lint.yml                         |   10 +-
 .github/workflows/make-build.yaml                  |    6 +-
 .github/workflows/release-test.yml                 |    4 +-
 .../test-frontend-multiple-node-build.yml          |    4 +-
 CHANGELOG.md                                       |   30 +
 README.md                                          |    2 +-
 api/VERSION                                        |    2 +-
 api/conf/conf.yaml                                 |    8 +
 api/conf/schema.json                               | 1098 ++++++++++++++++++--
 api/go.mod                                         |    1 -
 api/go.sum                                         |    3 -
 api/internal/conf/conf.go                          |   35 +
 api/internal/core/entity/entity.go                 |    9 +
 api/internal/core/store/storehub.go                |   13 +
 api/internal/filter/cors.go                        |   33 +-
 api/internal/handler/data_loader/loader/loader.go  |   44 +
 api/internal/handler/data_loader/route_export.go   |    4 +
 api/internal/handler/data_loader/route_import.go   |   36 +-
 .../handler/system_config/system_config.go         |  132 +++
 .../handler/system_config/system_config_test.go    |  258 +++++
 api/internal/log/zap.go                            |    4 +-
 api/internal/route.go                              |    4 +-
 api/internal/utils/utils.go                        |   16 +
 api/test/e2e/route_import_test.go                  |  134 +++
 api/test/e2enew/go.mod                             |   32 -
 api/test/e2enew/go.sum                             |    2 -
 api/test/e2enew/route/route_export_test.go         |   16 +
 api/test/e2enew/schema/schema_test.go              |   11 +-
 .../system_config_suite_test.go}                   |   11 +-
 .../system_config_test.go}                         |  146 ++-
 api/test/shell/cli_test.sh                         |   29 +
 docs/en/latest/config.json                         |    2 +-
 docs/en/latest/develop.md                          |    2 +-
 docs/en/latest/install.md                          |    2 +-
 web/config/routes.ts                               |    4 +
 .../consumer/create_and_delete_consumer.spec.js    |    1 +
 .../proto/create_and_edit_and_delete_proto.spce.js |   92 ++
 ...route-with-advanced-matching-conditions.spec.js |   12 +
 .../integration/route/import_export_route.spec.js  |   11 +-
 web/package.json                                   |    6 +-
 web/src/components/Plugin/data.tsx                 |   27 +
 web/src/helpers.tsx                                |    7 +-
 .../User/typing.d.ts => hooks/usePagination.ts}    |   34 +-
 web/src/locales/en-US/component.ts                 |    3 +
 web/src/locales/en-US/menu.ts                      |    1 +
 web/src/locales/zh-CN/component.ts                 |    5 +-
 web/src/locales/zh-CN/menu.ts                      |    1 +
 web/src/pages/Consumer/Create.tsx                  |    8 +-
 web/src/pages/Consumer/List.tsx                    |   25 +-
 web/src/pages/Consumer/components/Step1.tsx        |    1 +
 web/src/pages/Plugin/List.tsx                      |   13 +-
 web/src/pages/PluginTemplate/List.tsx              |   13 +-
 web/src/pages/Proto/List.tsx                       |  157 +++
 .../pages/Proto/components/ProtoDrawer/index.less  |   20 +-
 .../pages/Proto/components/ProtoDrawer/index.tsx   |  149 +++
 web/src/pages/Proto/locales/en-US.ts               |   34 +
 web/src/pages/Proto/locales/zh-CN.ts               |   34 +
 web/src/pages/{SSL => Proto}/service.ts            |   27 +-
 web/src/pages/{Service => Proto}/typing.d.ts       |   39 +-
 web/src/pages/Route/List.tsx                       |   18 +-
 .../Route/components/Step1/MatchingRulesView.tsx   |   27 +-
 web/src/pages/Route/transform.ts                   |   22 +-
 web/src/pages/Route/typing.d.ts                    |   11 +-
 web/src/pages/SSL/List.tsx                         |   16 +-
 web/src/pages/Service/List.tsx                     |   15 +-
 web/src/pages/Upstream/List.tsx                    |   18 +-
 web/src/pages/Upstream/locales/en-US.ts            |    2 +-
 web/yarn.lock                                      |   29 +-
 79 files changed, 2602 insertions(+), 465 deletions(-)
 create mode 100644 api/internal/handler/data_loader/loader/loader.go
 create mode 100644 api/internal/handler/system_config/system_config.go
 create mode 100644 api/internal/handler/system_config/system_config_test.go
 copy api/test/e2enew/{schema/schema_suite_test.go => system_config/system_config_suite_test.go} (83%)
 copy api/test/e2enew/{consumer/consumer_test.go => system_config/system_config_test.go} (52%)
 create mode 100644 web/cypress/integration/proto/create_and_edit_and_delete_proto.spce.js
 copy web/src/{pages/User/typing.d.ts => hooks/usePagination.ts} (54%)
 create mode 100755 web/src/pages/Proto/List.tsx
 copy api/test/e2enew/auth/auth_suite_test.go => web/src/pages/Proto/components/ProtoDrawer/index.less (77%)
 create mode 100644 web/src/pages/Proto/components/ProtoDrawer/index.tsx
 create mode 100644 web/src/pages/Proto/locales/en-US.ts
 create mode 100644 web/src/pages/Proto/locales/zh-CN.ts
 copy web/src/pages/{SSL => Proto}/service.ts (69%)
 copy web/src/pages/{Service => Proto}/typing.d.ts (64%)