Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: release 2.16.0 #2719

Merged
merged 3 commits into from
Jan 27, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

# Table of Contents

- [2.16.0](#2160)
- [2.15.0](#2150)
- [2.14.0](#2140)
- [2.13.1](#2131)
Expand All @@ -42,6 +43,24 @@
- [1.5.0](#150)
- [1.0.0](#100)

## 2.16.0

### Core

- feat: basic support Apache APISIX 3.0.0 [#2701](https://github.com/apache/apisix-dashboard/pull/2701)
- feat: change etcd prefix for ssl and proto [#2693](https://github.com/apache/apisix-dashboard/pull/2693)

### Bugfix

- fix: remove cases external service dependency [#2697](https://github.com/apache/apisix-dashboard/pull/2697)
- fix: adapt APISIX plugin disabled [#2717](https://github.com/apache/apisix-dashboard/pull/2717)
- fix: plugin configuration lost in editor [#2718](https://github.com/apache/apisix-dashboard/pull/2718)

### Other

- chore: optimize "allow_origins_by_regex tooltip" description [#2690](https://github.com/apache/apisix-dashboard/pull/2690)
- chore: simplify e2e env [#2694](https://github.com/apache/apisix-dashboard/pull/2694)

## 2.15.0

### Core
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

- The master version should be used with Apache APISIX master version.

- The latest released version is [2.15.0](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 2.15.x](https://apisix.apache.org/downloads/).
- The latest released version is [2.16.0](https://apisix.apache.org/downloads/) and is compatible with [Apache APISIX 3.0.x](https://apisix.apache.org/downloads/).
juzhiyuan marked this conversation as resolved.
Show resolved Hide resolved

## What's Apache APISIX Dashboard

Expand Down
2 changes: 1 addition & 1 deletion api/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.15.0
2.16.0
2 changes: 1 addition & 1 deletion docs/en/latest/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.15.0",
"version": "2.16.0",
"sidebar": [
{
"type": "category",
Expand Down
2 changes: 1 addition & 1 deletion docs/en/latest/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Before development, refer to this [guide](./install.md) to install dependencies.
## Clone the project

```sh
$ git clone -b release/2.15 https://github.com/apache/apisix-dashboard.git
$ git clone -b release/2.16 https://github.com/apache/apisix-dashboard.git
```

## Start developing
Expand Down
4 changes: 2 additions & 2 deletions docs/en/latest/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Please replace `<CONFIG_FILE>` to your configure file path.

```shell
# 1. install RPM package
sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.15.0/apisix-dashboard-2.15.0-0.el7.x86_64.rpm
sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v2.16.0/apisix-dashboard-2.16.0-0.el7.x86_64.rpm
```

### Launch
Expand Down Expand Up @@ -91,7 +91,7 @@ For `web`:
### Download {#source-download}

```shell
git clone -b release/2.15 https://github.com/apache/apisix-dashboard.git && cd apisix-dashboard
git clone -b release/2.16 https://github.com/apache/apisix-dashboard.git && cd apisix-dashboard
```

### Build {#source-build}
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apisix-dashboard",
"version": "2.15.0",
"version": "2.16.0",
"private": true,
"description": "Dashboard for Apache APISIX",
"scripts": {
Expand Down