Skip to content

Commit

Permalink
Merge branch 'release/2.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
gszr committed Dec 1, 2020
2 parents f59dffc + fe464d2 commit 5d3a69a
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Table of Contents


- [2.2.1](#221)
- [2.2.0](#220)
- [2.1.4](#214)
- [2.1.3](#213)
Expand Down Expand Up @@ -50,6 +51,42 @@
- [0.9.9 and prior](#099---20170202)


## [2.2.1]

> Released 2020/12/01
This is a patch release in the 2.2 series. Being a patch release, it
strictly contains bugfixes. The are no new features or breaking changes.

### Fixes

##### Distribution

##### Core

- Fix issue where Kong would fail to start a Go plugin instance with a
`starting instance: nil` error.
[#6507](https://github.com/Kong/kong/pull/6507)
- Fix issue where a route that supports both `http` and `https` (and has
a `hosts` and `snis` match criteria) would fail to proxy `http`
requests, as it does not contain an SNI.
[#6517](https://github.com/Kong/kong/pull/6517)
- Fix issue where a Go plugin would fail to read `kong.ctx.shared` values
set by Lua plugins.
[#6426](https://github.com/Kong/kong/issues/6426)
- Fix issue where gRPC requests would fail to set the `:authority`
pseudo-header in upstream requests.
[#6603](https://github.com/Kong/kong/pull/6603)

##### CLI

- Fix issue where `kong config db_import` and `kong config db_export`
commands would fail if Go plugins were enabled.
[#6596](https://github.com/Kong/kong/pull/6596)
Thanks [daniel-shuy](https://github.com/daniel-shuy) for the patch!

[Back to TOC](#table-of-contents)

## [2.2.0]

> Released 2020/10/23
Expand Down Expand Up @@ -5533,6 +5570,7 @@ First version running with Cassandra.

[Back to TOC](#table-of-contents)

[2.2.1]: https://github.com/Kong/kong/compare/2.2.0...2.2.1
[2.2.0]: https://github.com/Kong/kong/compare/2.1.3...2.2.0
[2.1.4]: https://github.com/Kong/kong/compare/2.1.3...2.1.4
[2.1.3]: https://github.com/Kong/kong/compare/2.1.2...2.1.3
Expand Down
4 changes: 2 additions & 2 deletions kong-2.2.0-0.rockspec → kong-2.2.1-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong"
version = "2.2.0-0"
version = "2.2.1-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Kong/kong",
tag = "2.2.0"
tag = "2.2.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 = 2,
minor = 2,
patch = 0,
patch = 1,
-- suffix = ""
}, {
-- our Makefile during certain releases adjusts this line. Any changes to
Expand Down

0 comments on commit 5d3a69a

Please sign in to comment.