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/18 06:52:05 UTC

[apisix-dashboard] branch juzhiyuan/fix-plugin updated (8b88472 -> 1b3f993)

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

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


    from 8b88472  style: format codes
     add 7c5fe95  chore(deps): bump wei/wget from v1 to v1.1.1 (#1046)
     add 502095f  refactor: 🧹 remove trailing whitespace (#1052)
     add 0f3523b  feat(CI): add a GitHub Action to lint the Markdown (#1053)
     add 303cc56  docs: update CHANGELOG for v2.2 (#1037)
     add d1107ec  feat(CI): add a GitHub Action to lint the YAML (#1060)
     add ea95706  chore(deps): bump actions/setup-go from v1 to v2.1.3 (#1030)
     add 91314d2  chore(deps): update actions/setup-node requirement to v2.1.4 (#1062)
     add 92fad09  fix: absolute Paths conf.WebDir (#1055)
     add 2b1a19e  feat: Refactor frontend e2e (#1056)
     add 1b3f993  Merge branch 'master' into juzhiyuan/fix-plugin

No new revisions were added by this update.

Summary of changes:
 .github/dependabot.yml                             |   8 +-
 .github/workflows/backend-e2e-test.yml             |   2 +-
 .github/workflows/backend-unit-test.yml            |   2 +-
 .github/workflows/codeql-analysis.yml              |  56 +--
 .github/workflows/frontend-e2e-test.yml            |  16 +-
 .github/workflows/gitleaks.yml                     |  22 +-
 .github/workflows/lint.yml                         |  23 +
 .github/workflows/markdown-link-checker.yml        |  12 +-
 .github/workflows/release-test.yml                 |   2 +-
 .../test-frontend-multiple-node-build.yml          |   2 +-
 api/entry.sh => .markdownlint.yml                  |  46 +-
 .yamllint                                          |   8 +
 CHANGELOG.md                                       |  32 +-
 CONTRIBUTING.md                                    |   2 +-
 Makefile                                           |   2 +-
 README.md                                          |   2 +-
 api/VERSION                                        |   2 +-
 api/conf/conf.go                                   |   2 +-
 api/conf/conf.yaml                                 |   6 +-
 api/internal/route.go                              |   6 +-
 api/test/docker-deploy/docker-compose.yaml         |   6 +-
 api/test/docker/apisix_config.yaml                 |  24 +-
 api/test/docker/docker-compose.yaml                |   8 +-
 api/test/docker/manager-api-conf.yaml              |   5 +-
 api/test/docker/upstream.conf                      |   2 +-
 api/test/e2e/id_compatible_test.go                 |   2 +-
 api/test/e2e/route_with_trace_plugin_test.go       |   2 +-
 api/test/e2e/upstream_test.go                      |   2 +-
 api/test/shell/cli_test.sh                         |  19 +
 api/test/shell/docker_deploy_test.sh               |   2 +-
 docs/deploy-with-docker.md                         |   2 +-
 docs/deploy.md                                     |   2 +-
 docs/develop.md                                    |   4 +-
 docs/front-end-e2e.md                              |  36 ++
 web/cypress.json                                   |   6 +
 .../route/create_and_delete_route.spec.js          |  89 ++++
 web/cypress/integration/user/login.spec.js         |  47 ++
 .../integration/user/logout.spec.js}               |  24 +-
 .../typingd.d.ts => cypress/plugins/index.js}      |  11 +-
 .../typing.d.ts => cypress/support/commands.js}    |  41 +-
 web/{.prettierrc.js => cypress/support/index.js}   |  11 +-
 web/package.json                                   |  12 +-
 web/src/e2e/Login.e2e.js                           |  72 ---
 web/src/e2e/Logout.e2e.js                          |  53 ---
 web/src/e2e/README.md                              |  41 --
 web/src/e2e/__mocks__/antd-pro-merge-less.js       |  24 -
 web/src/e2e/baseLayout.e2e.js                      |  80 ----
 web/src/e2e/service.js                             |  39 --
 .../Route/components/Step1/RequestConfigView.tsx   |   3 +
 web/tests/PuppeteerEnvironment.js                  |  57 ---
 web/tests/beforeTest.js                            |  55 ---
 web/tests/getBrowser.js                            |  61 ---
 web/tests/run-tests.js                             |  68 ---
 web/yarn.lock                                      | 492 +++++++++++++++++++--
 54 files changed, 907 insertions(+), 748 deletions(-)
 create mode 100644 .github/workflows/lint.yml
 copy api/entry.sh => .markdownlint.yml (59%)
 mode change 100755 => 100644
 create mode 100644 .yamllint
 create mode 100644 docs/front-end-e2e.md
 create mode 100644 web/cypress.json
 create mode 100644 web/cypress/integration/route/create_and_delete_route.spec.js
 create mode 100644 web/cypress/integration/user/login.spec.js
 copy web/{src/services/user.ts => cypress/integration/user/logout.spec.js} (69%)
 copy web/{src/pages/Setting/typingd.d.ts => cypress/plugins/index.js} (77%)
 copy web/{src/components/Plugin/typing.d.ts => cypress/support/commands.js} (58%)
 copy web/{.prettierrc.js => cypress/support/index.js} (81%)
 delete mode 100644 web/src/e2e/Login.e2e.js
 delete mode 100644 web/src/e2e/Logout.e2e.js
 delete mode 100644 web/src/e2e/README.md
 delete mode 100644 web/src/e2e/__mocks__/antd-pro-merge-less.js
 delete mode 100644 web/src/e2e/baseLayout.e2e.js
 delete mode 100644 web/src/e2e/service.js
 delete mode 100644 web/tests/PuppeteerEnvironment.js
 delete mode 100644 web/tests/beforeTest.js
 delete mode 100644 web/tests/getBrowser.js
 delete mode 100644 web/tests/run-tests.js