Skip to content

Commit

Permalink
Merge branch 'release/0.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Mar 27, 2017
2 parents 53386fa + f52133f commit 522dea9
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 7 deletions.
42 changes: 38 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
## [Unreleased][unreleased]

## [0.10.1] - 2017/03/27

### Changed

- :warning: Serf has been downgraded to version 0.7 in our distributions,
although versions up to 0.8.1 are still supported. This fixes a problem when
automatically detecting the first non-loopback private IP address, which was
defaulted to `127.0.0.1` in Kong 0.10.0. Greater versions of Serf can still
be used, but the IP address needs to be manually specified in the
`cluster_advertise` configuration property.
- Admin API:
- Disable support for TLS/1.0.
[#2212](https://github.com/Mashape/kong/pull/2212)
- Disable support for TLS/1.0.
[#2212](https://github.com/Mashape/kong/pull/2212)

### Added

- Admin API:
- Active targets can be pulled with `GET /upstreams/{name}/targets/active`.
[#2230](https://github.com/Mashape/kong/pull/2230)
- Provide a convenience endpoint to disable targets at:
`DELETE /upstreams/{name}/targets/{target}`.
Under the hood, this creates a new target with `weigth = 0` (the
correct way of disabling targets, which used to cause confusion).
[#2256](https://github.com/Mashape/kong/pull/2256)
- Plugins:
- cors: Support for configuring multiple Origin domains.
[#2203](https://github.com/Mashape/kong/pull/2203)
Expand All @@ -23,20 +39,37 @@
- Relax multipart MIME type parsing. A space is allowed in between values
of the Content-Type header.
[#2215](https://github.com/Mashape/kong/pull/2215)
- Admin API:
- Better handling of non-supported HTTP methods on endpoints of the Admin
API. In some cases this used to throw an internal error. Calling any
endpoint with a non-supported HTTP method now always returns `405 Method
Not Allowed` as expected.
[#2213](https://github.com/Mashape/kong/pull/2213)
- CLI:
- Better error handling when missing Serf executable.
[#2218](https://github.com/Mashape/kong/pull/2218)
- Fix a bug in the `kong migrations` command that would prevent it to run
correctly.
[#2238](https://github.com/Mashape/kong/pull/2238)
- Trim list values specified in the configuration file.
[#2206](https://github.com/Mashape/kong/pull/2206)
- Align the default configuration file's values to the actual, hard-coded
default values to avoid confusion.
[#2254](https://github.com/Mashape/kong/issues/2254)
- Plugins:
- hmac: Generate an HMAC secret value if none is provided.
[#2158](https://github.com/Mashape/kong/pull/2158)
- oauth2: Don't try to remove credential values from request bodies if the
MIME type is multipart, since such attemps would result in an error.
[#2176](https://github.com/Mashape/kong/pull/2176)
- ldap: This plugin should not be applied to a single Consumer, however, this
was not properly enforced. It is not impossible to apply this plugin to a
single Consumer (as per all authentication plugin).
[#2237](https://github.com/Mashape/kong/pull/2237)
- aws-lambda: Support for `us-west-2` region in schema.
[#2257](https://github.com/Mashape/kong/pull/2257)

## [0.10.0] - 2016/03/07
## [0.10.0] - 2017/03/07

Kong 0.10 is one of most significant releases to this day. It ships with
exciting new features that have been heavily requested for the last few months,
Expand Down Expand Up @@ -1019,7 +1052,8 @@ First version running with Cassandra.
- CLI `bin/kong` script.
- Database migrations (using `db.lua`).

[unreleased]: https://github.com/mashape/kong/compare/0.10.0...next
[unreleased]: https://github.com/mashape/kong/compare/0.10.1...next
[0.10.1]: https://github.com/mashape/kong/compare/0.10.0...0.10.1
[0.10.0]: https://github.com/mashape/kong/compare/0.9.9...0.10.0
[0.9.9]: https://github.com/mashape/kong/compare/0.9.8...0.9.9
[0.9.8]: https://github.com/mashape/kong/compare/0.9.7...0.9.8
Expand Down
4 changes: 2 additions & 2 deletions kong-0.10.0-0.rockspec → kong-0.10.1-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong"
version = "0.10.0-0"
version = "0.10.1-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Mashape/kong",
tag = "0.10.0"
tag = "0.10.1"
}
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 = 10,
patch = 0,
patch = 1,
--pre_release = ""
}, {
__tostring = function(t)
Expand Down

0 comments on commit 522dea9

Please sign in to comment.