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

[incubator-apisix] branch master updated: doc: added changelog for 1.0 release. (#1015)

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

wenming pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-apisix.git


The following commit(s) were added to refs/heads/master by this push:
     new 7c4ecb5  doc: added changelog for 1.0 release. (#1015)
7c4ecb5 is described below

commit 7c4ecb5a9e540c109caf590009b6d4bcfd163fe1
Author: WenMing <mo...@gmail.com>
AuthorDate: Fri Jan 3 15:31:29 2020 +0800

    doc: added changelog for 1.0 release. (#1015)
---
 CHANGELOG.md    | 26 ++++++++++++++++++++++++++
 CHANGELOG_CN.md | 26 ++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index fc4cc9c..55b1263 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,11 +19,37 @@
 
 # Table of Contents
 
+- [1.0.0](#100)
 - [0.9.0](#090)
 - [0.8.0](#080)
 - [0.7.0](#070)
 - [0.6.0](#060)
 
+## 1.0.0
+
+This release is mainly to strengthen the stability of the code and add more documentation.
+
+### Core
+- :sunrise: Support routing priority. You can match different upstream services based on conditions such as header, args, priority, etc. under the same URI. [#998](https://github.com/apache/incubator-apisix/pull/998)
+- When no route is matched, an error message is returned. To distinguish it from other 404 requests. [#1013](https://github.com/apache/incubator-apisix/pull/1013)
+- The address of the dashboard `/apisix/admin` supports CORS. [#982](https://github.com/apache/incubator-apisix/pull/982)
+- The jsonschema validator returns a clearer error message. [#1011](https://github.com/apache/incubator-apisix/pull/1011)
+- Upgrade the `ngx_var` module to version 0.5. [#1005](https://github.com/apache/incubator-apisix/pull/1005)
+- Upgrade the `lua-resty-etcd` module to version 0.8. [#980](https://github.com/apache/incubator-apisix/pull/980)
+- In development mode, the number of workers is automatically adjusted to 1. [#926](https://github.com/apache/incubator-apisix/pull/926)
+- Remove the nginx.conf file from the code repository. It is automatically generated every time and cannot be modified manually. [#974](https://github.com/apache/incubator-apisix/pull/974)
+
+### Doc
+- Added documentation on how to customize development plugins. [#909](https://github.com/apache/incubator-apisix/pull/909)
+- fixed example's bugs in the serverless plugin documentation. [#1006](https://github.com/apache/incubator-apisix/pull/1006)
+- Added documentation for using the Oauth plugin. [#987](https://github.com/apache/incubator-apisix/pull/987)
+- Added dashboard compiled documentation. [#985](https://github.com/apache/incubator-apisix/pull/985)
+- Added documentation on how to perform a/b testing. [#957](https://github.com/apache/incubator-apisix/pull/957)
+- Added documentation on how to enable the MQTT plugin. [#916](https://github.com/apache/incubator-apisix/pull/916)
+
+### Test case
+- Add test cases for key-auth plugin under normal circumstances. [#964](https://github.com/apache/incubator-apisix/pull/964/)
+- Added tests for gRPC transcode pb options. [#920](https://github.com/apache/incubator-apisix/pull/920)
 
 ## 0.9.0
 
diff --git a/CHANGELOG_CN.md b/CHANGELOG_CN.md
index aaa8745..9527f42 100644
--- a/CHANGELOG_CN.md
+++ b/CHANGELOG_CN.md
@@ -19,11 +19,37 @@
 
 # Table of Contents
 
+- [1.0.0](#100)
 - [0.9.0](#090)
 - [0.8.0](#080)
 - [0.7.0](#070)
 - [0.6.0](#060)
 
+## 1.0.0
+
+这个版本主要是加强代码的稳定性,以及增加更多的文档。
+
+### Core
+- :sunrise: 支持路由的优先级。可以在 URI 相同的条件下,根据 header、args、优先级等条件,来匹配到不同的上游服务。 [#998](https://github.com/apache/incubator-apisix/pull/998)
+- 在没有匹配到任何路由的时候,返回错误信息。以便和其他的 404 请求区分开。[#1013](https://github.com/apache/incubator-apisix/pull/1013)
+- dashboard 的地址 `/apisix/admin` 支持 CORS。[#982](https://github.com/apache/incubator-apisix/pull/982)
+- jsonschema 校验器返回更清晰的错误提示。[#1011](https://github.com/apache/incubator-apisix/pull/1011)
+- 升级 `ngx_var` 模块到 0.5 版本。[#1005](https://github.com/apache/incubator-apisix/pull/1005)
+- 升级 `lua-resty-etcd` 模块到 0.8 版本。[#980](https://github.com/apache/incubator-apisix/pull/980)
+- 在开发模式下,自动把 worker 数调整为 1。[#926](https://github.com/apache/incubator-apisix/pull/926)
+- 从代码仓库中移除 nginx.conf 文件,它每次都会自动生成,不可手工修改。[#974](https://github.com/apache/incubator-apisix/pull/974)
+
+### Doc
+- 增加如何自定义开发插件的文档。[#909](https://github.com/apache/incubator-apisix/pull/909)
+- 修复 serverless 插件文档中错误的示例。[#1006](https://github.com/apache/incubator-apisix/pull/1006)
+- 增加 Oauth 插件的使用文档。[#987](https://github.com/apache/incubator-apisix/pull/987)
+- 增加 dashboard 编译的文档。[#985](https://github.com/apache/incubator-apisix/pull/985)
+- 增加如何进行 a/b 测试的文档。[#957](https://github.com/apache/incubator-apisix/pull/957)
+- 增加如何开启 MQTT 插件的文档。[#916](https://github.com/apache/incubator-apisix/pull/916)
+
+### Test case
+- 增加 key-auth 插件正常情况下的测试案例。[#964](https://github.com/apache/incubator-apisix/pull/964/)
+- 增加 grpc transcode pb 选项的测试。[#920](https://github.com/apache/incubator-apisix/pull/920)
 
 ## 0.9.0