Skip to content

Commit 1cd688b

Browse files
chore: release 3.11.0 (#11620)
1 parent a397988 commit 1cd688b

File tree

8 files changed

+37
-6
lines changed

8 files changed

+37
-6
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: 3
56+
release/3.11:
57+
required_pull_request_reviews:
58+
require_code_owner_reviews: true
59+
required_approving_review_count: 3
5660
release/3.10:
5761
required_pull_request_reviews:
5862
require_code_owner_reviews: true

CHANGELOG.md

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

2424
## Table of Contents
2525

26+
- [3.11.0](#3110)
2627
- [3.10.0](#3100)
2728
- [3.9.0](#390)
2829
- [3.8.0](#380)
@@ -77,6 +78,33 @@ title: Changelog
7778
- [0.7.0](#070)
7879
- [0.6.0](#060)
7980

81+
## 3.11.0
82+
83+
### Change
84+
85+
- remove JWT signing endpoint and no longer require a private key to be uploaded in the jwt-auth plugin. [#11597](https://github.com/apache/apisix/pull/11597)
86+
- rewrite hmac-auth plugin for usability [#11581](https://github.com/apache/apisix/pull/11581)
87+
88+
### Plugins
89+
90+
- allow configuring keepalive_timeout in splunk-logger [#11611](https://github.com/apache/apisix/pull/11611)
91+
- add plugin attach-consmer-label [#11604](https://github.com/apache/apisix/pull/11604)
92+
- ai-proxy plugin [#11499](https://github.com/apache/apisix/pull/11499)
93+
- ai-prompt-decorator plugin [#11515](https://github.com/apache/apisix/pull/11515)
94+
- ai-prompt-template plugin [#11517](https://github.com/apache/apisix/pull/11517)
95+
96+
### Bugfixes
97+
98+
- Fix: adjust the position of enums in pb_option_def [#11448](https://github.com/apache/apisix/pull/11448)
99+
- Fix: encryption/decryption for non-auth plugins in consumer [#11600](https://github.com/apache/apisix/pull/11600)
100+
- Fix: confusion when substituting ENV in config file [#11545](https://github.com/apache/apisix/pull/11545)
101+
102+
### Core
103+
104+
- support gcp secret manager [#11436](https://github.com/apache/apisix/pull/11436)
105+
- support aws secret manager [#11417](https://github.com/apache/apisix/pull/11417)
106+
- add credential resource and include `X-Consumer-Username`, `X-Credential-Identifier`, and `X-Consumer-Custom-ID` headers in requests to upstream services [#11601](https://github.com/apache/apisix/pull/11601)
107+
80108
## 3.10.0
81109

82110
### Change

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,6 @@ compress-tar:
429429
./apisix \
430430
./bin \
431431
./conf \
432-
./apisix-$(VERSION)*.rockspec \
433432
./apisix-master-0.rockspec \
434433
LICENSE \
435434
Makefile \

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.10.0"
23+
VERSION = "3.11.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.10.0'
51+
APISIX_VERSION='3.11.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.10.0",
2+
"version": "3.11.0",
33
"sidebar": [
44
{
55
"type": "category",

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.10.0'
50+
APISIX_VERSION='3.11.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.10.0",
2+
"version": "3.11.0",
33
"sidebar": [
44
{
55
"type": "category",

0 commit comments

Comments
 (0)