Skip to content

Commit

Permalink
Release: 2.8.3 (#9665)
Browse files Browse the repository at this point in the history
* docs(changelog): add 2.8.3 changes

* release: 2.8.3

* chore(ci): build a test package on PR's to release branches

* Revert "chore(ci): build a test package on PR's to release branches"

This reverts commit 98eb6fb.

* docs(README.md): adjust the 2.8.3 readme
  • Loading branch information
hutchic authored Nov 2, 2022
1 parent ea77750 commit 8e12c0a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
19 changes: 15 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Table of Contents

- [2.8.3](#283)
- [2.8.2](#282)
- [2.8.1](#281)
- [2.8.0](#280)
Expand Down Expand Up @@ -64,14 +65,22 @@
- [0.10.0](#0100---20170307)
- [0.9.9 and prior](#099---20170202)

## Unreleased

## [2.8.3]

> Released 2022/11/02
### Fixes

#### Admin API
##### Plugins

- **HTTP Log**: fix internal error during validating the schema if http_endpoint contains
userinfo but headers is empty [#9574](https://github.com/Kong/kong/pull/9574)

##### CLI

- Increase the maximum request argument number from 100 to 1000, and return 400 error if request parameters reach the limitation to avoid being truncated.
[#9510](https://github.com/Kong/kong/pull/9510)
- Fixed a packaging problem affecting a subset of releases where the `kong version`
command was incorrect

## [2.8.2]

Expand Down Expand Up @@ -6878,6 +6887,8 @@ First version running with Cassandra.

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

[2.8.3]: https://github.com/Kong/kong/compare/2.8.2...2.8.3
[2.8.2]: https://github.com/Kong/kong/compare/2.8.1...2.8.2
[2.8.1]: https://github.com/Kong/kong/compare/2.8.0...2.8.1
[2.8.0]: https://github.com/Kong/kong/compare/2.7.0...2.8.0
[2.7.1]: https://github.com/Kong/kong/compare/2.7.0...2.7.1
Expand Down
4 changes: 2 additions & 2 deletions kong-2.8.2-0.rockspec → kong-2.8.3-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package = "kong"
version = "2.8.2-0"
version = "2.8.3-0"
rockspec_format = "3.0"
supported_platforms = {"linux", "macosx"}
source = {
url = "https://github.com/Kong/kong.git",
tag = "2.8.2"
tag = "2.8.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 = 2,
minor = 8,
patch = 2,
patch = 3,
--suffix = "rc.1"
}, {
-- our Makefile during certain releases adjusts this line. Any changes to
Expand Down

0 comments on commit 8e12c0a

Please sign in to comment.