Skip to content

Commit

Permalink
chore(grpc-gateway) release: 0.1.2 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion authored and gszr committed Jun 17, 2021
1 parent 5f936ba commit aa5f8ff
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
Original file line number Diff line number Diff line change
@@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/grpc-gateway/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit aa5f8ff

Please sign in to comment.