Skip to content

Commit

Permalink
feat: release APISIX 3.5.0 (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlinsRan authored Sep 5, 2023
1 parent 15490a7 commit bc7c398
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/apisix-docker-example-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- 'release/apisix-2.15.**'

env:
APISIX_VERSION: "3.4.1"
APISIX_VERSION: "3.5.0"

jobs:
prepare:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/apisix_push_docker_hub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- debian
- redhat
env:
APISIX_DOCKER_TAG: 3.4.1-${{ matrix.platform }}
APISIX_DOCKER_TAG: 3.5.0-${{ matrix.platform }}

steps:
- name: Check out the repo
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ SHELL := bash


# APISIX ARGS
APISIX_VERSION ?= 3.4.1
MAX_APISIX_VERSION ?= 3.4.1
APISIX_VERSION ?= 3.5.0
MAX_APISIX_VERSION ?= 3.5.0
IMAGE_NAME = apache/apisix
IMAGE_TAR_NAME = apache_apisix

Expand Down
2 changes: 1 addition & 1 deletion centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

FROM centos:7

ARG APISIX_VERSION=3.4.1
ARG APISIX_VERSION=3.5.0
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
2 changes: 1 addition & 1 deletion debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

FROM debian:bullseye-slim

ARG APISIX_VERSION=3.4.1
ARG APISIX_VERSION=3.5.0

RUN set -ex; \
arch=$(dpkg --print-architecture); \
Expand Down
2 changes: 1 addition & 1 deletion example/docker-compose-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
apisix:

apisix:
image: apache/apisix:3.4.1-debian
image: apache/apisix:3.5.0-debian
restart: always
volumes:
- ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
Expand Down
2 changes: 1 addition & 1 deletion example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
apisix:

apisix:
image: apache/apisix:${APISIX_IMAGE_TAG:-3.4.1-debian}
image: apache/apisix:${APISIX_IMAGE_TAG:-3.5.0-debian}
restart: always
volumes:
- ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro
Expand Down
2 changes: 1 addition & 1 deletion redhat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

FROM registry.access.redhat.com/ubi8/ubi:8.6

ARG APISIX_VERSION=3.4.1
ARG APISIX_VERSION=3.5.0
LABEL apisix_version="${APISIX_VERSION}"
COPY ./yum.repos.d/apache-apisix.repo /etc/yum.repos.d/apache-apisix.repo
COPY ./yum.repos.d/openresty.repo /etc/yum.repos.d/openresty.repo
Expand Down

0 comments on commit bc7c398

Please sign in to comment.