Skip to content

Commit 511dc4e

Browse files
authored
feat: release 2.13.3 (#7737)
1 parent 8c47964 commit 511dc4e

File tree

8 files changed

+137
-9
lines changed

8 files changed

+137
-9
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ title: Changelog
2323

2424
## Table of Contents
2525

26+
- [2.13.3](#2133)
2627
- [2.13.2](#2132)
2728
- [2.13.1](#2131)
2829
- [2.13.0](#2130)
@@ -56,6 +57,19 @@ title: Changelog
5657
- [0.7.0](#070)
5758
- [0.6.0](#060)
5859

60+
## 2.13.3
61+
62+
### Bugfix
63+
64+
- the phases after proxy didn't run when 500 error happens before proxy: [#7703](https://github.com/apache/apisix/pull/7703)
65+
- avoid error when multiple plugins associated with consumer and have rewrite phase: [#7531](https://github.com/apache/apisix/pull/7531)
66+
- upgrade lua-resty-etcd to 1.8.3 which fixes various issues: [#7565](https://github.com/apache/apisix/pull/7565)
67+
- clear remain state from the latest try before retrying in Kubernetes discovery: [#7506](https://github.com/apache/apisix/pull/7506)
68+
- don't send empty Authorization header by default in http-logger: [#7444](https://github.com/apache/apisix/pull/7444)
69+
- ensure both `group` and `disable` configurations can be used in limit-count: [#7384](https://github.com/apache/apisix/pull/7384)
70+
- adjust the execution priority of request-id so the tracing plugins can use the request id: [#7281](https://github.com/apache/apisix/pull/7281)
71+
- distinguish different upstreams in the LRU cache even they have the same memory addr: [#7213](https://github.com/apache/apisix/pull/7213)
72+
5973
## 2.13.2
6074

6175
### Bugfix

apisix/core/version.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
-- @module core.version
2121

2222
return {
23-
VERSION = "2.13.2"
23+
VERSION = "2.13.3"
2424
}

docs/en/latest/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.13.2",
2+
"version": "2.13.3",
33
"sidebar": [
44
{
55
"type": "category",

docs/en/latest/how-to-build.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ Follow the steps below to install Apache APISIX via the source release package.
9797
curl https://raw.githubusercontent.com/apache/apisix/master/utils/install-dependencies.sh -sL | bash -
9898
```
9999

100-
2. Create a directory named `apisix-2.13.2`.
100+
2. Create a directory named `apisix-2.13.3`.
101101

102102
```shell
103-
APISIX_VERSION='2.13.2'
103+
APISIX_VERSION='2.13.3'
104104
mkdir apisix-${APISIX_VERSION}
105105
```
106106

@@ -162,7 +162,7 @@ Follow the steps below to install Apache APISIX via the source release package.
162162

163163
#### LTS version installation via Source Release Package
164164

165-
The [current LTS version](https://apisix.apache.org/downloads/) of Apache APISIX is `2.13.2`.
165+
The [current LTS version](https://apisix.apache.org/downloads/) of Apache APISIX is `2.13.3`.
166166

167167
To install this version, set `APISIX_VERSION` in [Installation via Source Release Package](#installation-via-source-release-package) to this version and continue with the other steps.
168168

docs/zh/latest/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ title: CHANGELOG
2323

2424
## Table of Contents
2525

26+
- [2.13.3](#2133)
2627
- [2.13.2](#2132)
2728
- [2.13.1](#2131)
2829
- [2.13.0](#2130)
@@ -56,6 +57,19 @@ title: CHANGELOG
5657
- [0.7.0](#070)
5758
- [0.6.0](#060)
5859

60+
## 2.13.3
61+
62+
### Bugfix
63+
64+
- 当代理到上游之前发生 500 错误时,代理到上游之后运行的插件不应被跳过 [#7703](https://github.com/apache/apisix/pull/7703)
65+
- 当 consumer 上绑定了多个插件且该插件定义了 rewrite 方法时,避免抛出异常 [#7531](https://github.com/apache/apisix/pull/7531)
66+
- 升级 lua-resty-etcd 到 1.8.3。该版本修复了若干问题。 [#7565](https://github.com/apache/apisix/pull/7565)
67+
- Kubernetes 服务发现在重试时应当清除上一次尝试时遗留的状态 [#7506](https://github.com/apache/apisix/pull/7506)
68+
- 默认配置下,http-logger 不再发送空 Authorization 头 [#7444](https://github.com/apache/apisix/pull/7444)
69+
- 修复 limit-count 插件不能同时配置 group 和 disable 的问题 [#7384](https://github.com/apache/apisix/pull/7384)
70+
- 让 request-id 插件优先执行,这样 tracing 插件可以用到 request id [#7281](https://github.com/apache/apisix/pull/7281)
71+
- 避免因为内存地址相同,而在 LRU cache 中认为两个不同的 upstream 是一样的 [#7213](https://github.com/apache/apisix/pull/7213)
72+
5973
## 2.13.2
6074

6175
### Bugfix

docs/zh/latest/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.13.2",
2+
"version": "2.13.3",
33
"sidebar": [
44
{
55
"type": "category",

docs/zh/latest/how-to-build.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ sudo yum install ./apisix/*.rpm
9393
curl https://raw.githubusercontent.com/apache/apisix/master/utils/install-dependencies.sh -sL | bash -
9494
```
9595

96-
2. 创建一个名为 `apisix-2.13.2` 的目录。
96+
2. 创建一个名为 `apisix-2.13.3` 的目录。
9797

9898
```shell
99-
APISIX_VERSION='2.13.2'
99+
APISIX_VERSION='2.13.3'
100100
mkdir apisix-${APISIX_VERSION}
101101
```
102102

@@ -158,7 +158,7 @@ sudo yum install ./apisix/*.rpm
158158

159159
#### 通过源码包安装 LTS 版本
160160

161-
目前 Apache APISIX 的 LTS 版本为 `2.13.2`,将“[通过源码包安装](#通过源码包安装)”中的 `APISIX_VERSION` 设置成该版本号,其他步骤按顺序进行即可。
161+
目前 Apache APISIX 的 LTS 版本为 `2.13.3`,将“[通过源码包安装](#通过源码包安装)”中的 `APISIX_VERSION` 设置成该版本号,其他步骤按顺序进行即可。
162162

163163
## 步骤2:安装 etcd
164164

rockspec/apisix-2.13.3-0.rockspec

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
--
2+
-- Licensed to the Apache Software Foundation (ASF) under one or more
3+
-- contributor license agreements. See the NOTICE file distributed with
4+
-- this work for additional information regarding copyright ownership.
5+
-- The ASF licenses this file to You under the Apache License, Version 2.0
6+
-- (the "License"); you may not use this file except in compliance with
7+
-- the License. You may obtain a copy of the License at
8+
--
9+
-- http://www.apache.org/licenses/LICENSE-2.0
10+
--
11+
-- Unless required by applicable law or agreed to in writing, software
12+
-- distributed under the License is distributed on an "AS IS" BASIS,
13+
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
-- See the License for the specific language governing permissions and
15+
-- limitations under the License.
16+
--
17+
18+
package = "apisix"
19+
version = "2.13.3-0"
20+
supported_platforms = {"linux", "macosx"}
21+
22+
source = {
23+
url = "git://github.com/apache/apisix",
24+
branch = "2.13.3",
25+
}
26+
27+
description = {
28+
summary = "Apache APISIX is a cloud-native microservices API gateway, delivering the ultimate performance, security, open source and scalable platform for all your APIs and microservices.",
29+
homepage = "https://github.com/apache/apisix",
30+
license = "Apache License 2.0",
31+
}
32+
33+
dependencies = {
34+
"lua-resty-ctxdump = 0.1-0",
35+
"lua-resty-dns-client = 6.0.2",
36+
"lua-resty-template = 2.0",
37+
"lua-resty-etcd = 1.8.3",
38+
"api7-lua-resty-http = 0.2.0",
39+
"lua-resty-balancer = 0.04",
40+
"lua-resty-ngxvar = 0.5.2",
41+
"lua-resty-jit-uuid = 0.0.7",
42+
"lua-resty-healthcheck-api7 = 2.2.0",
43+
"api7-lua-resty-jwt = 0.2.4",
44+
"lua-resty-hmac-ffi = 0.05",
45+
"lua-resty-cookie = 0.1.0",
46+
"lua-resty-session = 2.24",
47+
"opentracing-openresty = 0.1",
48+
"lua-resty-radixtree = 2.8.1",
49+
"lua-protobuf = 0.3.4",
50+
"lua-resty-openidc = 1.7.2-1",
51+
"luafilesystem = 1.7.0-2",
52+
"api7-lua-tinyyaml = 0.4.2",
53+
"nginx-lua-prometheus = 0.20220127",
54+
"jsonschema = 0.9.8",
55+
"lua-resty-ipmatcher = 0.6.1",
56+
"lua-resty-kafka = 0.07",
57+
"lua-resty-logger-socket = 2.0-0",
58+
"skywalking-nginx-lua = 0.6.0",
59+
"base64 = 1.5-2",
60+
"binaryheap = 0.4",
61+
"api7-dkjson = 0.1.1",
62+
"resty-redis-cluster = 1.02-4",
63+
"lua-resty-expr = 1.3.1",
64+
"graphql = 0.0.2",
65+
"argparse = 0.7.1-1",
66+
"luasocket = 3.0rc1-2",
67+
"luasec = 0.9-1",
68+
"lua-resty-consul = 0.3-2",
69+
"penlight = 1.9.2-1",
70+
"ext-plugin-proto = 0.4.0",
71+
"casbin = 1.41.1",
72+
"api7-snowflake = 2.0-1",
73+
"inspect == 3.1.1",
74+
"lualdap = 1.2.6-1",
75+
"lua-resty-rocketmq = 0.3.0-0",
76+
"opentelemetry-lua = 0.1-3",
77+
"net-url = 0.9-1",
78+
"xml2lua = 1.5-2",
79+
}
80+
81+
build = {
82+
type = "make",
83+
build_variables = {
84+
CFLAGS="$(CFLAGS)",
85+
LIBFLAG="$(LIBFLAG)",
86+
LUA_LIBDIR="$(LUA_LIBDIR)",
87+
LUA_BINDIR="$(LUA_BINDIR)",
88+
LUA_INCDIR="$(LUA_INCDIR)",
89+
LUA="$(LUA)",
90+
OPENSSL_INCDIR="$(OPENSSL_INCDIR)",
91+
OPENSSL_LIBDIR="$(OPENSSL_LIBDIR)",
92+
},
93+
install_variables = {
94+
ENV_INST_PREFIX="$(PREFIX)",
95+
ENV_INST_BINDIR="$(BINDIR)",
96+
ENV_INST_LIBDIR="$(LIBDIR)",
97+
ENV_INST_LUADIR="$(LUADIR)",
98+
ENV_INST_CONFDIR="$(CONFDIR)",
99+
},
100+
}

0 commit comments

Comments
 (0)