feat: release 2.13 (#2458)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7222455..518afa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -19,6 +19,7 @@ # Table of Contents +- [2.13.0](#2130) - [2.11.0](#2110) - [2.10.1](#2101) - [2.10.0](#2100) @@ -38,6 +39,42 @@ - [1.5.0](#150) - [1.0.0](#100) +# 2.13.0 + +This release contains some features and bugfixes, and all the existing functionalities are compatible with Apache APISIX 2.13.x. + +Notice: Starting with this release, Apache APISIX Dashboard will use the same version number as the Apache APISIX it supports. + +### Core + +- feat: add security header [#2341](https://github.com/apache/apisix-dashboard/pull/2341) +- feat: storage grafana path in to etcd [#2362](https://github.com/apache/apisix-dashboard/pull/2362) +- feat: Modify plugin preview page [#2359](https://github.com/apache/apisix-dashboard/pull/2359) +- feat: support Turkish Language [#2452](https://github.com/apache/apisix-dashboard/pull/2452) +- feat: add page reload judgment [#2370](https://github.com/apache/apisix-dashboard/pull/2370) +- feat: basic support Apache APISIX 2.13.0 [#2428](https://github.com/apache/apisix-dashboard/pull/2428) +- chore: use json schema instead hard code [#2399](https://github.com/apache/apisix-dashboard/pull/2399) +- chore: update README for online demo [#2404](https://github.com/apache/apisix-dashboard/pull/2404) +- docs: update online playground url [#2416](https://github.com/apache/apisix-dashboard/pull/2416) +- chore: update the year of copyright and fix typo [#2417](https://github.com/apache/apisix-dashboard/pull/2417) + +### Bugfix + +- fix: format error in changelog [#2378](https://github.com/apache/apisix-dashboard/pull/2378) +- fix: caller location error in logs [#2367](https://github.com/apache/apisix-dashboard/pull/2367) +- fix(import routes): merge route when route have the same name [#2330](https://github.com/apache/apisix-dashboard/pull/2330) +- fix: consumer without plugins causes page crashes [#2437](https://github.com/apache/apisix-dashboard/pull/2437) +- fix: correct data type of filed Active.checks.active.https_verify_certificate [#2422](https://github.com/apache/apisix-dashboard/pull/2422) +- fix: create upstream error when pass host is node and nodes without port [#2421](https://github.com/apache/apisix-dashboard/pull/2421) +- docs: fix invalid link [#2366](https://github.com/apache/apisix-dashboard/pull/2366) +- docs: Remove hyperlinks from documents [#2431](https://github.com/apache/apisix-dashboard/pull/2431) +- docs: Update RPM install package link [#2439](https://github.com/apache/apisix-dashboard/pull/2439) + +### Test + +- refactor: migrate id compatible tests to e2enew [#2400](https://github.com/apache/apisix-dashboard/pull/2400) +- refactor: migrate route tests to e2enew [#2411](https://github.com/apache/apisix-dashboard/pull/2411) + # 2.11.0 This release contains some features and bugfixes, and all the existing functionalities are compatible with Apache APISIX 2.12.1.
diff --git a/README.md b/README.md index 99fcca6..d04b9a8 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.11.0](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 2.12.1](https://apisix.apache.org/downloads/). +- The latest released version is [2.13.0](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 2.13.x](https://apisix.apache.org/downloads/). ## What's Apache APISIX Dashboard
diff --git a/api/VERSION b/api/VERSION index 46b81d8..fb2c076 100644 --- a/api/VERSION +++ b/api/VERSION
@@ -1 +1 @@ -2.11.0 +2.13.0
diff --git a/docs/en/latest/config.json b/docs/en/latest/config.json index cad792f..09a2040 100644 --- a/docs/en/latest/config.json +++ b/docs/en/latest/config.json
@@ -1,5 +1,5 @@ { - "version": "2.11.0", + "version": "2.13.0", "sidebar": [ { "type": "category",
diff --git a/docs/en/latest/develop.md b/docs/en/latest/develop.md index 51b695a..0f35b06 100644 --- a/docs/en/latest/develop.md +++ b/docs/en/latest/develop.md
@@ -30,7 +30,7 @@ ## Clone the project ```sh -$ git clone -b release/2.11.0 https://github.com/apache/apisix-dashboard.git +$ git clone -b release/2.13 https://github.com/apache/apisix-dashboard.git ``` ## Start developing
diff --git a/docs/en/latest/install.md b/docs/en/latest/install.md index f1063cb..c9e8b53 100644 --- a/docs/en/latest/install.md +++ b/docs/en/latest/install.md
@@ -48,7 +48,7 @@ ```shell # 1. install RPM package -sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.11/apisix-dashboard-2.11-0.el7.x86_64.rpm +sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.13/apisix-dashboard-2.13-0.el7.x86_64.rpm ``` ### Launch @@ -91,7 +91,7 @@ ### Download {#source-download} ```shell -git clone -b release/2.10.1 https://github.com/apache/apisix-dashboard.git && cd apisix-dashboard +git clone -b release/2.13 https://github.com/apache/apisix-dashboard.git && cd apisix-dashboard ``` ### Build {#source-build}
diff --git a/web/package.json b/web/package.json index 47ce2f3..ce0a938 100644 --- a/web/package.json +++ b/web/package.json
@@ -1,6 +1,6 @@ { "name": "apisix-dashboard", - "version": "2.11.0", + "version": "2.13.0", "private": true, "description": "Dashboard for Apache APISIX", "scripts": {