diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ba90f2268c..fadcf04175b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,24 @@ # Table of Contents +- [0.1.2](#012---20201105) +- [0.1.1](#011---20200526) - [0.1.0](#010---20200521) +## [0.1.2] - 2020/11/05 + +- Allows `include` directives in protoc files by adding the +main protoc file's directory as base for non-absolute paths +- Clear up output buffer when getting partial response (#12) + +## [0.1.1] - 2020/05/26 + +- Set priority to 998 to avoid clash with other plugins. +- Pin lua-protobuf to 0.3 + ## [0.1.0] - 2020/05/21 - Initial release of gRPC gateway plugin for Kong. +[0.1.2]: https://github.com/Kong/kong-plugin-grpc-gateway/compare/0.1.1...0.1.2 +[0.1.1]: https://github.com/Kong/kong-plugin-grpc-gateway/compare/0.1.0...0.1.1 [0.1.0] diff --git a/kong-plugin-grpc-gateway-0.1.1-2.rockspec b/kong-plugin-grpc-gateway-0.1.2-1.rockspec similarity index 95% rename from kong-plugin-grpc-gateway-0.1.1-2.rockspec rename to kong-plugin-grpc-gateway-0.1.2-1.rockspec index 6faabb4b73e..203890c7e8b 100644 --- a/kong-plugin-grpc-gateway-0.1.1-2.rockspec +++ b/kong-plugin-grpc-gateway-0.1.2-1.rockspec @@ -1,12 +1,12 @@ package = "kong-plugin-grpc-gateway" -version = "0.1.1-2" +version = "0.1.2-1" supported_platforms = {"linux", "macosx"} source = { url = "git+https://git@github.com/Kong/kong-plugin-grpc-gateway.git", - tag = "0.1.1", + tag = "0.1.2", } description = { diff --git a/kong/plugins/grpc-gateway/handler.lua b/kong/plugins/grpc-gateway/handler.lua index f4ed155ec5a..a1a54e70bf9 100644 --- a/kong/plugins/grpc-gateway/handler.lua +++ b/kong/plugins/grpc-gateway/handler.lua @@ -20,7 +20,7 @@ local kong_service_request_set_raw_body = kong.service.request.set_raw_body local grpc_gateway = { PRIORITY = 998, - VERSION = '0.1.1', + VERSION = '0.1.2', } --require "lua_pack"