Skip to content

Commit a9ac45e

Browse files
authored
feat: release 2.15.2 (#8754)
1 parent 7f2e443 commit a9ac45e

File tree

8 files changed

+135
-5
lines changed

8 files changed

+135
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ title: Changelog
2323

2424
## Table of Contents
2525

26+
- [2.15.2](#2152)
2627
- [2.15.1](#2151)
2728
- [2.15.0](#2150)
2829
- [2.14.1](#2141)
@@ -61,6 +62,19 @@ title: Changelog
6162
- [0.7.0](#070)
6263
- [0.6.0](#060)
6364

65+
## 2.15.2
66+
67+
### Bugfix
68+
69+
- File-logger should avoid buffer-caused log truncation when writing logs: [#7884](https://github.com/apache/apisix/pull/7884)
70+
- Fix the problem that x-forwarded-host cannot be modified in proxy-rewrite plugin: [#8200](https://github.com/apache/apisix/pull/8200)
71+
- Fix the problem that userinfo is not set when use_jwks is true in the openid-connect plugin: [#8347](https://github.com/apache/apisix/pull/8347)
72+
- Fix a problem that 502 occurs when http and grpc share the same upstream node due to connection pool reuse: [#8364](https://github.com/apache/apisix/pull/8364)
73+
- Fix the problem that the plugin configured under service object cannot take effect in time under some circumstances: [#8482](https://github.com/apache/apisix/pull/8482)
74+
- When hotloading plugins, redundant timers may be left behind if the request-id plugin initializes the snowflake generator incorrectly: [#8556](https://github.com/apache/apisix/pull/8556)
75+
- Close previous proto synchronizer for grpc-transcode when hotloading plugins: [#8557](https://github.com/apache/apisix/pull/8557)
76+
- Fix plugin disable feature not working in 2.15.1: [#8609](https://github.com/apache/apisix/pull/8609)
77+
6478
## 2.15.1
6579

6680
### Bugfix

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

docs/zh/latest/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ title: CHANGELOG
2323

2424
## Table of Contents
2525

26+
- [2.15.2](#2152)
2627
- [2.15.1](#2151)
2728
- [2.15.0](#2150)
2829
- [2.14.1](#2141)
@@ -61,6 +62,19 @@ title: CHANGELOG
6162
- [0.7.0](#070)
6263
- [0.6.0](#060)
6364

65+
## 2.15.2
66+
67+
### Bugfix
68+
69+
- file-logger 在写日志时,应避免缓冲区造成的日志截断:[#7884](https://github.com/apache/apisix/pull/7884)
70+
- 修复无法在 proxy-rewrite 插件中修改 x-forwarded-host 的问题:[#8200](https://github.com/apache/apisix/pull/8200)
71+
- 修复 openid-connect 插件中当 use_jwks 为 true 时没有设置 userinfo 的问题:[#8347](https://github.com/apache/apisix/pull/8347)
72+
- 修复因连接池复用,http 和 grpc 共用同一个上游节点时偶发 502 的问题:[#8364](https://github.com/apache/apisix/pull/8364)
73+
- 修复某些情况下,配置在 service 对象下的插件无法及时生效的问题:[#8482](https://github.com/apache/apisix/pull/8482)
74+
- 插件热加载时,如果 request-id 插件中初始化 snowflake 生成器出错,可能遗留多余的计时器:[#8556](https://github.com/apache/apisix/pull/8556)
75+
- 插件热加载时,关闭 grpc-transcode 的 proto 同步器:[#8557](https://github.com/apache/apisix/pull/8557)
76+
- 修复 2.15.1 中插件禁用功能无法使用的问题:[#8609](https://github.com/apache/apisix/pull/8609)
77+
6478
## 2.15.1
6579

6680
### Bugfix

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

rockspec/apisix-2.15.2-0.rockspec

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
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.2-0"
20+
supported_platforms = {"linux", "macosx"}
21+
22+
source = {
23+
url = "git://github.com/apache/apisix",
24+
branch = "2.15.2",
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.3",
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.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.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.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+
}

0 commit comments

Comments
 (0)