You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ch...@apache.org on 2020/09/14 09:19:45 UTC

[apisix] branch kv/k8s-config updated (b9b1e2d -> d2a30b5)

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

chenjunxu pushed a change to branch kv/k8s-config
in repository https://gitbox.apache.org/repos/asf/apisix.git.


    from b9b1e2d  docs: Simplify the configuration and description of configmap
     add 47d39e7  bugfix: serverless plugin not work in header_filter phase (#2148)
     add 1556cd0  improve: cache parsed certs and pkeys to LRU cache (#2163)
     add 37817e4  chore: add string utility for simplicity and correctness (#2181)
     add 087f87a  bugfix: grpc-transcode plugin converts http/json parameters abnormally (#2139)
     add 98da870  doc: fixed typo in `health-check.md` (#2200)
     add 4b756ec  doc: fix formatting (#2210)
     add d2a30b5  Merge branch 'master' into kv/k8s-config

No new revisions were added by this update.

Summary of changes:
 .travis/linux_openresty_runner.sh      |   2 +-
 .travis/linux_tengine_runner.sh        |   2 +-
 .travis/osx_openresty_runner.sh        |   2 +-
 apisix/admin/ssl.lua                   |   3 +-
 apisix/core.lua                        |   1 +
 apisix/core/string.lua                 |  68 ++++++++++++++++
 apisix/http/router/radixtree_sni.lua   |  62 ++++++++++----
 apisix/plugins/grpc-transcode/util.lua |  45 ++++++----
 apisix/plugins/serverless.lua          |   6 +-
 doc/architecture-design.md             |   3 +-
 doc/health-check.md                    |   2 +-
 doc/zh-cn/architecture-design.md       |   4 +-
 t/admin/schema.t                       |   4 +-
 t/core/string.t                        | 145 +++++++++++++++++++++++++++++++++
 t/plugin/grpc-transcode.t              |  94 +++++++++++++++++++++
 t/router/radixtree-sni.t               |  93 +++++++++++++++++++++
 16 files changed, 488 insertions(+), 48 deletions(-)
 create mode 100644 apisix/core/string.lua
 create mode 100644 t/core/string.t