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: upgrade APISIX to 2.10.2 #247

Merged
merged 2 commits into from
Nov 22, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/apisix-docker-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
env:
APISIX_PATH: "./apisix-local"
APISIX_DOCKER_TAG: 2.10.1-${{ matrix.platform }}
APISIX_DOCKER_TAG: 2.10.2-${{ matrix.platform }}
steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


# APISIX ARGS
APISIX_VERSION ?= 2.10.1
APISIX_VERSION ?= 2.10.2
IMAGE_NAME = apache/apisix
IMAGE_TAR_NAME = apache_apisix

Expand Down
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG ENABLE_PROXY=false
# Build Apache APISIX
FROM api7/apisix-base:1.19.3.2.1 AS production-stage

ARG APISIX_VERSION=2.10.1
ARG APISIX_VERSION=2.10.2
LABEL apisix_version="${APISIX_VERSION}"

ARG ENABLE_PROXY
Expand Down
2 changes: 1 addition & 1 deletion centos/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM centos:7

ARG APISIX_VERSION=2.10.1.1
ARG APISIX_VERSION=2.10.2
LABEL apisix_version="${APISIX_VERSION}"

RUN yum install -y https://repos.apiseven.com/packages/centos/apache-apisix-repo-1.0-1.noarch.rpm \
Expand Down