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/08 01:15:29 UTC

[apisix-docker] branch master updated: feat: upgrade APISIX Dashboard to 2.8 (#214)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ae8082f  feat: upgrade APISIX Dashboard to 2.8 (#214)
ae8082f is described below

commit ae8082fed17e03e72d9b7258f88f8a3efb9cc9a9
Author: liuxiran <be...@126.com>
AuthorDate: Wed Sep 8 09:15:21 2021 +0800

    feat: upgrade APISIX Dashboard to 2.8 (#214)
---
 .github/workflows/dashboard-docker-test.yaml | 2 +-
 Makefile                                     | 2 +-
 README.md                                    | 2 +-
 dashboard/Dockerfile                         | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/dashboard-docker-test.yaml b/.github/workflows/dashboard-docker-test.yaml
index 3326d03..3b531bb 100644
--- a/.github/workflows/dashboard-docker-test.yaml
+++ b/.github/workflows/dashboard-docker-test.yaml
@@ -13,7 +13,7 @@ jobs:
     name: build dashboard & test
     runs-on: ubuntu-latest
     env:
-      APISIX_DASHBOARD_TAG: 2.7.1
+      APISIX_DASHBOARD_TAG: 2.8
     steps:
       - name: Checkout
         uses: actions/checkout@v2
diff --git a/Makefile b/Makefile
index 1dc511c..41759e9 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ APISIX_VERSION ?= 2.9
 IMAGE_NAME = apache/apisix
 IMAGE_TAR_NAME = apache_apisix
 
-APISIX_DASHBOARD_VERSION ?= 2.7.1
+APISIX_DASHBOARD_VERSION ?= 2.8
 APISIX_DASHBOARD_IMAGE_NAME = apache/apisix-dashboard
 APISIX_DASHBOARD_IMAGE_TAR_NAME = apache_apisix_dashboard
 
diff --git a/README.md b/README.md
index 9b51902..9c626cb 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,7 @@ $ docker run -v `pwd`/all-in-one/apisix/config.yaml:/usr/local/apisix/conf/confi
 
 * All in one Docker container for Apache apisix-dashboard
 
-**The latest version of `apisix-dashboard` is 2.7 and should be used with APISIX 2.6.**
+**The latest version of `apisix-dashboard` is 2.8 and can be used with APISIX 2.9.**
 
 ```shell
 $ make build-dashboard
diff --git a/dashboard/Dockerfile b/dashboard/Dockerfile
index 440299a..158adfa 100644
--- a/dashboard/Dockerfile
+++ b/dashboard/Dockerfile
@@ -16,7 +16,7 @@
 #
 FROM alpine:latest as pre-build
 
-ARG APISIX_DASHBOARD_VERSION=release/2.7.1
+ARG APISIX_DASHBOARD_VERSION=release/2.8
 
 RUN set -x \
     && apk add --no-cache --virtual .builddeps git \