You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by sh...@apache.org on 2020/08/01 01:50:08 UTC

[apisix] branch v1.5 updated: release: updated 1.5 version CHANGELOG.

This is an automated email from the ASF dual-hosted git repository.

shuaijinchao pushed a commit to branch v1.5
in repository https://gitbox.apache.org/repos/asf/apisix.git


The following commit(s) were added to refs/heads/v1.5 by this push:
     new 48e07b0  release: updated 1.5 version CHANGELOG.
48e07b0 is described below

commit 48e07b0f015377cf1624bf4268fd591f08465735
Author: Janko <sh...@gmail.com>
AuthorDate: Sat Aug 1 09:49:40 2020 +0800

    release: updated 1.5 version CHANGELOG.
---
 CHANGELOG.md    | 6 ++++++
 CHANGELOG_CN.md | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0a5424a..c84b757 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -52,6 +52,7 @@
 - change: add comments for Makefile `install` command. [1912](https://github.com/apache/incubator-apisix/pull/1912)
 - change: update comment for config.yaml `etcd.timeout` configuration. [1929](https://github.com/apache/incubator-apisix/pull/1929)
 - change: add more prometheus metrics. [1888](https://github.com/apache/incubator-apisix/pull/1888)
+- change: add more configuration options for `cors` plugin. [1963](https://github.com/apache/incubator-apisix/pull/1963)
 
 ### Bugfix
 - fixed: failed to get `host` in health check configuration. [1871](https://github.com/apache/incubator-apisix/pull/1871)
@@ -60,6 +61,9 @@
 - fixed: read the request body from the temporary file if it was cached. [1863](https://github.com/apache/incubator-apisix/pull/1863)
 - fixed: batch processor name and error return type. [1927](https://github.com/apache/incubator-apisix/pull/1927)
 - fixed: failed to read redis.ttl in `limit-count` plugin. [1928](https://github.com/apache/incubator-apisix/pull/1928)
+- fixed: passive health check seems never provide a healthy report. [1918](https://github.com/apache/incubator-apisix/pull/1918)
+- fixed: avoid to modify the original plugin conf. [1958](https://github.com/apache/incubator-apisix/pull/1958)
+- fixed: the test case of `invalid-upstream` is unstable and sometimes fails to run. [1925](https://github.com/apache/incubator-apisix/pull/1925) 
 
 ### Doc
 - doc: added APISIX Lua Coding Style Guide. [1874](https://github.com/apache/incubator-apisix/pull/1874)
@@ -72,6 +76,8 @@
 - doc: add `request-validation` plugin chinese document. [1932](https://github.com/apache/incubator-apisix/pull/1932)
 - doc: fixed file path of `gRPC transcoding` in `README`. [1945](https://github.com/apache/incubator-apisix/pull/1945)
 - doc: fixed `uri-blocker` plugin path error in `README`. [1950](https://github.com/apache/incubator-apisix/pull/1950)
+- doc: fixed `grpc-transcode` plugin path error in `README`. [1946](https://github.com/apache/incubator-apisix/pull/1946)
+- doc: removed unnecessary configurations for `k8s` document. [1891](https://github.com/apache/incubator-apisix/pull/1891)
 
 
 ## 1.4.1
diff --git a/CHANGELOG_CN.md b/CHANGELOG_CN.md
index 16c03ec..43ee6ae 100644
--- a/CHANGELOG_CN.md
+++ b/CHANGELOG_CN.md
@@ -51,6 +51,7 @@
 - 变更:为 Makefile `install` 命令添加注释。[1912](https://github.com/apache/incubator-apisix/pull/1912)
 - 变更:更新 config.yaml `etcd.timeout` 默认配置的注释。[1929](https://github.com/apache/incubator-apisix/pull/1929)
 - 变更:为 `prometheus` 添加更多度量指标,以更好地了解 `APISIX` 节点的情况。[1888](https://github.com/apache/incubator-apisix/pull/1888)
+- 变更:为 `cors` 插件添加更多配置选项。[1963](https://github.com/apache/incubator-apisix/pull/1963)
 
 ### Bugfix
 - 修复:`healthcheck` 获取 `host` 配置失败。 [1871](https://github.com/apache/incubator-apisix/pull/1871)
@@ -59,6 +60,9 @@
 - 修复:从临时文件读取请求正文(如果已缓存)。[1863](https://github.com/apache/incubator-apisix/pull/1863)
 - 修复:批处理器名称和错误返回类型。[1927](https://github.com/apache/incubator-apisix/pull/1927)
 - 修复:`limit-count` 插件 `redis.ttl` 读取异常。[1928](https://github.com/apache/incubator-apisix/pull/1928)
+- 修复:被动健康检查不能提供健康报告。[1918](https://github.com/apache/incubator-apisix/pull/1918)
+- 修复:避免插件中直接修改或使用原始配置数据。[1958](https://github.com/apache/incubator-apisix/pull/1958)
+- 修复:`invalid-upstream` 测试用例稳定性问题。[1925](https://github.com/apache/incubator-apisix/pull/1925)
 
 ### Doc
 - 文档:添加 `APISIX Lua` 代码风格指南。[1874](https://github.com/apache/incubator-apisix/pull/1874)
@@ -71,6 +75,8 @@
 - 文档:添加 `request-validation` 插件中文文档。[1932](https://github.com/apache/incubator-apisix/pull/1932)
 - 文档:修正 `README` 中 `gRPC transcoding` 文档路径。[1945](https://github.com/apache/incubator-apisix/pull/1945)
 - 文档:修正 `README` 中 `uri-blocker` 文档路径。[1950](https://github.com/apache/incubator-apisix/pull/1950)
+- 文档:修正 `README` 中 `grpc-transcode` 文档路径。[1946](https://github.com/apache/incubator-apisix/pull/1946)
+- 文档: 删除 `k8s` 文档中不必要的配置。[1891](https://github.com/apache/incubator-apisix/pull/1891)
 
 
 ## 1.4.1