Skip to content

Commit 69df734

Browse files
authored
feat: release APISIX 3.2.0 (#8988)
1 parent 4eafebc commit 69df734

9 files changed

Lines changed: 198 additions & 5 deletions

File tree

.asf.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ github:
5353
dismiss_stale_reviews: true
5454
require_code_owner_reviews: true
5555
required_approving_review_count: 2
56+
release/3.2:
57+
required_pull_request_reviews:
58+
require_code_owner_reviews: true
59+
required_approving_review_count: 2
5660
release/3.1:
5761
required_pull_request_reviews:
5862
require_code_owner_reviews: true

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ title: Changelog
2323

2424
## Table of Contents
2525

26+
- [3.2.0](#320)
2627
- [3.1.0](#310)
2728
- [3.0.0](#300)
2829
- [3.0.0-beta](#300-beta)
@@ -66,6 +67,48 @@ title: Changelog
6667
- [0.7.0](#070)
6768
- [0.6.0](#060)
6869

70+
## 3.2.0
71+
72+
### Change
73+
74+
- Deprecated separate Vault configuration in jwt-auth. Users can use secret to achieve the same function: [#8660](https://github.com/apache/apisix/pull/8660)
75+
76+
### Core
77+
78+
- :sunrise: Support Vault token to configure secret through environment variables: [#8866](https://github.com/apache/apisix/pull/8866)
79+
- :sunrise: Supports service discovery on stream subsystem:
80+
- [#8583](https://github.com/apache/apisix/pull/8583)
81+
- [#8593](https://github.com/apache/apisix/pull/8593)
82+
- [#8584](https://github.com/apache/apisix/pull/8584)
83+
- [#8640](https://github.com/apache/apisix/pull/8640)
84+
- [#8633](https://github.com/apache/apisix/pull/8633)
85+
- [#8696](https://github.com/apache/apisix/pull/8696)
86+
- [#8826](https://github.com/apache/apisix/pull/8826)
87+
88+
### Plugins
89+
90+
- :sunrise: Add RESTful to graphQL conversion plugin: [#8959](https://github.com/apache/apisix/pull/8959)
91+
- :sunrise: Supports setting the log format on each log plugin:
92+
- [#8806](https://github.com/apache/apisix/pull/8806)
93+
- [#8643](https://github.com/apache/apisix/pull/8643)
94+
- :sunrise: Add request body/response body conversion plugin: [#8766](https://github.com/apache/apisix/pull/8766)
95+
- :sunrise: Support sending error logs to Kafka: [#8693](https://github.com/apache/apisix/pull/8693)
96+
- :sunrise: limit-count plugin supports X-RateLimit-Reset: [#8578](https://github.com/apache/apisix/pull/8578)
97+
- :sunrise: limit-count plugin supports setting TLS to access Redis cluster: [#8558](https://github.com/apache/apisix/pull/8558)
98+
- :sunrise: consumer-restriction plugin supports permission control via consumer_group_id: [#8567](https://github.com/apache/apisix/pull/8567)
99+
100+
### Bugfixes
101+
102+
- Fix mTLS protection when the host and SNI mismatch: [#8967](https://github.com/apache/apisix/pull/8967)
103+
- The proxy-rewrite plugin should escape URI parameter parts if they do not come from user config: [#8888](https://github.com/apache/apisix/pull/8888)
104+
- Admin API PATCH operation should return 200 status code after success: [#8855](https://github.com/apache/apisix/pull/8855)
105+
- Under certain conditions, the reload after etcd synchronization failure does not take effect: [#8736](https://github.com/apache/apisix/pull/8736)
106+
- Fix the problem that the nodes found by the Consul service discovery are incomplete: [#8651](https://github.com/apache/apisix/pull/8651)
107+
- Fix grpc-transcode plugin's conversion of Map data: [#8731](https://github.com/apache/apisix/pull/8731)
108+
- External plugins should be able to set the content-type response header: [#8588](https://github.com/apache/apisix/pull/8588)
109+
- When hotloading plugins, redundant timers may be left behind if the request-id plugin initializes the snowflake generator incorrectly: [#8556](https://github.com/apache/apisix/pull/8556)
110+
- Close previous proto synchronizer for grpc-transcode when hotloading plugins: [#8557](https://github.com/apache/apisix/pull/8557)
111+
69112
## 3.1.0
70113

71114
### Core

apisix/core/version.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
-- @module core.version
2121

2222
return {
23-
VERSION = "3.1.0"
23+
VERSION = "3.2.0"
2424
}

docs/en/latest/building-apisix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ curl https://raw.githubusercontent.com/apache/apisix/master/utils/install-depend
5252
Then, create a directory and set the environment variable `APISIX_VERSION`:
5353

5454
```shell
55-
APISIX_VERSION='3.1.0'
55+
APISIX_VERSION='3.2.0'
5656
mkdir apisix-${APISIX_VERSION}
5757
```
5858

docs/en/latest/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.0",
2+
"version": "3.2.0",
33
"sidebar": [
44
{
55
"type": "doc",

docs/zh/latest/CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ title: CHANGELOG
2323

2424
## Table of Contents
2525

26+
- [3.2.0](#320)
2627
- [3.1.0](#310)
2728
- [3.0.0](#300)
2829
- [3.0.0-beta](#300-beta)
@@ -66,6 +67,48 @@ title: CHANGELOG
6667
- [0.7.0](#070)
6768
- [0.6.0](#060)
6869

70+
## 3.2.0
71+
72+
### Change
73+
74+
- 废弃了 jwt-auth 内单独的 Vault 配置。用户能用密钥来实现同样的功能:[#8660](https://github.com/apache/apisix/pull/8660)
75+
76+
### Core
77+
78+
- :sunrise: 支持通过环境变量来配置密钥的 Vault token:[#8866](https://github.com/apache/apisix/pull/8866)
79+
- :sunrise: 支持四层上的服务发现:
80+
- [#8583](https://github.com/apache/apisix/pull/8583)
81+
- [#8593](https://github.com/apache/apisix/pull/8593)
82+
- [#8584](https://github.com/apache/apisix/pull/8584)
83+
- [#8640](https://github.com/apache/apisix/pull/8640)
84+
- [#8633](https://github.com/apache/apisix/pull/8633)
85+
- [#8696](https://github.com/apache/apisix/pull/8696)
86+
- [#8826](https://github.com/apache/apisix/pull/8826)
87+
88+
### Plugin
89+
90+
- :sunrise: 新增 RESTful 请求转 graphQL 的插件:[#8959](https://github.com/apache/apisix/pull/8959)
91+
- :sunrise: 支持在每个日志插件上设置日志格式:
92+
- [#8806](https://github.com/apache/apisix/pull/8806)
93+
- [#8643](https://github.com/apache/apisix/pull/8643)
94+
- :sunrise: 新增请求体/响应体转换插件:[#8766](https://github.com/apache/apisix/pull/8766)
95+
- :sunrise: 支持发送错误日志到 Kafka:[#8693](https://github.com/apache/apisix/pull/8693)
96+
- :sunrise: limit-count 插件支持 X-RateLimit-Reset:[#8578](https://github.com/apache/apisix/pull/8578)
97+
- :sunrise: limit-count 插件支持设置 TLS 来访问 Redis 集群:[#8558](https://github.com/apache/apisix/pull/8558)
98+
- :sunrise: consumer-restriction 插件支持通过 consumer_group_id 来做权限控制:[#8567](https://github.com/apache/apisix/pull/8567)
99+
100+
### Bugfix
101+
102+
- 修复 Host 和 SNI 不匹配时,mTLS 失效的问题:[#8967](https://github.com/apache/apisix/pull/8967)
103+
- 如果 URI 参数部分不来自于用户配置,proxy-rewrite 插件应当对其转义:[#8888](https://github.com/apache/apisix/pull/8888)
104+
- Admin API PATCH 操作成功后应返回 200 状态码:[#8855](https://github.com/apache/apisix/pull/8855)
105+
- 修复特定条件下,etcd 同步失败之后的 reload 不生效:[#8736](https://github.com/apache/apisix/pull/8736)
106+
- 修复 Consul 服务发现得到的节点不全的问题:[#8651](https://github.com/apache/apisix/pull/8651)
107+
- 修复 grpc-transcode 插件对 Map 数据的转换问题:[#8731](https://github.com/apache/apisix/pull/8731)
108+
- 外部插件应当可以设置 content-type 响应头:[#8588](https://github.com/apache/apisix/pull/8588)
109+
- 插件热加载时,如果 request-id 插件中初始化 snowflake 生成器出错,可能遗留多余的计时器:[#8556](https://github.com/apache/apisix/pull/8556)
110+
- 插件热加载时,关闭 grpc-transcode 的 proto 同步器:[#8557](https://github.com/apache/apisix/pull/8557)
111+
69112
## 3.1.0
70113

71114
### Core

docs/zh/latest/building-apisix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ curl https://raw.githubusercontent.com/apache/apisix/master/utils/install-depend
5353
然后,创建一个目录并设置环境变量 `APISIX_VERSION`
5454

5555
```shell
56-
APISIX_VERSION='3.1.0'
56+
APISIX_VERSION='3.2.0'
5757
mkdir apisix-${APISIX_VERSION}
5858
```
5959

docs/zh/latest/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.0",
2+
"version": "3.2.0",
33
"sidebar": [
44
{
55
"type": "doc",

rockspec/apisix-3.2.0-0.rockspec

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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 = "3.2.0-0"
20+
supported_platforms = {"linux", "macosx"}
21+
22+
source = {
23+
url = "git://github.com/apache/apisix",
24+
branch = "3.2.0",
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+
"api7-lua-resty-dns-client = 7.0.1",
36+
"lua-resty-template = 2.0",
37+
"lua-resty-etcd = 1.10.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.2",
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 = 3.10",
47+
"opentracing-openresty = 0.1",
48+
"lua-resty-radixtree = 2.8.2",
49+
"lua-protobuf = 0.4.1",
50+
"lua-resty-openidc = 1.7.5",
51+
"luafilesystem = 1.7.0-2",
52+
"api7-lua-tinyyaml = 0.4.2",
53+
"nginx-lua-prometheus = 0.20220527",
54+
"jsonschema = 0.9.8",
55+
"lua-resty-ipmatcher = 0.6.1",
56+
"lua-resty-kafka = 0.20-0",
57+
"lua-resty-logger-socket = 2.0.1-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.2",
64+
"graphql = 0.0.2",
65+
"argparse = 0.7.1-1",
66+
"luasocket = 3.1.0-1",
67+
"luasec = 0.9-1",
68+
"lua-resty-consul = 0.3-2",
69+
"penlight = 1.9.2-1",
70+
"ext-plugin-proto = 0.6.0",
71+
"casbin = 1.41.5",
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.2-3",
77+
"net-url = 0.9-1",
78+
"xml2lua = 1.5-2",
79+
"nanoid = 0.1-1",
80+
"lua-resty-mediador = 0.1.2-1",
81+
"lua-resty-ldap = 0.1.0-0"
82+
}
83+
84+
build = {
85+
type = "make",
86+
build_variables = {
87+
CFLAGS="$(CFLAGS)",
88+
LIBFLAG="$(LIBFLAG)",
89+
LUA_LIBDIR="$(LUA_LIBDIR)",
90+
LUA_BINDIR="$(LUA_BINDIR)",
91+
LUA_INCDIR="$(LUA_INCDIR)",
92+
LUA="$(LUA)",
93+
OPENSSL_INCDIR="$(OPENSSL_INCDIR)",
94+
OPENSSL_LIBDIR="$(OPENSSL_LIBDIR)",
95+
},
96+
install_variables = {
97+
ENV_INST_PREFIX="$(PREFIX)",
98+
ENV_INST_BINDIR="$(BINDIR)",
99+
ENV_INST_LIBDIR="$(LIBDIR)",
100+
ENV_INST_LUADIR="$(LUADIR)",
101+
ENV_INST_CONFDIR="$(CONFDIR)",
102+
},
103+
}

0 commit comments

Comments
 (0)