You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by li...@apache.org on 2021/10/03 15:22:32 UTC

[apisix-dashboard] 01/01: feat: release 2.9.0

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

liuxiran pushed a commit to branch release/2.9.0
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git

commit 6717e1bdfc8bf48fb0fae9ed5361bb04d82e67b9
Author: liuxiran <be...@126.com>
AuthorDate: Sun Oct 3 23:21:38 2021 +0800

    feat: release 2.9.0
---
 CHANGELOG.md                      | 26 ++++++++++++++++++++++++++
 README.md                         |  2 +-
 api/VERSION                       |  2 +-
 docs/en/latest/config.json        |  2 +-
 docs/en/latest/deploy-with-rpm.md |  2 +-
 docs/en/latest/deploy.md          |  2 +-
 docs/en/latest/develop.md         |  2 +-
 web/package.json                  |  2 +-
 8 files changed, 33 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index d50663a..2ab392c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,7 @@
 
 # Table of Contents
 
+- [2.9.0](#290)
 - [2.8.0](#280)
 - [2.7.1](#271)
 - [2.7.0](#270)
@@ -34,6 +35,31 @@
 - [1.5.0](#150)
 - [1.0.0](#100)
 
+# 2.9.0
+
+This release contains some features and bugfixes, and all the existing functionalities are compatible with Apache APISIX 2.10.0.
+
+### Core
+
+- feat(plugin): allowing basic-auth to dynamically adapt to the BE rules [#2086](https://github.com/apache/apisix-dashboard/pull/2149)
+- feat(plugin): allowing referer-restriction to dynamically adapt to the BE rules [#2001](https://github.com/apache/apisix-dashboard/pull/2001)
+- refactor: migrate to viper configure manage [#1946](https://github.com/apache/apisix-dashboard/pull/1946)
+- feat: basic support Apache APISIX 2.10 [#2149](https://github.com/apache/apisix-dashboard/pull/2149)
+
+### Bugfix
+
+- fix: supports search by name for service options when add router. [#2066](https://github.com/apache/apisix-dashboard/pull/2066)
+- fix: gzip plugin schema typo [#2142](https://github.com/apache/apisix-dashboard/pull/2142)
+
+### Docs
+
+- docs: Update FAQ about Grafana can't login when APISIX dashboard configured domain name [#2126](https://github.com/apache/apisix-dashboard/pull/2126)
+
+### CI
+
+- ci: Only upload artifact at the release/** branch [#2137](https://github.com/apache/apisix-dashboard/pull/2137)
+- ci: optimize build rpm workflow with apisix-build-tools v2.2.0 [#2133](https://github.com/apache/apisix-dashboard/pull/2133)
+
 # 2.8.0
 
 This release contains some features and bugfixes, and all the existing functionalities are compatible with Apache APISIX 2.9.
diff --git a/README.md b/README.md
index ca8546f..fdb7d34 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@
 
 - The master version should be used with Apache APISIX master version.
 
-- The latest released version is [2.8.0](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 2.9](https://apisix.apache.org/downloads/).
+- The latest released version is [2.9.0](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 2.10.0](https://apisix.apache.org/downloads/).
 
 ## What's Apache APISIX Dashboard
 
diff --git a/api/VERSION b/api/VERSION
index 834f262..c8e38b6 100644
--- a/api/VERSION
+++ b/api/VERSION
@@ -1 +1 @@
-2.8.0
+2.9.0
diff --git a/docs/en/latest/config.json b/docs/en/latest/config.json
index 26f2f31..73bbd82 100644
--- a/docs/en/latest/config.json
+++ b/docs/en/latest/config.json
@@ -1,5 +1,5 @@
 {
-  "version": 2.8,
+  "version": "2.9.0",
   "sidebar": [
     {
       "type": "category",
diff --git a/docs/en/latest/deploy-with-rpm.md b/docs/en/latest/deploy-with-rpm.md
index ef861f3..49d1308 100644
--- a/docs/en/latest/deploy-with-rpm.md
+++ b/docs/en/latest/deploy-with-rpm.md
@@ -26,7 +26,7 @@ title: Deploy with RPM
 ## Install from RPM
 
 ```sh
-$ sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.8/apisix-dashboard-2.8.0-0.el7.x86_64.rpm
+$ sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.9.0/apisix-dashboard-2.9.0-0.el7.x86_64.rpm
 ```
 
 ## Run
diff --git a/docs/en/latest/deploy.md b/docs/en/latest/deploy.md
index 78a3575..47b7f51 100644
--- a/docs/en/latest/deploy.md
+++ b/docs/en/latest/deploy.md
@@ -45,7 +45,7 @@ $ go env -w GOPROXY=https://goproxy.cn,direct
 ## Clone the project
 
 ```sh
-$ git clone -b release/2.7 https://github.com/apache/apisix-dashboard.git
+$ git clone -b release/2.9.0 https://github.com/apache/apisix-dashboard.git
 ```
 
 ## Build
diff --git a/docs/en/latest/develop.md b/docs/en/latest/develop.md
index 47bc507..b0102fe 100644
--- a/docs/en/latest/develop.md
+++ b/docs/en/latest/develop.md
@@ -30,7 +30,7 @@ Before development, refer to this [guide](./deploy.md) to install dependencies.
 ## Clone the project
 
 ```sh
-$ git clone -b release/2.8 https://github.com/apache/apisix-dashboard.git
+$ git clone -b release/2.9.0 https://github.com/apache/apisix-dashboard.git
 ```
 
 ## Start developing
diff --git a/web/package.json b/web/package.json
index c70ef9f..7522c6f 100644
--- a/web/package.json
+++ b/web/package.json
@@ -1,6 +1,6 @@
 {
   "name": "apisix-dashboard",
-  "version": "2.8.0",
+  "version": "2.9.0",
   "private": true,
   "description": "Dashboard for Apache APISIX",
   "scripts": {