You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by sh...@apache.org on 2020/08/05 10:06:40 UTC

[apisix] branch v1.5 updated (261960b -> f250f43)

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

shuaijinchao pushed a change to branch v1.5
in repository https://gitbox.apache.org/repos/asf/apisix.git.


    from 261960b  release: remove trailing whitespace for CHANGELOG.
     add e1c6d37  doc: update main picture of APISIX. (#1964)
     add 90867ed  doc: unified document file name format. (#1969)
     add 4cbb324  bugfix(CLI): fix wrong info `Warning! Running apisix under /root` when `make init` at non-root path (#1976)
     add 2073087  perf: used empty table if the user is not enabled any plugin. (#1967)
     add d32b5cf  perf: no longer generate unnecessary nginx conf for better performance. (#1968)
     add bb06278  update lua-tinyyaml to 1.0 . (#1981)
     add 6adbf02  core: support get_scheme/host/port/http_version in core.request  (#1978)
     add c67e998  bugfix: fail to handshake if there is no certificate matched by host. (#1980)
     add 77dfeca  revert: enable proxy-cache and proxy-mirror plugins by default. (#1992)
     add 020090c  doc: add Chinese doc of uri-blocker plugin (#1985)
     add 65df727  feat: script distribute and run (#1982)
     add f250f43  Merge branch 'master' into v1.5

No new revisions were added by this update.

Summary of changes:
 README_CN.md                                       |   2 +-
 apisix/admin/routes.lua                            |  12 ++
 apisix/admin/services.lua                          |  13 ++
 apisix/core.lua                                    |   1 +
 apisix/core/request.lua                            |  28 ++++
 apisix/http/router/radixtree_sni.lua               |   2 +-
 apisix/init.lua                                    |  40 ++++--
 apisix/plugin.lua                                  |   4 +-
 apisix/schema_def.lua                              |  11 ++
 apisix/script.lua                                  |  59 ++++++++
 benchmark/fake-apisix/conf/nginx.conf              |  29 +++-
 benchmark/run.sh                                   |   6 +-
 benchmark/server/conf/nginx.conf                   |   2 +-
 bin/apisix                                         |  23 ++-
 conf/config.yaml                                   |   4 +-
 doc/admin-api.md                                   |   1 +
 doc/architecture-design.md                         |  20 +++
 doc/images/apisix.png                              | Bin 287377 -> 124036 bytes
 doc/plugins/authz-keycloak.md                      |   2 +-
 doc/plugins/uri-blocker.md                         |   2 +-
 doc/zh-cn/README.md                                |   2 +-
 doc/zh-cn/admin-api.md                             |  11 +-
 doc/zh-cn/architecture-design.md                   |  22 +++
 .../{authz-keycloak-cn.md => authz-keycloak.md}    |   0
 doc/{ => zh-cn}/plugins/uri-blocker.md             |  38 +++--
 rockspec/apisix-master-0.rockspec                  |   2 +-
 t/admin/routes.t                                   |  43 +++++-
 t/admin/upstream.t                                 |   4 +-
 t/core/request.t                                   | 148 +++++++++++++++++++
 t/debug/debug-mode.t                               |   1 -
 t/grpc-proxy-test.sh                               |  17 ++-
 t/plugin/request-validation.t                      |   1 -
 t/router/radixtree-sni.t                           |  11 +-
 t/script/script_distribute.t                       | 158 +++++++++++++++++++++
 .../roundrobin.lua => t/script/script_test.lua     |  27 ++--
 35 files changed, 666 insertions(+), 80 deletions(-)
 create mode 100644 apisix/script.lua
 rename doc/zh-cn/plugins/{authz-keycloak-cn.md => authz-keycloak.md} (100%)
 copy doc/{ => zh-cn}/plugins/uri-blocker.md (61%)
 create mode 100644 t/script/script_distribute.t
 copy apisix/balancer/roundrobin.lua => t/script/script_test.lua (71%)