Unverified Commit 644a54a3 authored by 罗泽轩's avatar 罗泽轩 Committed by GitHub
Browse files

feat: release 2.13.2 (#7285)

Signed-off-by: default avatarspacewander <spacewanderlzx@gmail.com>
parent fabf6c1c
Showing with 161 additions and 9 deletions
+161 -9
......@@ -23,6 +23,7 @@ title: Changelog
## Table of Contents
- [2.13.2](#2132)
- [2.13.1](#2131)
- [2.13.0](#2130)
- [2.12.1](#2121)
......@@ -55,6 +56,31 @@ title: Changelog
- [0.7.0](#070)
- [0.6.0](#060)
## 2.13.2
### Bugfix
- correct the transcode of repeated Message in grpc-transcode: [#7231](https://github.com/apache/apisix/pull/7231)
- var missing in proxy-cache cache key should be ignored: [#7168](https://github.com/apache/apisix/pull/7168)
- reduce memory usage when abnormal weights are given in chash: [#7103](https://github.com/apache/apisix/pull/7103)
- cache should be bypassed when the method mismatch in proxy-cache: [#7111](https://github.com/apache/apisix/pull/7111)
- Upstream keepalive should consider TLS param: [#7054](https://github.com/apache/apisix/pull/7054)
- Do not expose internal error message to the client:
- [#6982](https://github.com/apache/apisix/pull/6982)
- [#6859](https://github.com/apache/apisix/pull/6859)
- [#6854](https://github.com/apache/apisix/pull/6854)
- [#6853](https://github.com/apache/apisix/pull/6853)
- DNS supports SRV record with port 0: [#6739](https://github.com/apache/apisix/pull/6739)
- client mTLS was ignored sometimes in TLS session reuse: [#6906](https://github.com/apache/apisix/pull/6906)
- The grpc-web plugin doesn't override Access-Control-Allow-Origin header in response: [#6842](https://github.com/apache/apisix/pull/6842)
- The syslog plugin's default timeout is corrected: [#6807](https://github.com/apache/apisix/pull/6807)
- The authz-keycloak plugin's `access_denied_redirect_uri` was bypassed sometimes: [#6794](https://github.com/apache/apisix/pull/6794)
- Handle `USR2` signal properly: [#6758](https://github.com/apache/apisix/pull/6758)
- The redirect plugin set a correct port during redirecting HTTP to HTTPS:
- [#7065](https://github.com/apache/apisix/pull/7065)
- [#6686](https://github.com/apache/apisix/pull/6686)
- Admin API rejects unknown stream plugin: [#6813](https://github.com/apache/apisix/pull/6813)
## 2.13.1
### Bugfix
......
......@@ -20,5 +20,5 @@
-- @module core.version
return {
VERSION = "2.13.1"
VERSION = "2.13.2"
}
{
"version": "2.13.1",
"version": "2.13.2",
"sidebar": [
{
"type": "category",
......
......@@ -97,10 +97,10 @@ Follow the steps below to install Apache APISIX via the source release package.
curl https://raw.githubusercontent.com/apache/apisix/master/utils/install-dependencies.sh -sL | bash -
```
2. Create a directory named `apisix-2.13.1`.
2. Create a directory named `apisix-2.13.2`.
```shell
APISIX_VERSION='2.13.1'
APISIX_VERSION='2.13.2'
mkdir apisix-${APISIX_VERSION}
```
......@@ -162,7 +162,7 @@ Follow the steps below to install Apache APISIX via the source release package.
#### LTS version installation via Source Release Package
The [current LTS version](https://apisix.apache.org/downloads/) of Apache APISIX is `2.13.1`.
The [current LTS version](https://apisix.apache.org/downloads/) of Apache APISIX is `2.13.2`.
To install this version, set `APISIX_VERSION` in [Installation via Source Release Package](#installation-via-source-release-package) to this version and continue with the other steps.
......
......@@ -23,6 +23,7 @@ title: CHANGELOG
## Table of Contents
- [2.13.2](#2132)
- [2.13.1](#2131)
- [2.13.0](#2130)
- [2.12.1](#2121)
......@@ -55,6 +56,31 @@ title: CHANGELOG
- [0.7.0](#070)
- [0.6.0](#060)
## 2.13.2
### Bugfix
- 更正 grpc-transcode 插件中对 repeated Message 的处理。 [#7231](https://github.com/apache/apisix/pull/7231)
- 允许 proxy-cache 插件 cache key 出现缺少的值。 [#7168](https://github.com/apache/apisix/pull/7168)
- 减少 chash 负载均衡节点权重过大时额外的内存消耗。 [#7103](https://github.com/apache/apisix/pull/7103)
- proxy-cache 插件 method 不匹配时不应该返回缓存结果。 [#7111](https://github.com/apache/apisix/pull/7111)
- 上游 keepalive 应考虑 TLS 参数:[#7054](https://github.com/apache/apisix/pull/7054)
- 不要将内部错误信息暴露给客户端。
- [#6982](https://github.com/apache/apisix/pull/6982)
- [#6859](https://github.com/apache/apisix/pull/6859)
- [#6854](https://github.com/apache/apisix/pull/6854)
- [#6853](https://github.com/apache/apisix/pull/6853)
- DNS 支持端口为 0 的 SRV 记录:[#6739](https://github.com/apache/apisix/pull/6739)
- 修复客户端 mTLS 在 TLS 会话重用中有时不生效的问题:[#6906](https://github.com/apache/apisix/pull/6906)
- grpc-web 插件不会在响应中覆盖 Access-Control-Allow-Origin 头。[#6842](https://github.com/apache/apisix/pull/6842)
- syslog 插件的默认超时已被纠正。[#6807](https://github.com/apache/apisix/pull/6807)
- 修复 authz-keycloak 插件的 `access_denied_redirect_uri` 的设置有时不生效的问题。[#6794](https://github.com/apache/apisix/pull/6794)
- 正确处理 `USR2` 信号。[#6758](https://github.com/apache/apisix/pull/6758)
- 重定向插件在将 HTTP 重定向到 HTTPS 时设置了正确的端口。
- [#7065](https://github.com/apache/apisix/pull/7065)
- [#6686](https://github.com/apache/apisix/pull/6686)
- Admin API 拒绝未知的 stream 插件。[#6813](https://github.com/apache/apisix/pull/6813)
## 2.13.1
### Bugfix
......
{
"version": "2.13.1",
"version": "2.13.2",
"sidebar": [
{
"type": "category",
......
......@@ -93,10 +93,10 @@ sudo yum install ./apisix/*.rpm
curl https://raw.githubusercontent.com/apache/apisix/master/utils/install-dependencies.sh -sL | bash -
```
2. 创建一个名为 `apisix-2.13.1` 的目录。
2. 创建一个名为 `apisix-2.13.2` 的目录。
```shell
APISIX_VERSION='2.13.1'
APISIX_VERSION='2.13.2'
mkdir apisix-${APISIX_VERSION}
```
......@@ -158,7 +158,7 @@ sudo yum install ./apisix/*.rpm
#### 通过源码包安装 LTS 版本
目前 Apache APISIX 的 LTS 版本为 `2.13.1`,将“[通过源码包安装](#通过源码包安装)”中的 `APISIX_VERSION` 设置成该版本号,其他步骤按顺序进行即可。
目前 Apache APISIX 的 LTS 版本为 `2.13.2`,将“[通过源码包安装](#通过源码包安装)”中的 `APISIX_VERSION` 设置成该版本号,其他步骤按顺序进行即可。
## 步骤2:安装 etcd
......
--
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to You under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
package = "apisix"
version = "2.13.2-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/apache/apisix",
branch = "2.13.2",
}
description = {
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.",
homepage = "https://github.com/apache/apisix",
license = "Apache License 2.0",
}
dependencies = {
"lua-resty-ctxdump = 0.1-0",
"lua-resty-dns-client = 6.0.2",
"lua-resty-template = 2.0",
"lua-resty-etcd = 1.6.0",
"api7-lua-resty-http = 0.2.0",
"lua-resty-balancer = 0.04",
"lua-resty-ngxvar = 0.5.2",
"lua-resty-jit-uuid = 0.0.7",
"lua-resty-healthcheck-api7 = 2.2.0",
"api7-lua-resty-jwt = 0.2.4",
"lua-resty-hmac-ffi = 0.05",
"lua-resty-cookie = 0.1.0",
"lua-resty-session = 2.24",
"opentracing-openresty = 0.1",
"lua-resty-radixtree = 2.8.1",
"lua-protobuf = 0.3.4",
"lua-resty-openidc = 1.7.2-1",
"luafilesystem = 1.7.0-2",
"api7-lua-tinyyaml = 0.4.2",
"nginx-lua-prometheus = 0.20220127",
"jsonschema = 0.9.8",
"lua-resty-ipmatcher = 0.6.1",
"lua-resty-kafka = 0.07",
"lua-resty-logger-socket = 2.0-0",
"skywalking-nginx-lua = 0.6.0",
"base64 = 1.5-2",
"binaryheap = 0.4",
"api7-dkjson = 0.1.1",
"resty-redis-cluster = 1.02-4",
"lua-resty-expr = 1.3.1",
"graphql = 0.0.2",
"argparse = 0.7.1-1",
"luasocket = 3.0rc1-2",
"luasec = 0.9-1",
"lua-resty-consul = 0.3-2",
"penlight = 1.9.2-1",
"ext-plugin-proto = 0.4.0",
"casbin = 1.41.1",
"api7-snowflake = 2.0-1",
"inspect == 3.1.1",
"lualdap = 1.2.6-1",
"lua-resty-rocketmq = 0.3.0-0",
"opentelemetry-lua = 0.1-3",
"net-url = 0.9-1",
"xml2lua = 1.5-2",
}
build = {
type = "make",
build_variables = {
CFLAGS="$(CFLAGS)",
LIBFLAG="$(LIBFLAG)",
LUA_LIBDIR="$(LUA_LIBDIR)",
LUA_BINDIR="$(LUA_BINDIR)",
LUA_INCDIR="$(LUA_INCDIR)",
LUA="$(LUA)",
OPENSSL_INCDIR="$(OPENSSL_INCDIR)",
OPENSSL_LIBDIR="$(OPENSSL_LIBDIR)",
},
install_variables = {
ENV_INST_PREFIX="$(PREFIX)",
ENV_INST_BINDIR="$(BINDIR)",
ENV_INST_LIBDIR="$(LIBDIR)",
ENV_INST_LUADIR="$(LUADIR)",
ENV_INST_CONFDIR="$(CONFDIR)",
},
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment