You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2020/12/11 02:37:31 UTC

[apisix-dashboard] branch v2.1.1 updated (4cf5526 -> 50daaba)

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

juzhiyuan pushed a change to branch v2.1.1
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git.


    from 4cf5526  fix(docs): use correct apisix's version
     add 8976cca  api(conf/conf.yaml): aligned comments (#969)
     add b8c5c0d  fix: increase the sleep time to fix e2e test unstable issue (#976)
     add 4d1301f  feat: support disable property for json schema according to APISIX's change (#904)
     add 0383021  feat: add etcd basic auth support (#951)
     add 26e40ca  test: e2e test balancer (roundrobin upstream) (#972)
     add ffcecfa  test: e2e test chash upstream with key (wrong key, vars) (#971)
     add 38a71a7   fix: fix router name conflict in route_service_upstream_test.go.
     add 053721c  fix(Plugin): use codemirror instead of form in plugin module (#898)
     add 1564d4f  feat(CI): supoort markdown links checker (#981)
     add 867ee79  fix: English spelling (#1002)
     add e611cd3  docs: optimize metrics document (#970)
     add e1a3132  feat: change proxy target to localhost when test (#1001)
     add 79c0c18  docs(contributing): added commit message guidelines (#1007)
     add ba303ea  chore: enrich error log (#977)
     add 0010423  fix: spelling (#1004)
     add 39239eb  feat: added priority (#1006)
     add 66d3b63  docs: update README's style (#1009)
     add ed9c523  docs: only keep English docs (#1011)
     add 64cd555  feat: add access log for Manager API (#994)
     add 50daaba  feat(sync): merge branch 'master' into v2.1.1

No new revisions were added by this update.

Summary of changes:
 .actions/ASF-Release.cfg                           |   1 +
 .github/workflows/frontend-e2e-test.yml            |  23 +-
 .github/workflows/markdown-link-checker.yml        |  14 ++
 CHANGELOG.md                                       |   2 +-
 CHANGELOG.zh-CN.md                                 | 110 ---------
 CONTRIBUTING.md                                    | 136 ++++++++++-
 README.md                                          |  14 +-
 README.zh-CN.md                                    |  86 -------
 api/conf/conf.go                                   |  43 +++-
 api/conf/conf.yaml                                 |  31 ++-
 api/conf/schema.json                               |  12 +-
 api/filter/authentication.go                       |   6 +
 api/filter/logging.go                              |  51 +++-
 api/filter/{request_id.go => logging_test.go}      |  41 ++--
 api/go.sum                                         |   1 +
 api/internal/core/entity/format.go                 |   2 +-
 api/internal/core/storage/etcd.go                  |  33 ++-
 api/internal/core/store/store.go                   |  22 +-
 api/internal/core/store/storehub.go                |   4 +-
 api/internal/core/store/validate.go                |  71 ++++--
 api/internal/core/store/validate_test.go           |  61 ++++-
 api/internal/handler/consumer/consumer_test.go     |   4 +-
 api/internal/handler/route/route_test.go           |   5 +-
 api/internal/handler/service/service_test.go       |   3 +-
 api/internal/handler/ssl/ssl_test.go               |   3 +-
 api/internal/handler/upstream/upstream_test.go     |   3 +-
 api/internal/route.go                              |   4 +-
 api/log/log.go                                     |   7 +
 api/log/zap.go                                     |  35 ++-
 api/main.go                                        |  18 +-
 api/test/e2e/balancer_test.go                      | 266 +++++++++++++++++++++
 api/test/e2e/base.go                               |   2 +-
 api/test/e2e/route_service_upstream_test.go        |  20 +-
 api/test/e2e/route_with_limit_plugin_test.go       | 153 +++++++++++-
 api/test/e2e/route_with_priority_test.go           |   2 +-
 api/test/e2e/upstream_chash_hash_on_test.go        | 131 +++++++++-
 api/test/shell/cli_test.sh                         |  87 ++++++-
 docs/FAQ.zh-CN.md                                  |  56 -----
 docs/USER_GUIDE.md                                 |   2 +
 docs/USER_GUIDE.zh-CN.md                           |  50 ----
 docs/deploy-with-docker.zh-CN.md                   |  84 -------
 docs/deploy.zh-CN.md                               |  86 -------
 docs/develop.zh-CN.md                              |  76 ------
 web/config/config.ts                               |   2 +-
 web/config/proxy.ts                                |   9 +-
 web/package.json                                   |   6 +-
 web/src/app.tsx                                    |   2 +
 .../IconFont/IconFont.tsx}                         |  19 +-
 .../Metrics => components/IconFont}/index.ts       |   2 +-
 web/src/components/Plugin/CodeMirrorDrawer.tsx     | 143 +++++++++++
 web/src/components/Plugin/PluginPage.tsx           | 183 ++++++++++++++
 web/src/components/Plugin/data.tsx                 | 166 +++++++++++++
 web/src/components/{Upstream => Plugin}/index.ts   |   4 +-
 web/src/components/Plugin/service.ts               |  98 ++++++++
 .../{pages/User => components/Plugin}/typing.d.ts  |  38 ++-
 web/src/e2e/Login.e2e.js                           |   7 +-
 web/src/e2e/Logout.e2e.js                          |   9 +-
 web/src/e2e/README.zh-CN.md                        |  41 ----
 web/src/e2e/service.js                             |   2 +-
 web/src/global.less                                |  12 +
 web/src/global.tsx                                 |   2 +-
 web/src/helpers.tsx                                |  20 +-
 web/src/libs/iconfont.js                           |  85 +++++++
 web/src/locales/en-US/component.ts                 |   4 +-
 web/src/locales/en-US/globalHeader.ts              |   2 +-
 web/src/pages/Consumer/Create.tsx                  |  21 +-
 web/src/pages/Consumer/components/Preview.tsx      |   4 +-
 web/src/pages/Route/Create.tsx                     |   5 +-
 .../Route/components/CreateStep4/CreateStep4.tsx   |   2 +-
 .../Route/components/Step1/MatchingRulesView.tsx   |   2 +-
 .../Route/components/Step1/RequestConfigView.tsx   |  16 +-
 web/src/pages/Route/components/Step3/index.tsx     |  68 +++---
 web/src/pages/Route/locales/en-US.ts               |   3 +-
 web/src/pages/Route/locales/zh-CN.ts               |   1 +
 web/src/pages/Route/transform.ts                   |   2 +
 web/src/pages/Route/typing.d.ts                    |   2 +-
 web/yarn.lock                                      |  90 +++++--
 77 files changed, 2080 insertions(+), 853 deletions(-)
 create mode 100644 .github/workflows/markdown-link-checker.yml
 delete mode 100644 CHANGELOG.zh-CN.md
 delete mode 100644 README.zh-CN.md
 copy api/filter/{request_id.go => logging_test.go} (54%)
 create mode 100644 api/test/e2e/balancer_test.go
 delete mode 100644 docs/FAQ.zh-CN.md
 delete mode 100644 docs/USER_GUIDE.zh-CN.md
 delete mode 100644 docs/deploy-with-docker.zh-CN.md
 delete mode 100644 docs/deploy.zh-CN.md
 delete mode 100644 docs/develop.zh-CN.md
 rename web/src/{iconfont.ts => components/IconFont/IconFont.tsx} (74%)
 copy web/src/{pages/Metrics => components/IconFont}/index.ts (95%)
 create mode 100644 web/src/components/Plugin/CodeMirrorDrawer.tsx
 create mode 100644 web/src/components/Plugin/PluginPage.tsx
 create mode 100644 web/src/components/Plugin/data.tsx
 copy web/src/components/{Upstream => Plugin}/index.ts (90%)
 create mode 100644 web/src/components/Plugin/service.ts
 copy web/src/{pages/User => components/Plugin}/typing.d.ts (62%)
 delete mode 100644 web/src/e2e/README.zh-CN.md
 create mode 100644 web/src/libs/iconfont.js