Skip to content

Commit 1818c15

Browse files
authored
feat: release APISIX 3.4.0 (#9732)
1 parent b024f68 commit 1818c15

File tree

9 files changed

+178
-5
lines changed

9 files changed

+178
-5
lines changed

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

CHANGELOG.md

Lines changed: 33 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.4.0](#340)
2627
- [3.3.0](#330)
2728
- [3.2.1](#321)
2829
- [3.2.0](#320)
@@ -70,6 +71,38 @@ title: Changelog
7071
- [0.7.0](#070)
7172
- [0.6.0](#060)
7273

74+
## 3.4.0
75+
76+
### Core
77+
78+
- :sunrise: Support route-level MTLS [#9332](https://github.com/apache/apisix/pull/9332)
79+
- :sunrise: Support id schema for global_rules [#9517](https://github.com/apache/apisix/pull/9517)
80+
- :sunrise: Support use a single long http connection to watch all resources for etcd [#9456](https://github.com/apache/apisix/pull/9456)
81+
- :sunrise: Support max len 256 for ssl label [#9301](https://github.com/apache/apisix/pull/9301)
82+
83+
### Plugins
84+
85+
- :sunrise: Support miltiple regex pattern matching for proxy_rewrite plugin [#9194](https://github.com/apache/apisix/pull/9194)
86+
- :sunrise: Add loki-logger plugin [#9399](https://github.com/apache/apisix/pull/9399)
87+
- :sunrise: Allow user configure DEFAULT_BUCKETS for prometheus plugin [#9673](https://github.com/apache/apisix/pull/9673)
88+
89+
### Bugfixes
90+
91+
- Fix(body-transformer): xml2lua: replace empty table with empty string [#9669](https://github.com/apache/apisix/pull/9669)
92+
- Fix: opentelemetry and grpc-transcode plugins cannot work together [#9606](https://github.com/apache/apisix/pull/9606)
93+
- Fix(skywalking-logger, error-log-logger): support $hostname in skywalking service_instance_name [#9401](https://github.com/apache/apisix/pull/9401)
94+
- Fix(admin): fix secrets do not support to update attributes by PATCH [#9510](https://github.com/apache/apisix/pull/9510)
95+
- Fix(http-logger): default request path should be '/' [#9472](https://github.com/apache/apisix/pull/9472)
96+
- Fix: syslog plugin doesn't work [#9425](https://github.com/apache/apisix/pull/9425)
97+
- Fix: wrong log format for splunk-hec-logging [#9478](https://github.com/apache/apisix/pull/9478)
98+
- Fix(etcd): reuse cli and enable keepalive [#9420](https://github.com/apache/apisix/pull/9420)
99+
- Fix: upstream key config add mqtt_client_id support [#9450](https://github.com/apache/apisix/pull/9450)
100+
- Fix: body-transformer plugin return raw body anytime [#9446](https://github.com/apache/apisix/pull/9446)
101+
- Fix(wolf-rbac): other plugin in consumer not effective when consumer used wolf-rbac plugin [#9298](https://github.com/apache/apisix/pull/9298)
102+
- Fix: always parse domain when host is domain name [#9332](https://github.com/apache/apisix/pull/9332)
103+
- Fix: response-rewrite plugin can't add only one character [#9372](https://github.com/apache/apisix/pull/9372)
104+
- Fix(consul): support to fetch only health endpoint [#9204](https://github.com/apache/apisix/pull/9204)
105+
73106
## 3.3.0
74107

75108
**The changes marked with :warning: are not backward compatible.**

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.3.0"
23+
VERSION = "3.4.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
Save the APISIX version to an environment variable to be used next:
5353

5454
```shell
55-
APISIX_VERSION='3.3.0'
55+
APISIX_VERSION='3.4.0'
5656
```
5757

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

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.3.0",
2+
"version": "3.4.0",
33
"sidebar": [
44
{
55
"type": "category",

docs/zh/latest/CHANGELOG.md

Lines changed: 33 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.4.0](#340)
2627
- [3.3.0](#330)
2728
- [3.2.1](#321)
2829
- [3.2.0](#320)
@@ -70,6 +71,38 @@ title: CHANGELOG
7071
- [0.7.0](#070)
7172
- [0.6.0](#060)
7273

74+
## 3.4.0
75+
76+
### Core
77+
78+
- :sunrise: 支持路由级别的 MTLS [#9332](https://github.com/apache/apisix/pull/9332)
79+
- :sunrise: 支持全局规则的 id schema [#9517](https://github.com/apache/apisix/pull/9517)
80+
- :sunrise: 支持使用单个长连接来监视 etcd 的所有资源 [#9456](https://github.com/apache/apisix/pull/9456)
81+
- :sunrise: 支持 ssl 标签的最大长度为 256 [#9301](https://github.com/apache/apisix/pull/9301)
82+
83+
### Plugins
84+
85+
- :sunrise: 支持 proxy_rewrite 插件的多个正则表达式匹配 [#9194](https://github.com/apache/apisix/pull/9194)
86+
- :sunrise: 添加 loki-logger 插件 [#9399](https://github.com/apache/apisix/pull/9399)
87+
- :sunrise: 允许用户为 prometheus 插件配置 DEFAULT_BUCKETS [#9673](https://github.com/apache/apisix/pull/9673)
88+
89+
### Bugfixes
90+
91+
- 修复 (body-transformer):xml2lua 将空表替换为空字符串 [#9669](https://github.com/apache/apisix/pull/9669)
92+
- 修复:opentelemetry 和 grpc-transcode 插件无法同时启用 [#9606](https://github.com/apache/apisix/pull/9606)
93+
- 修复 (skywalking-logger, error-log-logger):支持在 skywalking service_instance_name 中使用 $hostname [#9401](https://github.com/apache/apisix/pull/9401)
94+
- 修复 (admin):修复 secrets 不支持通过 PATCH 更新属性 [#9510](https://github.com/apache/apisix/pull/9510)
95+
- 修复 (http-logger):默认请求路径应为'/' [#9472](https://github.com/apache/apisix/pull/9472)
96+
- 修复:syslog 插件不起作用 [#9425](https://github.com/apache/apisix/pull/9425)
97+
- 修复:splunk-hec-logging 的日志格式错误 [#9478](https://github.com/apache/apisix/pull/9478)
98+
- 修复:etcd 复用 cli 并启用 keepalive [#9420](https://github.com/apache/apisix/pull/9420)
99+
- 修复:upstream key 添加 mqtt_client_id 支持 [#9450](https://github.com/apache/apisix/pull/9450)
100+
- 修复:body-transformer 插件总是返回原始 body [#9446](https://github.com/apache/apisix/pull/9446)
101+
- 修复:当 consumer 使用 wolf-rbac 插件时,consumer 中的其他插件无效 [#9298](https://github.com/apache/apisix/pull/9298)
102+
- 修复:当 host 是域名时,总是解析域名 [#9332](https://github.com/apache/apisix/pull/9332)
103+
- 修复:response-rewrite 插件不能只添加一个字符 [#9372](https://github.com/apache/apisix/pull/9372)
104+
- 修复:consul 支持只获取 health endpoint [#9204](https://github.com/apache/apisix/pull/9204)
105+
73106
## 3.3.0
74107

75108
### Change

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.3.0'
56+
APISIX_VERSION='3.4.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.3.0",
2+
"version": "3.4.0",
33
"sidebar": [
44
{
55
"type": "doc",

rockspec/apisix-3.4.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.4.0-0"
20+
supported_platforms = {"linux", "macosx"}
21+
22+
source = {
23+
url = "git://github.com/apache/apisix",
24+
branch = "3.4.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.4",
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 = 3.0.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 = 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.20221218",
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.2.2-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)