Skip to content

Commit

Permalink
release: 0.5.4
Browse files Browse the repository at this point in the history
- Rockspec bump
- Version bump
- Changelog updates
- One simple fix in responses_spec.lua already in `next`.
  • Loading branch information
thibaultcha committed Dec 3, 2015
1 parent 83df337 commit d8fc06e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
## [Unreleased][unreleased]

## [0.5.4] - 2015/12/03

### Fixed

- Mashape Analytics plugin (aka Galileo):
- Improve stability under heavy load. [#757](https://github.com/Mashape/kong/issues/757)
- base64 encode ALF request/response bodies, enabling proper support for Galileo bodies inspection capabilities. [#747](https://github.com/Mashape/kong/pull/747)
- Do not include JSON bodies in ALF `postData.params` field. [#766](https://github.com/Mashape/kong/pull/766)

## [0.5.3] - 2015/11/16

### Fixed
Expand Down Expand Up @@ -358,8 +367,9 @@ First version running with Cassandra.
- CLI `bin/kong` script.
- Database migrations (using `db.lua`).

[unreleased]: https://github.com/mashape/kong/compare/0.5.3...next
[0.5.3]: https://github.com/mashape/kong/compare/0.5.3...0.5.3
[unreleased]: https://github.com/mashape/kong/compare/0.5.4...next
[0.5.4]: https://github.com/mashape/kong/compare/0.5.3...0.5.4
[0.5.3]: https://github.com/mashape/kong/compare/0.5.2...0.5.3
[0.5.2]: https://github.com/mashape/kong/compare/0.5.1...0.5.2
[0.5.1]: https://github.com/mashape/kong/compare/0.5.0...0.5.1
[0.5.0]: https://github.com/mashape/kong/compare/0.4.2...0.5.0
Expand Down
2 changes: 1 addition & 1 deletion kong-0.5.3-1.rockspec → kong-0.5.4-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package = "kong"
version = "0.5.3-1"
version = "0.5.4-1"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Mashape/kong",
Expand Down
2 changes: 1 addition & 1 deletion kong/constants.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local VERSION = "0.5.3"
local VERSION = "0.5.4"

return {
NAME = "kong",
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/tools/responses_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe("Responses", function()
ngx.header = {}
-- Revert mocked functions
for _, v in pairs(ngx) do
if type(v) == "table" and v.revert then
if type(v) == "table" and type(v.revert) == "function" then
v:revert()
end
end
Expand Down

0 comments on commit d8fc06e

Please sign in to comment.