Skip to content

Commit e523132

Browse files
authored
feat: release 3.0 (#8179)
1 parent df69239 commit e523132

File tree

9 files changed

+186
-5
lines changed

9 files changed

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

CHANGELOG.md

Lines changed: 37 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.0.0](#300)
2627
- [3.0.0-beta](#300-beta)
2728
- [2.15.0](#2150)
2829
- [2.14.1](#2141)
@@ -62,6 +63,42 @@ title: Changelog
6263
- [0.7.0](#070)
6364
- [0.6.0](#060)
6465

66+
## 3.0.0
67+
68+
### Change
69+
70+
- `enable_cpu_affinity` is disabled by default to avoid this configuration affecting the behavior of APSISIX deployed in the container: [#8074](https://github.com/apache/apisix/pull/8074)
71+
72+
### Core
73+
74+
- :sunrise: Added Consumer Group entity to manage multiple consumers: [#7980](https://github.com/apache/apisix/pull/7980)
75+
- :sunrise: Supports configuring the order in which DNS resolves domain name types: [#7935](https://github.com/apache/apisix/pull/7935)
76+
- :sunrise: Support configuring multiple `key_encrypt_salt` for rotation: [#7925](https://github.com/apache/apisix/pull/7925)
77+
78+
### Plugin
79+
80+
- :sunrise: Added ai plugin to dynamically optimize the execution path of APISIX according to the scene:
81+
- [#8102](https://github.com/apache/apisix/pull/8102)
82+
- [#8113](https://github.com/apache/apisix/pull/8113)
83+
- [#8120](https://github.com/apache/apisix/pull/8120)
84+
- [#8128](https://github.com/apache/apisix/pull/8128)
85+
- [#8130](https://github.com/apache/apisix/pull/8130)
86+
- [#8149](https://github.com/apache/apisix/pull/8149)
87+
- [#8157](https://github.com/apache/apisix/pull/8157)
88+
- :sunrise: Support `session_secret` in openid-connect plugin to resolve the inconsistency of `session_secret` among multiple workers: [#8068](https://github.com/apache/apisix/pull/8068)
89+
- :sunrise: Support sasl config in kafka-logger plugin: [#8050](https://github.com/apache/apisix/pull/8050)
90+
- :sunrise: Support set resolve domain in proxy-mirror plugin: [#7861](https://github.com/apache/apisix/pull/7861)
91+
- :sunrise: Support `brokers` property in kafka-logger plugin, which supports different broker to set the same host: [#7999](https://github.com/apache/apisix/pull/7999)
92+
- :sunrise: Support get response body in ext-plugin-post-resp: [#7947](https://github.com/apache/apisix/pull/7947)
93+
- :sunrise: Added cas-auth plugin to support CAS authentication: [#7932](https://github.com/apache/apisix/pull/7932)
94+
95+
### Bugfix
96+
97+
- Conditional expressions of workflow plugin should support operators: [#8121](https://github.com/apache/apisix/pull/8121)
98+
- Fix loading problem of batch processor plugin when prometheus plugin is disabled: [#8079](https://github.com/apache/apisix/pull/8079)
99+
- When APISIX starts, delete the old conf server sock file if it exists: [#8022](https://github.com/apache/apisix/pull/8022)
100+
- Disable core.grpc when gRPC-client-nginx-module module is not compiled: [#8007](https://github.com/apache/apisix/pull/8007)
101+
65102
## 3.0.0-beta
66103

67104
Here we use 2.99.0 as the version number in the source code instead of the code name

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 = "2.99.0"
23+
VERSION = "3.0.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='2.99.0'
55+
APISIX_VERSION='3.0.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": "2.99.0",
2+
"version": "3.0.0",
33
"sidebar": [
44
{
55
"type": "doc",

docs/zh/latest/CHANGELOG.md

Lines changed: 37 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.0.0](#300)
2627
- [3.0.0-beta](#300-beta)
2728
- [2.15.0](#2150)
2829
- [2.14.1](#2141)
@@ -62,6 +63,42 @@ title: CHANGELOG
6263
- [0.7.0](#070)
6364
- [0.6.0](#060)
6465

66+
## 3.0.0
67+
68+
### Change
69+
70+
- 默认关闭 `enable_cpu_affinity`,避免在容器部署场景中该配置影响 APSISIX 的行为:[#8074](https://github.com/apache/apisix/pull/8074)
71+
72+
### Core
73+
74+
- :sunrise: 新增 Consumer Group 实体,用于管理多个 Consumer:[#7980](https://github.com/apache/apisix/pull/7980)
75+
- :sunrise: 支持配置 DNS 解析域名类型的顺序:[#7935](https://github.com/apache/apisix/pull/7935)
76+
- :sunrise: 支持配置多个 `key_encrypt_salt` 进行轮转:[#7925](https://github.com/apache/apisix/pull/7925)
77+
78+
### Plugin
79+
80+
- :sunrise: 新增 ai 插件,根据场景动态优化 APISIX 的执行路径:
81+
- [#8102](https://github.com/apache/apisix/pull/8102)
82+
- [#8113](https://github.com/apache/apisix/pull/8113)
83+
- [#8120](https://github.com/apache/apisix/pull/8120)
84+
- [#8128](https://github.com/apache/apisix/pull/8128)
85+
- [#8130](https://github.com/apache/apisix/pull/8130)
86+
- [#8149](https://github.com/apache/apisix/pull/8149)
87+
- [#8157](https://github.com/apache/apisix/pull/8157)
88+
- :sunrise: openid-connect 插件支持设置 `session_secret`,解决多个 worker 间 `session_secret` 不一致的问题:[#8068](https://github.com/apache/apisix/pull/8068)
89+
- :sunrise: kafka-logger 插件支持设置 sasl 相关配置:[#8050](https://github.com/apache/apisix/pull/8050)
90+
- :sunrise: proxy-mirror 插件支持设置域名作为 host:[#7861](https://github.com/apache/apisix/pull/7861)
91+
- :sunrise: kafka-logger 插件新增 brokers 属性,支持不同 broker 设置相同 host:[#7999](https://github.com/apache/apisix/pull/7999)
92+
- :sunrise: ext-plugin-post-resp 插件支持获取上游响应体:[#7947](https://github.com/apache/apisix/pull/7947)
93+
- :sunrise: 新增 cas-auth 插件,支持 CAS 认证:[#7932](https://github.com/apache/apisix/pull/7932)
94+
95+
### Bugfix
96+
97+
- workflow 插件的条件表达式应该支持操作符:[#8121](https://github.com/apache/apisix/pull/8121)
98+
- 修复禁用 prometheus 插件时 batch processor 加载问题:[#8079](https://github.com/apache/apisix/pull/8079)
99+
- APISIX 启动时,如果存在旧的 conf server 的 sock 文件则删除:[#8022](https://github.com/apache/apisix/pull/8022)
100+
- 没有编译 gRPC-client-nginx-module 模块时禁用 core.grpc:[#8007](https://github.com/apache/apisix/pull/8007)
101+
65102
## 3.0.0-beta
66103

67104
这里我们使用 `2.99.0` 作为源代码中的版本号,而不是代码名称

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

rockspec/apisix-3.0.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.0.0-0"
20+
supported_platforms = {"linux", "macosx"}
21+
22+
source = {
23+
url = "git://github.com/apache/apisix",
24+
branch = "3.0.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+
"lua-resty-dns-client = 6.0.2",
36+
"lua-resty-template = 2.0",
37+
"lua-resty-etcd = 1.9.0",
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.1",
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.3.4",
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.0rc1-2",
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.1",
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.1-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)