This is an automated email from the ASF dual-hosted git repository.
chenjunxu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git
The following commit(s) were added to refs/heads/master by this push:
new 027eb0a release: new version 2.5 (#1659)
027eb0a is described below
commit 027eb0aaac97ef1fddd4791ee2a6aae3bb7268c2
Author: nic-chen <[email protected]>
AuthorDate: Tue Mar 30 14:11:58 2021 +0800
release: new version 2.5 (#1659)
---
CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++
api/VERSION | 2 +-
api/internal/utils/consts/versionMap.go | 1 +
docs/en/latest/deploy.md | 2 +-
docs/en/latest/develop.md | 2 +-
web/package.json | 2 +-
6 files changed, 37 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d4713d..869afa3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,7 @@
# Table of Contents
+- [2.5.0](#250)
- [2.4.0](#240)
- [2.3.0](#230)
- [2.2.0](#220)
@@ -28,6 +29,37 @@
- [1.5.0](#150)
- [1.0.0](#100)
+# 2.5.0
+
+This release mainly improves basic features, bugfix and adds test cases.
+
+`Manager API` 2.5 should be used with [Apache APISIX
2.4](https://github.com/apache/apisix/releases/tag/2.4). It is not recommended
to use with other Apache APISIX versions.
+
+### Core
+
+- Feat: add rawDataEditor for route, consumer, upstream and service
[#1505](https://github.com/apache/apisix-dashboard/pull/1505)
+- Feat: online debugging supports file transfer
[#1465](https://github.com/apache/apisix-dashboard/pull/1465)
+- Feat: support etcd prefix as apisix does
[#1477](https://github.com/apache/apisix-dashboard/pull/1477)
+- Feat: support changing number of executing cpu cores for manager api
[#1569](https://github.com/apache/apisix-dashboard/pull/1569)
+- Feat: support plugin template config feature
[#1540](https://github.com/apache/apisix-dashboard/pull/1540)
+- Feat: improve UI and UE
([#1491](https://github.com/apache/apisix-dashboard/pull/1491),
[#1481](https://github.com/apache/apisix-dashboard/pull/1481),
[#1479](https://github.com/apache/apisix-dashboard/pull/1479),
[#1472](https://github.com/apache/apisix-dashboard/pull/1472),
[#1604](https://github.com/apache/apisix-dashboard/pull/1604),
[#1603](https://github.com/apache/apisix-dashboard/pull/1603),
[#1589](https://github.com/apache/apisix-dashboard/pull/1589),
[#1538](https://github.c [...]
+- Feat: support yaml to config plugin in plugin config page
[#1490](https://github.com/apache/apisix-dashboard/pull/1490)
+
+### Bugfix
+
+- Fix: check name exists when creating or updating a resource
[#1606](https://github.com/apache/apisix-dashboard/pull/1606)
+- Fix: cannot unmarshal array into go value of type
[#1527](https://github.com/apache/apisix-dashboard/pull/1527)
+- Fix: change the appended Content-type data to overlay to ensure that the
Content-type is unique
[#1619](https://github.com/apache/apisix-dashboard/pull/1619)
+
+### Test Case
+
+- Test: add the create and delete plugin in drawer
[#1597](https://github.com/apache/apisix-dashboard/pull/1597)
+- Test: write backend e2e with ginkgo
([#1501](https://github.com/apache/apisix-dashboard/pull/1501),
[#1502](https://github.com/apache/apisix-dashboard/pull/1502),
[#1504](https://github.com/apache/apisix-dashboard/pull/1504),
[#1518](https://github.com/apache/apisix-dashboard/pull/1518),
[#1526](https://github.com/apache/apisix-dashboard/pull/1526),
[#1545](https://github.com/apache/apisix-dashboard/pull/1545),
[#1550](https://github.com/apache/apisix-dashboard/pull/1550), [#1556](http
[...]
+
+### Doc
+
+- Docs: Updating docs for backend tests
[#1625](https://github.com/apache/apisix-dashboard/pull/1625)
+
# 2.4.0
This release mainly improves basic features, bugfix and adds test cases.
diff --git a/api/VERSION b/api/VERSION
index 6b4950e..95e3ba8 100644
--- a/api/VERSION
+++ b/api/VERSION
@@ -1 +1 @@
-2.4
+2.5
diff --git a/api/internal/utils/consts/versionMap.go
b/api/internal/utils/consts/versionMap.go
index a1c8235..2cd5957 100644
--- a/api/internal/utils/consts/versionMap.go
+++ b/api/internal/utils/consts/versionMap.go
@@ -23,4 +23,5 @@ package consts
var VersionMap = map[string]string{
"2.3": "2.2",
"2.4": "2.3",
+ "2.5": "2.4",
}
diff --git a/docs/en/latest/deploy.md b/docs/en/latest/deploy.md
index b841544..34fb0db 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 v2.4 https://github.com/apache/apisix-dashboard.git
+$ git clone -b release/2.5 https://github.com/apache/apisix-dashboard.git
```
## Build
diff --git a/docs/en/latest/develop.md b/docs/en/latest/develop.md
index 260799b..2ba9ca4 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 v2.4 https://github.com/apache/apisix-dashboard.git
+$ git clone -b release/2.5 https://github.com/apache/apisix-dashboard.git
```
## Start developing
diff --git a/web/package.json b/web/package.json
index e04d11b..a98a193 100644
--- a/web/package.json
+++ b/web/package.json
@@ -1,6 +1,6 @@
{
"name": "apisix-dashboard",
- "version": "2.4.0",
+ "version": "2.5.0",
"private": true,
"description": "Dashboard for Apache APISIX",
"scripts": {