Skip to content
This repository has been archived by the owner on Aug 27, 2021. It is now read-only.

Commit

Permalink
chore(*) release 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske committed Sep 22, 2020
1 parent 76db992 commit 93b6605
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Kong AWS Lambda plugin changelog

## aws-lambda UNRELEASED
### Releasing new versions

- update changelog below
- update rockspec version
- update version in `handler.lua`
- commit as `chore(*) release x.y.z`
- tag commit as `x.y.z`
- push commit and tags
- upload to luarocks; `luarocks upload kong-plugin-aws-lambda-x.y.z-1.rockspec --api-key=abc...`
- test rockspec; `luarocks install kong-plugin-aws-lambda`


## aws-lambda 3.5.0 22-Sep-2020

- feat: adding support for 'isBase64Encoded' flag in Lambda function responses
- fix: respect `skip_large_bodies` config setting even when not using
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package = "kong-plugin-aws-lambda"
version = "3.4.0-1"
version = "3.5.0-1"

supported_platforms = {"linux", "macosx"}
source = {
url = "https://github.com/Kong/kong-plugin-aws-lambda/archive/3.4.0.tar.gz",
dir = "kong-plugin-aws-lambda-3.4.0"
url = "git://github.com/kong/kong-plugin-aws-lambda",
tag = "3.5.0",
}

description = {
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/aws-lambda/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,6 @@ function AWSLambdaHandler:access(conf)
end

AWSLambdaHandler.PRIORITY = 750
AWSLambdaHandler.VERSION = "3.4.0"
AWSLambdaHandler.VERSION = "3.5.0"

return AWSLambdaHandler

0 comments on commit 93b6605

Please sign in to comment.