This is an automated email from the ASF dual-hosted git repository. chenjunxu pushed a commit to branch release/2.5 in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git
The following commit(s) were added to refs/heads/release/2.5 by this push: new d1241c3 release: new version 2.5 d1241c3 is described below commit d1241c370abe7336ac0a464f4070f699841260b8 Author: nic-chen <j...@163.com> AuthorDate: Tue Mar 23 23:46:19 2021 +0800 release: new version 2.5 --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ api/internal/utils/consts/versionMap.go | 1 + 2 files changed, 33 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d4713d..e848282 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) +- Feat: online debugging supports file transfer (#1465) +- Feat: support etcd prefix as apisix does (#1477) +- Feat: support changing number of executing cpu cores for manager api (#1569) +- Feat: support plugin template config feature (#1540) +- Feat: improve UI and UE (#1491, #1481, #1479, #1472, #1604, #1603, #1589, #1538, #1580, #1651, #1634, #1641) +- Feat: support yaml to config plugin in plugin config page (#1490) + +### Bugfix + +- Fix: check name exists when creating or updating a resource (#1606) +- Fix: cannot unmarshal array into go value of type (#1527) +- Fix: change the appended Content-type data to overlay to ensure that the Content-type is unique (#1619) + +### Test Case + +- Test: add the create and delete plugin in drawer (#1597) +- Test: write backend e2e with ginkgo (#1501, #1502, #1504, #1518, #1526, #1545, #1550, #1556, #1560, #1561, #1570, #1582, #1593, #1613, ) + +### Doc + +- Docs: Updating docs for backend tests (#1625) + # 2.4.0 This release mainly improves basic features, bugfix and adds test cases. 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", }