Skip to content

Commit e01b7e4

Browse files
authored
feat: release APISIX 3.8.0 (#10778)
1 parent 1a34a29 commit e01b7e4

File tree

8 files changed

+95
-5
lines changed

8 files changed

+95
-5
lines changed

.asf.yaml

+4
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.8:
57+
required_pull_request_reviews:
58+
require_code_owner_reviews: true
59+
required_approving_review_count: 2
5660
release/3.7:
5761
required_pull_request_reviews:
5862
require_code_owner_reviews: true

CHANGELOG.md

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

2424
## Table of Contents
2525

26+
- [3.8.0](#380)
2627
- [3.7.0](#370)
2728
- [3.6.0](#360)
2829
- [3.5.0](#350)
@@ -74,6 +75,48 @@ title: Changelog
7475
- [0.7.0](#070)
7576
- [0.6.0](#060)
7677

78+
## 3.8.0
79+
80+
### Core
81+
82+
- :sunrise: Support the use of lua-resty-events module for better performance:
83+
- [#10550](https://github.com/apache/apisix/pull/10550)
84+
- [#10558](https://github.com/apache/apisix/pull/10558)
85+
- :sunrise: Upgrade OpenSSL 1.1.1 to OpenSSL 3: [#10724](https://github.com/apache/apisix/pull/10724)
86+
87+
### Plugins
88+
89+
- :sunrise: Add jwe-decrypt plugin: [#10252](https://github.com/apache/apisix/pull/10252)
90+
- :sunrise: Support brotli when use filters.regex option (response-rewrite): [#10733](https://github.com/apache/apisix/pull/10733)
91+
- :sunrise: Add multi-auth plugin: [#10482](https://github.com/apache/apisix/pull/10482)
92+
- :sunrise: Add `required scopes` configuration property to `openid-connect` plugin: [#10493](https://github.com/apache/apisix/pull/10493)
93+
- :sunrise: Support for the Timing-Allow-Origin header (cors): [#9365](https://github.com/apache/apisix/pull/9365)
94+
- :sunrise: Add brotli plugin: [#10515](https://github.com/apache/apisix/pull/10515)
95+
- :sunrise: Body-transformer plugin enhancement(#10472): [#10496](https://github.com/apache/apisix/pull/10496)
96+
- :sunrise: Set minLength of redis_cluster_nodes to 1 for limit-count plugin: [#10612](https://github.com/apache/apisix/pull/10612)
97+
- :sunrise: Allow to use environment variables for limit-count plugin settings: [#10607](https://github.com/apache/apisix/pull/10607)
98+
99+
### Bugfixes
100+
101+
- Fix: When the upstream nodes are of array type, the port should be an optional field: [#10477](https://github.com/apache/apisix/pull/10477)
102+
- Fix: Incorrect variable extraction in fault-injection plugin: [#10485](https://github.com/apache/apisix/pull/10485)
103+
- Fix: All consumers should share the same counter (limit-count): [#10541](https://github.com/apache/apisix/pull/10541)
104+
- Fix: Safely remove upstream when sending route to opa plugin: [#10552](https://github.com/apache/apisix/pull/10552)
105+
- Fix: Missing etcd init_dir and unable to list resource: [#10569](https://github.com/apache/apisix/pull/10569)
106+
- Fix: Forward-auth request body is too large: [#10589](https://github.com/apache/apisix/pull/10589)
107+
- Fix: Memory leak caused by timer that never quit: [#10614](https://github.com/apache/apisix/pull/10614)
108+
- Fix: Do not invoke add_header if value resolved as nil in proxy-rewrite plugin: [#10619](https://github.com/apache/apisix/pull/10619)
109+
- Fix: Frequent traversal of all keys in etcd leads to high CPU usage: [#10671](https://github.com/apache/apisix/pull/10671)
110+
- Fix: For prometheus upstream_status metrics, mostly_healthy is healthy: [#10639](https://github.com/apache/apisix/pull/10639)
111+
- Fix: Avoid getting a nil value in log phase in zipkin: [#10666](https://github.com/apache/apisix/pull/10666)
112+
- Fix: Enable openid-connect plugin without redirect_uri got 500 error: [#7690](https://github.com/apache/apisix/pull/7690)
113+
- Fix: Add redirect_after_logout_uri for ODIC that do not have an end_session_endpoint: [#10653](https://github.com/apache/apisix/pull/10653)
114+
- Fix: Response-rewrite filters.regex does not apply when content-encoding is gzip: [#10637](https://github.com/apache/apisix/pull/10637)
115+
- Fix: The leak of prometheus metrics: [#10655](https://github.com/apache/apisix/pull/10655)
116+
- Fix: Authz-keycloak add return detail err: [#10691](https://github.com/apache/apisix/pull/10691)
117+
- Fix: upstream nodes was not updated correctly by service discover: [#10722](https://github.com/apache/apisix/pull/10722)
118+
- Fix: apisix restart failed: [#10696](https://github.com/apache/apisix/pull/10696)
119+
77120
## 3.7.0
78121

79122
### Change

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 = "3.7.0"
23+
VERSION = "3.8.0"
2424
}

docs/en/latest/building-apisix.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To build and package APISIX for a specific platform, see [apisix-build-tools](ht
4848
First of all, we need to specify the version `APISIX_VERSION` to be installed:
4949

5050
```shell
51-
APISIX_VERSION='3.7.0'
51+
APISIX_VERSION='3.8.0'
5252
```
5353

5454
Then, you can run the following command to clone the APISIX source code from Github:

docs/en/latest/config.json

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

docs/zh/latest/CHANGELOG.md

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

2424
## Table of Contents
2525

26+
- [3.8.0](#380)
2627
- [3.7.0](#370)
2728
- [3.6.0](#360)
2829
- [3.5.0](#350)
@@ -74,6 +75,48 @@ title: CHANGELOG
7475
- [0.7.0](#070)
7576
- [0.6.0](#060)
7677

78+
## 3.8.0
79+
80+
### Core
81+
82+
- :sunrise: 支持使用 lua-resty-events 模块以提高性能:
83+
- [#10550](https://github.com/apache/apisix/pull/10550)
84+
- [#10558](https://github.com/apache/apisix/pull/10558)
85+
- :sunrise: 将 OpenSSL 1.1.1 升级到 OpenSSL 3:[#10724](https://github.com/apache/apisix/pull/10724)
86+
87+
### Plugins
88+
89+
- :sunrise: 添加 jwe-decryp 插件:[#10252](https://github.com/apache/apisix/pull/10252)
90+
- :sunrise: response-rewrite 插件使用 filters.regex 选项时支持 brotli:[#10733](https://github.com/apache/apisix/pull/10733)
91+
- :sunrise: 添加多重认证插件:[#10482](https://github.com/apache/apisix/pull/10482)
92+
- :sunrise:`openid-connect` 插件中添加 `required scopes` 配置属性:[#10493](https://github.com/apache/apisix/pull/10493)
93+
- :sunrise: cors 插件支持 Timing-Allow-Origin 头:[#9365](https://github.com/apache/apisix/pull/9365)
94+
- :sunrise: 添加 brotli 插件:[#10515](https://github.com/apache/apisix/pull/10515)
95+
- :sunrise: body-transformer 插件增强:[#10496](https://github.com/apache/apisix/pull/10496)
96+
- :sunrise: limit-count 插件设置 redis_cluster_nodes 的最小长度为 1:[#10612](https://github.com/apache/apisix/pull/10612)
97+
- :sunrise: 允许通过环境变量配置 limit-count 插件:[#10607](https://github.com/apache/apisix/pull/10607)
98+
99+
### Bugfixes
100+
101+
- 修复:upstream nodes 为数组类型时,port 应为可选字段:[#10477](https://github.com/apache/apisix/pull/10477)
102+
- 修复:fault-injection 插件中变量提取不正确:[#10485](https://github.com/apache/apisix/pull/10485)
103+
- 修复:所有消费者应共享同一计数器 (limit-count):[#10541](https://github.com/apache/apisix/pull/10541)
104+
- 修复:在向 opa 插件发送路由时安全地删除上游:[#10552](https://github.com/apache/apisix/pull/10552)
105+
- 修复:缺少 etcd init_dir 和无法列出资源:[#10569](https://github.com/apache/apisix/pull/10569)
106+
- 修复:Forward-auth 请求体过大:[#10589](https://github.com/apache/apisix/pull/10589)
107+
- 修复:永不退出的定时器导致的内存泄漏:[#10614](https://github.com/apache/apisix/pull/10614)
108+
- 修复:如果在 proxy-rewrite 插件中解析的值为 nil,则不调用 add_header:[#10619](https://github.com/apache/apisix/pull/10619)
109+
- 修复:频繁遍历 etcd 所有的键,导致 cpu 使用率高:[#10671](https://github.com/apache/apisix/pull/10671)
110+
- 修复:对于 prometheus 的 upstream_status 指标,mostly_healthy 是健康的:[#10639](https://github.com/apache/apisix/pull/10639)
111+
- 修复:在 zipkin 中避免在日志阶段获取 nil 值:[#10666](https://github.com/apache/apisix/pull/10666)
112+
- 修复:启用 openid-connect 插件而没有 redirect_uri 导致 500 错误:[#7690](https://github.com/apache/apisix/pull/7690)
113+
- 修复:为没有 end_session_endpoint 的 ODIC 添加 redirect_after_logout_uri:[#10653](https://github.com/apache/apisix/pull/10653)
114+
- 修复:当 content-encoding 为 gzip 时,response-rewrite 的 filters.regex 不适用:[#10637](https://github.com/apache/apisix/pull/10637)
115+
- 修复:prometheus 指标的泄漏:[#10655](https://github.com/apache/apisix/pull/10655)
116+
- 修复:Authz-keycloak 添加返回详细错误:[#10691](https://github.com/apache/apisix/pull/10691)
117+
- 修复:服务发现未正确更新上游节点:[#10722](https://github.com/apache/apisix/pull/10722)
118+
- 修复:apisix 重启失败:[#10696](https://github.com/apache/apisix/pull/10696)
119+
77120
## 3.7.0
78121

79122
### Change

docs/zh/latest/building-apisix.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import TabItem from '@theme/TabItem';
4747
首先,我们需要指定需要安装的版本`APISIX_VERSION`:
4848

4949
```shell
50-
APISIX_VERSION='3.7.0'
50+
APISIX_VERSION='3.8.0'
5151
```
5252

5353
然后,你可以运行以下命令,从 Github 克隆 APISIX 源码:

docs/zh/latest/config.json

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

0 commit comments

Comments
 (0)