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/09/03 16:30:06 UTC

[apisix-dashboard] branch release/2.8 updated: feat: release 2.8.0

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

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


The following commit(s) were added to refs/heads/release/2.8 by this push:
     new 58a189e  feat: release 2.8.0
58a189e is described below

commit 58a189ece49097eab512b919c49f5e6408fe5215
Author: liuxiran <be...@126.com>
AuthorDate: Sat Sep 4 00:28:57 2021 +0800

    feat: release 2.8.0
---
 CHANGELOG.md                      | 31 +++++++++++++++++++++++++++++++
 README.md                         |  2 +-
 api/VERSION                       |  2 +-
 docs/en/latest/deploy-with-rpm.md |  2 +-
 docs/en/latest/develop.md         |  2 +-
 web/package.json                  |  2 +-
 6 files changed, 36 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 02917f6..d50663a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,7 @@
 
 # Table of Contents
 
+- [2.8.0](#280)
 - [2.7.1](#271)
 - [2.7.0](#270)
 - [2.6.1](#261)
@@ -33,6 +34,36 @@
 - [1.5.0](#150)
 - [1.0.0](#100)
 
+# 2.8.0
+
+This release contains some features and bugfixes, and all the existing functionalities are compatible with Apache APISIX 2.9.
+
+### Core
+
+- feat: add new route matching param position [#1984](https://github.com/apache/apisix-dashboard/pull/1984)
+- feat: add redis-cluster policy tips for limit-count [#2058](https://github.com/apache/apisix-dashboard/pull/2058)
+- feat: add service discovery config [#2081](https://github.com/apache/apisix-dashboard/pull/2081)
+- feat: Use build-tools v2.0.0 instead of master [#2083](https://github.com/apache/apisix-dashboard/pull/2083)
+- feat: basic support Apache APISIX 2.9 [#2117](https://github.com/apache/apisix-dashboard/pull/2117)
+- feat: upstream support FQDN [#2118](https://github.com/apache/apisix-dashboard/commit/1a0b12bf70489104cd996848ded19ad3bdc6902f)
+- feat: allowing api-breaker to dynamically adapt to the BE rules [#1974](https://github.com/apache/apisix-dashboard/pull/1974)
+- feat: allowing cors to dynamically adapt to the BE rules [#1994](https://github.com/apache/apisix-dashboard/pull/1994)
+- feat: allowing limit-count to dynamically adapt to the BE rules [#1998](https://github.com/apache/apisix-dashboard/pull/1998)
+- feat: allowing proxy-mirror to dynamically adapt to the BE rules [#2000](https://github.com/apache/apisix-dashboard/pull/2000)
+- feat: add cors method option [#2103](https://github.com/apache/apisix-dashboard/pull/2103)
+- feat: add el7 in package name [#2074](https://github.com/apache/apisix-dashboard/pull/2074)
+- feat: Bump apisix-build-tools to v2.1.0 [#2101](https://github.com/apache/apisix-dashboard/pull/2101)
+
+### Bugfix
+
+- fix: avoid nil pointer dereference in route export [#2061](https://github.com/apache/apisix-dashboard/pull/2061)
+- fix: after enable redirect HTTPS, websocket form field disappeared [#2115](https://github.com/apache/apisix-dashboard/pull/2115)
+- fix: make route name validate rules in Apisix Dashboard the same as Admin API [#2085](https://github.com/apache/apisix-dashboard/pull/2085)
+
+### Docs
+
+- docs: add how to integrate with grafana preview link [#1697](https://github.com/apache/apisix-dashboard/pull/1697)
+
 # 2.7.1
 
 This release contains some features and bugfixes, and all the existing functionalities are compatible with Apache APISIX 2.7.
diff --git a/README.md b/README.md
index 9073ca9..ca8546f 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.7.1](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 2.7](https://apisix.apache.org/downloads/).
+- 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/).
 
 ## What's Apache APISIX Dashboard
 
diff --git a/api/VERSION b/api/VERSION
index 860487c..834f262 100644
--- a/api/VERSION
+++ b/api/VERSION
@@ -1 +1 @@
-2.7.1
+2.8.0
diff --git a/docs/en/latest/deploy-with-rpm.md b/docs/en/latest/deploy-with-rpm.md
index d1e63c8..cdc62af 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.7.1/apisix-dashboard-2.7.1-0.x86_64.rpm
+$ sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.8.0/apisix-dashboard-2.8.0-0.x86_64.rpm
 ```
 
 ## Run
diff --git a/docs/en/latest/develop.md b/docs/en/latest/develop.md
index 66487a8..47bc507 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.7.1 https://github.com/apache/apisix-dashboard.git
+$ git clone -b release/2.8 https://github.com/apache/apisix-dashboard.git
 ```
 
 ## Start developing
diff --git a/web/package.json b/web/package.json
index 9486a7b..c70ef9f 100644
--- a/web/package.json
+++ b/web/package.json
@@ -1,6 +1,6 @@
 {
   "name": "apisix-dashboard",
-  "version": "2.7.1",
+  "version": "2.8.0",
   "private": true,
   "description": "Dashboard for Apache APISIX",
   "scripts": {