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/11/06 04:01:57 UTC

[apisix-dashboard] branch v2.0 updated (edea177 -> 3a405f7)

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

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


    from edea177  fix:bug that dirty data exists after updating route and wrong mod for prod env (#704)
     add 3a405f7  chore: refactor error log for `manager api` (#689)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/cli_test.yml        |  31 +++++
 Dockerfile                            |   2 +
 api/Dockerfile                        |   2 +
 api/conf/conf.go                      |  28 +++++
 api/conf/conf.json                    |  31 -----
 api/conf/conf.yaml                    |   5 +
 api/conf/conf_preview.json            |  23 ----
 api/filter/logging.go                 |  72 +-----------
 api/filter/recover.go                 |  15 ++-
 api/go.mod                            |   3 +
 api/go.sum                            |   8 ++
 api/internal/core/store/query.go      |   4 +-
 api/internal/core/store/store.go      |  17 ++-
 api/internal/core/store/storehub.go   |   3 +
 api/internal/core/store/validate.go   |   5 +
 api/internal/handler/route/route.go   |   4 +-
 api/log/log.go                        | 207 +++++++++-------------------------
 api/log/zap.go                        |  89 +++++++++++++++
 api/logs/placeholder.txt              |   0
 api/main.go                           |  15 +--
 api/test/docker/manager-api-conf.yaml |   5 +
 api/test/shell/cli_test.sh            |  64 +++++++++++
 22 files changed, 334 insertions(+), 299 deletions(-)
 create mode 100644 .github/workflows/cli_test.yml
 delete mode 100644 api/conf/conf.json
 delete mode 100644 api/conf/conf_preview.json
 create mode 100644 api/log/zap.go
 create mode 100644 api/logs/placeholder.txt
 create mode 100755 api/test/shell/cli_test.sh