Skip to content

Commit

Permalink
release(0.9.7)
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco committed Dec 22, 2016
1 parent 38481e3 commit a023f60
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
## [Unreleased][unreleased]

## [0.9.7] - 2016/12/21

### Fixed

- Fixed a performance issue in Cassandra by removing an old workaround that was
forcing Cassandra to use LuaSocket instead of cosockets.
[#1916](https://github.com/Mashape/kong/pull/1916)
- Fixed an issue that was causing a recursive attempt to stop Kong's services
when an error was occurring.
[#1877](https://github.com/Mashape/kong/pull/1877)
- Custom plugins are now properly loaded again.
[#1910](https://github.com/Mashape/kong/pull/1910)
- Plugins:
- Galileo: properly encode empty arrays.
[#1909](https://github.com/Mashape/kong/pull/1909)
- OAuth 2: implements a missing Postgres migration for `redirect_uri` in
every OAuth 2 credential. [#1911](https://github.com/Mashape/kong/pull/1911)
- OAuth 2: safely parse the request body even when no data has been sent.
[#1915](https://github.com/Mashape/kong/pull/1915)

## [0.9.6] - 2016/11/29

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

[unreleased]: https://github.com/mashape/kong/compare/0.9.6...next
[unreleased]: https://github.com/mashape/kong/compare/0.9.7...next
[0.9.7]: https://github.com/mashape/kong/compare/0.9.6...0.9.7
[0.9.6]: https://github.com/mashape/kong/compare/0.9.5...0.9.6
[0.9.5]: https://github.com/mashape/kong/compare/0.9.4...0.9.5
[0.9.4]: https://github.com/mashape/kong/compare/0.9.3...0.9.4
Expand Down
4 changes: 2 additions & 2 deletions kong-0.9.6-0.rockspec → kong-0.9.7-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong"
version = "0.9.6-0"
version = "0.9.7-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Mashape/kong",
tag = "0.9.6"
tag = "0.9.7"
}
description = {
summary = "Kong is a scalable and customizable API Management Layer built on top of Nginx.",
Expand Down
2 changes: 1 addition & 1 deletion kong/meta.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local version = setmetatable({
major = 0,
minor = 9,
patch = 6,
patch = 7,
pre_release = nil
}, {
__tostring = function(t)
Expand Down

0 comments on commit a023f60

Please sign in to comment.