Skip to content

Commit

Permalink
Merge branch 'release/1.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Jan 10, 2020
2 parents 362922d + 2d71d63 commit 45ec6e2
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 3 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Table of Contents


- [1.4.3](#143)
- [1.4.2](#142)
- [1.4.1](#141)
- [1.4.0](#140)
Expand Down Expand Up @@ -35,6 +36,50 @@
- [0.9.9 and prior](#099---20170202)


## [1.4.3]

> Released 2020/01/09
:warning: This release includes a security fix to address potentially
sensitive information being written to the error log file. This affects
certain uses of the Admin API for DB-less mode, described below.

This is a patch release in the 1.4 series, and as such, strictly contains
bugfixes. There are no new features nor breaking changes.

### Fixes

##### Core

- Fix the detection of the need for balancer updates
when deleting targets
[#5352](https://github.com/kong/kong/issues/5352) --
Thanks [zeeshen](https://github.com/zeeshen) for the patch!
- Fix behavior of longest-path criteria when matching routes
[#5383](https://github.com/kong/kong/issues/5383)
- Fix incorrect use of cache when using header-based routing
[#5267](https://github.com/kong/kong/issues/5267) --
Thanks [marlonfan](https://github.com/marlonfan) for the patch!

##### Admin API

- Do not make a debugging dump of the declarative config input into
`error.log` when posting it with `/config` and using `_format_version`
as a top-level parameter (instead of embedded in the `config` parameter).
[#5411](https://github.com/kong/kong/issues/5411)
- Fix incorrect behavior of PUT for /certificates
[#5321](https://github.com/kong/kong/issues/5321)

##### Plugins

- acl: fixed an issue where getting ACLs by group failed when multiple
consumers share the same group
[#5322](https://github.com/kong/kong/issues/5322)


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


## [1.4.2]

> Released 2019/12/10
Expand Down Expand Up @@ -4292,6 +4337,7 @@ First version running with Cassandra.

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

[1.4.3]: https://github.com/Kong/kong/compare/1.4.2...1.4.3
[1.4.2]: https://github.com/Kong/kong/compare/1.4.1...1.4.2
[1.4.1]: https://github.com/Kong/kong/compare/1.4.0...1.4.1
[1.4.0]: https://github.com/Kong/kong/compare/1.3.0...1.4.0
Expand Down
4 changes: 2 additions & 2 deletions kong-1.4.2-0.rockspec → kong-1.4.3-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong"
version = "1.4.2-0"
version = "1.4.3-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Kong/kong",
tag = "1.4.2"
tag = "1.4.3"
}
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 = 1,
minor = 4,
patch = 2,
patch = 3,
-- suffix = "",
}, {
__tostring = function(t)
Expand Down

0 comments on commit 45ec6e2

Please sign in to comment.