Skip to content

Commit 105993f

Browse files
authored
feat: release APISIX 3.6.0 (#10283)
1 parent 869754b commit 105993f

File tree

9 files changed

+172
-5
lines changed

9 files changed

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

CHANGELOG.md

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

2424
## Table of Contents
2525

26+
- [3.6.0](#360)
2627
- [3.5.0](#350)
2728
- [3.4.0](#340)
2829
- [3.3.0](#330)
@@ -72,6 +73,35 @@ title: Changelog
7273
- [0.7.0](#070)
7374
- [0.6.0](#060)
7475

76+
## 3.6.0
77+
78+
### Change
79+
80+
- :warning: Remove the `etcd.use_grpc` and no longer support communication with ETCD using protocols with gRPC: [#10015](https://github.com/apache/apisix/pull/10015)
81+
- :warning: Removing conf server, the data plane no longer supports communication with the data plane, and needs to be adjusted from `config_provider: control_plane` to `config_provider: etcd`: [#10012](https://github.com/apache/apisix/pull/10012)
82+
83+
### Core
84+
85+
- :sunrise: support configuring the buffer size of the access log: [#10225](https://github.com/apache/apisix/pull/10225)
86+
- :sunrise: Support for passing resolv.conf in dns discovery: [#9770](https://github.com/apache/apisix/pull/9770)
87+
- :sunrise: No longer relying on trust: [#10121](https://github.com/apache/apisix/pull/10065)
88+
- :sunrise: Strictly validate the input of core resources: [#10233](https://github.com/apache/apisix/pull/10233)
89+
- :sunrise: Add dubbo protocols Support in the xrpc [#9660](https://github.com/apache/apisix/pull/9660)
90+
91+
### Plugins
92+
93+
- :sunrise: Support https in traffic-split plugin: [#9115](https://github.com/apache/apisix/pull/9115)
94+
- :sunrise: Support for passing resolv.conf in dns discovery: [#9770](https://github.com/apache/apisix/pull/9770)
95+
- :sunrise: Support rewrite request body in external plugin:[#9990](https://github.com/apache/apisix/pull/9990)
96+
- :sunrise: Support set nginx variables in opentelemetry plugin: [#8871](https://github.com/apache/apisix/pull/8871)
97+
- :sunrise: Support unix sock host pattern in the chaitin-waf plugin: [#10161](https://github.com/apache/apisix/pull/10161)
98+
99+
### Bugfixes
100+
101+
- Fix graphql post request route matching exception: [#10198](https://github.com/apache/apisix/pull/10198)
102+
- Fix error on array of multiline string in `apisix.yaml`: [#10193](https://github.com/apache/apisix/pull/10193)
103+
- Fix provide error instead of nil panic when cache_zone is missing in proxy-cache plugin: [#10138](https://github.com/apache/apisix/pull/10138)
104+
75105
## 3.5.0
76106

77107
### 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.5.0"
23+
VERSION = "3.6.0"
2424
}

docs/en/latest/building-apisix.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ curl https://raw.githubusercontent.com/apache/apisix/master/utils/install-depend
5454
Save the APISIX version to an environment variable to be used next:
5555

5656
```shell
57-
APISIX_VERSION='3.5.0'
57+
APISIX_VERSION='3.6.0'
5858
```
5959

6060
Clone the APISIX source code of this version into a new directory `apisix-APISIX_VERSION`:

docs/en/latest/config.json

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

docs/zh/latest/CHANGELOG.md

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

2424
## Table of Contents
2525

26+
- [3.6.0](#360)
2627
- [3.5.0](#350)
2728
- [3.4.0](#340)
2829
- [3.3.0](#330)
@@ -72,6 +73,35 @@ title: CHANGELOG
7273
- [0.7.0](#070)
7374
- [0.6.0](#060)
7475

76+
## 3.6.0
77+
78+
### Change
79+
80+
- :warning: 移除 `etcd.use_grpc`,不再支持使用 gRPC 协议与 etcd 进行通信:[#10015](https://github.com/apache/apisix/pull/10015)
81+
- :warning: 移除 conf server,数据平面不再支持与数据平面进行通信,需要从 `config_provider: control_plane` 调整为 `config_provider: etcd`[#10012](https://github.com/apache/apisix/pull/10012)
82+
83+
### Core
84+
85+
- :sunrise: 支持配置访问日志的缓冲区大小:[#10225](https://github.com/apache/apisix/pull/10225)
86+
- :sunrise: 支持在 DNS 发现中传递 resolv.conf:[#9770](https://github.com/apache/apisix/pull/9770)
87+
- :sunrise: 不再依赖 Rust:[#10121](https://github.com/apache/apisix/pull/10065)
88+
- :sunrise: 严格验证核心资源的输入:[#10233](https://github.com/apache/apisix/pull/10233)
89+
- :sunrise: 在 xrpc 中添加 dubbo 协议支持:[#9660](https://github.com/apache/apisix/pull/9660)
90+
91+
### Plugins
92+
93+
- :sunrise: 在 traffic-split 插件中支持 https:[#9115](https://github.com/apache/apisix/pull/9115)
94+
- :sunrise: 支持在 DNS 发现中传递 resolv.conf:[#9770](https://github.com/apache/apisix/pull/9770)
95+
- :sunrise: 在 ext-plugin 插件中支持重写请求体:[#9990](https://github.com/apache/apisix/pull/9990)
96+
- :sunrise: 在 opentelemetry 插件中支持设置 nginx 变量:[#8871](https://github.com/apache/apisix/pull/8871)
97+
- :sunrise: 在 chaitin-waf 插件中支持 unix sock 主机模式:[#10161](https://github.com/apache/apisix/pull/10161)
98+
99+
### Bugfixes
100+
101+
- 修复 GraphQL POST 请求路由匹配异常:[#10198](https://github.com/apache/apisix/pull/10198)
102+
- 修复 `apisix.yaml` 中多行字符串数组的错误:[#10193](https://github.com/apache/apisix/pull/10193)
103+
- 修复在 proxy-cache 插件中缺少 cache_zone 时提供错误而不是 nil panic:[#10138](https://github.com/apache/apisix/pull/10138)
104+
75105
## 3.5.0
76106

77107
### Change

docs/zh/latest/building-apisix.md

+1-1
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.5.0'
56+
APISIX_VERSION='3.6.0'
5757
mkdir apisix-${APISIX_VERSION}
5858
```
5959

docs/zh/latest/config.json

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

rockspec/apisix-3.6.0-0.rockspec

+103
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.6.0-0"
20+
supported_platforms = {"linux", "macosx"}
21+
22+
source = {
23+
url = "git://github.com/apache/apisix",
24+
branch = "3.6.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.5",
38+
"api7-lua-resty-http = 0.2.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 = 3.0.0",
43+
"api7-lua-resty-jwt = 0.2.5",
44+
"lua-resty-hmac-ffi = 0.06-1",
45+
"lua-resty-cookie = 0.2.0-1",
46+
"lua-resty-session = 3.10",
47+
"opentracing-openresty = 0.1",
48+
"lua-resty-radixtree = 2.8.2",
49+
"lua-protobuf = 0.5.0-1",
50+
"lua-resty-openidc = 1.7.6-3",
51+
"luafilesystem = 1.7.0-2",
52+
"api7-lua-tinyyaml = 0.4.4",
53+
"nginx-lua-prometheus = 0.20230607-1",
54+
"jsonschema = 0.9.8",
55+
"lua-resty-ipmatcher = 0.6.1",
56+
"lua-resty-kafka = 0.22-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.05-1",
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.13.1",
70+
"ext-plugin-proto = 0.6.1",
71+
"casbin = 1.41.8-1",
72+
"inspect == 3.1.1",
73+
"lualdap = 1.2.6-1",
74+
"lua-resty-rocketmq = 0.3.0-0",
75+
"opentelemetry-lua = 0.2-3",
76+
"net-url = 0.9-1",
77+
"xml2lua = 1.5-2",
78+
"nanoid = 0.1-1",
79+
"lua-resty-mediador = 0.1.2-1",
80+
"lua-resty-ldap = 0.1.0-0",
81+
"lua-resty-t1k = 1.1.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)