Skip to content

Commit 8e79236

Browse files
committed
feat: release 2.15.0
Signed-off-by: spacewander <[email protected]>
1 parent 3b1cda7 commit 8e79236

File tree

9 files changed

+212
-5
lines changed

9 files changed

+212
-5
lines changed

.asf.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ github:
5050
dismiss_stale_reviews: true
5151
require_code_owner_reviews: true
5252
required_approving_review_count: 2
53+
release/2.15:
54+
required_pull_request_reviews:
55+
require_code_owner_reviews: true
56+
required_approving_review_count: 2
5357
release/2.14:
5458
required_pull_request_reviews:
5559
require_code_owner_reviews: true

CHANGELOG.md

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

2424
## Table of Contents
2525

26+
- [2.15.0](#2150)
2627
- [2.14.1](#2141)
2728
- [2.14.0](#2140)
2829
- [2.13.2](#2132)
@@ -59,6 +60,55 @@ title: Changelog
5960
- [0.7.0](#070)
6061
- [0.6.0](#060)
6162

63+
## 2.15.0
64+
65+
### Change
66+
67+
- We now map the grpc error code OUT_OF_RANGE to http code 400 in grpc-transcode plugin: [#7419](https://github.com/apache/apisix/pull/7419)
68+
- Rename health_check_retry configuration in etcd section of `config-default.yaml` to startup_retry: [#7304](https://github.com/apache/apisix/pull/7304)
69+
- Remove `upstream.enable_websocket` which is deprecated since 2020: [#7222](https://github.com/apache/apisix/pull/7222)
70+
71+
### Core
72+
73+
- Support running plugins conditionally: [#7453](https://github.com/apache/apisix/pull/7453)
74+
- Allow users to specify plugin execution priority: [#7273](https://github.com/apache/apisix/pull/7273)
75+
- Support getting upstream certificate from ssl object: [#7221](https://github.com/apache/apisix/pull/7221)
76+
- Allow customizing error response in the plugin: [#7128](https://github.com/apache/apisix/pull/7128)
77+
- Add metrics to xRPC Redis proxy: [#7183](https://github.com/apache/apisix/pull/7183)
78+
- Introduce deployment role to simplify the deployment of APISIX:
79+
    - [#7405](https://github.com/apache/apisix/pull/7405)
80+
    - [#7417](https://github.com/apache/apisix/pull/7417)
81+
    - [#7392](https://github.com/apache/apisix/pull/7392)
82+
    - [#7365](https://github.com/apache/apisix/pull/7365)
83+
    - [#7249](https://github.com/apache/apisix/pull/7249)
84+
85+
### Plugin
86+
87+
- Add ngx.shared.dict statistic in promethues plugin: [#7412](https://github.com/apache/apisix/pull/7412)
88+
- Allow using unescaped raw URL in proxy-rewrite plugin: [#7401](https://github.com/apache/apisix/pull/7401)
89+
- Add PKCE support to the openid-connect plugin: [#7370](https://github.com/apache/apisix/pull/7370)
90+
- Support custom log format in sls-logger plugin: [#7328](https://github.com/apache/apisix/pull/7328)
91+
- Export some params for kafka-client in kafka-logger plugin: [#7266](https://github.com/apache/apisix/pull/7266)
92+
- Add support for capturing OIDC refresh tokens in openid-connect plugin: [#7220](https://github.com/apache/apisix/pull/7220)
93+
- Add prometheus plugin in stream subsystem: [#7174](https://github.com/apache/apisix/pull/7174)
94+
95+
### Bugfix
96+
97+
- clear remain state from the latest try before retrying in Kubernetes discovery: [#7506](https://github.com/apache/apisix/pull/7506)
98+
- the query string was repeated twice when enabling both http_to_https and append_query_string in the redirect plugin: [#7433](https://github.com/apache/apisix/pull/7433)
99+
- don't send empty Authorization header by default in http-logger: [#7444](https://github.com/apache/apisix/pull/7444)
100+
- ensure both `group` and `disable` configurations can be used in limit-count: [#7384](https://github.com/apache/apisix/pull/7384)
101+
- adjust the execution priority of request-id so the tracing plugins can use the request id: [#7281](https://github.com/apache/apisix/pull/7281)
102+
- correct the transcode of repeated Message in grpc-transcode: [#7231](https://github.com/apache/apisix/pull/7231)
103+
- var missing in proxy-cache cache key should be ignored: [#7168](https://github.com/apache/apisix/pull/7168)
104+
- reduce memory usage when abnormal weights are given in chash: [#7103](https://github.com/apache/apisix/pull/7103)
105+
- cache should be bypassed when the method mismatch in proxy-cache: [#7111](https://github.com/apache/apisix/pull/7111)
106+
- Upstream keepalive should consider TLS param:
107+
    - [#7054](https://github.com/apache/apisix/pull/7054)
108+
    - [#7466](https://github.com/apache/apisix/pull/7466)
109+
- The redirect plugin sets a correct port during redirecting HTTP to HTTPS:
110+
    - [#7065](https://github.com/apache/apisix/pull/7065)
111+
62112
## 2.14.1
63113

64114
### Bugfix

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 = "2.14.1"
23+
VERSION = "2.15.0"
2424
}

docs/en/latest/building-apisix.md

+1-1
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.14.1'
55+
APISIX_VERSION='2.15.0'
5656
mkdir apisix-${APISIX_VERSION}
5757
```
5858

docs/en/latest/config.json

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

docs/zh/latest/CHANGELOG.md

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

2424
## Table of Contents
2525

26+
- [2.15.0](#2150)
2627
- [2.14.1](#2141)
2728
- [2.14.0](#2140)
2829
- [2.13.2](#2132)
@@ -59,6 +60,55 @@ title: CHANGELOG
5960
- [0.7.0](#070)
6061
- [0.6.0](#060)
6162

63+
## 2.15.0
64+
65+
### Change
66+
67+
- grpc 状态码 OUT_OF_RANGE 如今会在 grpc-transcode 插件中作为 http 状态码 400: [#7419](https://github.com/apache/apisix/pull/7419)
68+
- 重命名 `etcd.health_check_retry` 配置项为 `startup_retry`[#7304](https://github.com/apache/apisix/pull/7304)
69+
- 移除 `upstream.enable_websocket`。该配置已于 2020 年标记成已过时。 [#7222](https://github.com/apache/apisix/pull/7222)
70+
71+
### Core
72+
73+
- 支持动态启用插件 [#7453](https://github.com/apache/apisix/pull/7453)
74+
- 支持动态指定插件执行顺序 [#7273](https://github.com/apache/apisix/pull/7273)
75+
- 支持 Upstream 对象从 SSL 对象中引用证书 [#7221](https://github.com/apache/apisix/pull/7221)
76+
- 允许在插件中使用自定义错误 [#7128](https://github.com/apache/apisix/pull/7128)
77+
- xRPC Redis 代理增加 metrics: [#7183](https://github.com/apache/apisix/pull/7183)
78+
- 引入 deployment role 概念来简化 APISIX 的部署:
79+
- [#7405](https://github.com/apache/apisix/pull/7405)
80+
- [#7417](https://github.com/apache/apisix/pull/7417)
81+
- [#7392](https://github.com/apache/apisix/pull/7392)
82+
- [#7365](https://github.com/apache/apisix/pull/7365)
83+
- [#7249](https://github.com/apache/apisix/pull/7249)
84+
85+
### Plugin
86+
87+
- prometheus 指标中提供 ngx.shared.dict 统计信息 [#7412](https://github.com/apache/apisix/pull/7412)
88+
- 允许在 proxy-rewrite 插件中使用客户端发过来的原始 URL [#7401](https://github.com/apache/apisix/pull/7401)
89+
- openid-connect 插件支持 PKCE: [#7370](https://github.com/apache/apisix/pull/7370)
90+
- sls-logger 插件支持自定义日志格式 [#7328](https://github.com/apache/apisix/pull/7328)
91+
- kafka-logger 插件支持更多的 Kafka 客户端配置 [#7266](https://github.com/apache/apisix/pull/7266)
92+
- openid-connect 插件支持暴露 refresh token [#7220](https://github.com/apache/apisix/pull/7220)
93+
- 移植 prometheus 插件到 stream 子系统 [#7174](https://github.com/apache/apisix/pull/7174)
94+
95+
### Bugfix
96+
97+
- Kubernetes 服务发现在重试时应当清除上一次尝试时遗留的状态 [#7506](https://github.com/apache/apisix/pull/7506)
98+
- redirect 插件禁止同时启用冲突的 http_to_https 和 append_query_string 配置 [#7433](https://github.com/apache/apisix/pull/7433)
99+
- 默认配置下,http-logger 不再发送空 Authorization 头 [#7444](https://github.com/apache/apisix/pull/7444)
100+
- 修复 limit-count 插件不能同时配置 group 和 disable 的问题 [#7384](https://github.com/apache/apisix/pull/7384)
101+
- 让 request-id 插件优先执行,这样 tracing 插件可以用到 request id [#7281](https://github.com/apache/apisix/pull/7281)
102+
- 更正 grpc-transcode 插件中对 repeated Message 的处理。 [#7231](https://github.com/apache/apisix/pull/7231)
103+
- 允许 proxy-cache 插件 cache key 出现缺少的值。 [#7168](https://github.com/apache/apisix/pull/7168)
104+
- 减少 chash 负载均衡节点权重过大时额外的内存消耗。 [#7103](https://github.com/apache/apisix/pull/7103)
105+
- proxy-cache 插件 method 不匹配时不应该返回缓存结果。 [#7111](https://github.com/apache/apisix/pull/7111)
106+
- 上游 keepalive 应考虑 TLS 参数:
107+
- [#7054](https://github.com/apache/apisix/pull/7054)
108+
- [#7466](https://github.com/apache/apisix/pull/7466)
109+
- 重定向插件在将 HTTP 重定向到 HTTPS 时设置了正确的端口。
110+
- [#7065](https://github.com/apache/apisix/pull/7065)
111+
62112
## 2.14.1
63113

64114
### Bugfix

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='2.14.1'
56+
APISIX_VERSION='2.15.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": "2.14.1",
2+
"version": "2.15.0",
33
"sidebar": [
44
{
55
"type": "category",

rockspec/apisix-2.15.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 = "2.15.0-0"
20+
supported_platforms = {"linux", "macosx"}
21+
22+
source = {
23+
url = "git://github.com/apache/apisix",
24+
branch = "2.15.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.8.2",
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.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.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.1",
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.5.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+
}
82+
83+
build = {
84+
type = "make",
85+
build_variables = {
86+
CFLAGS="$(CFLAGS)",
87+
LIBFLAG="$(LIBFLAG)",
88+
LUA_LIBDIR="$(LUA_LIBDIR)",
89+
LUA_BINDIR="$(LUA_BINDIR)",
90+
LUA_INCDIR="$(LUA_INCDIR)",
91+
LUA="$(LUA)",
92+
OPENSSL_INCDIR="$(OPENSSL_INCDIR)",
93+
OPENSSL_LIBDIR="$(OPENSSL_LIBDIR)",
94+
},
95+
install_variables = {
96+
ENV_INST_PREFIX="$(PREFIX)",
97+
ENV_INST_BINDIR="$(BINDIR)",
98+
ENV_INST_LIBDIR="$(LIBDIR)",
99+
ENV_INST_LUADIR="$(LUADIR)",
100+
ENV_INST_CONFDIR="$(CONFDIR)",
101+
},
102+
}
103+

0 commit comments

Comments
 (0)