Skip to content

Commit e0a2c51

Browse files
authored
chore: release APISIX 3.12.0 (#585)
1 parent de2ab23 commit e0a2c51

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

.github/workflows/apisix-docker-example-test-standalone.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- 'release/apisix-2.15.**'
1515

1616
env:
17-
APISIX_VERSION: "3.11.0"
17+
APISIX_VERSION: "3.12.0"
1818

1919
jobs:
2020
prepare:

.github/workflows/apisix-docker-example-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- 'release/apisix-2.15.**'
1515

1616
env:
17-
APISIX_VERSION: "3.11.0"
17+
APISIX_VERSION: "3.12.0"
1818

1919
jobs:
2020
prepare:

.github/workflows/apisix_push_docker_hub.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- debian
1414
- redhat
1515
env:
16-
APISIX_DOCKER_TAG: 3.11.0-${{ matrix.platform }}
16+
APISIX_DOCKER_TAG: 3.12.0-${{ matrix.platform }}
1717

1818
steps:
1919
- name: Check out the repo

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ SHELL := bash
2121

2222

2323
# APISIX ARGS
24-
APISIX_VERSION ?= 3.11.0
25-
MAX_APISIX_VERSION ?= 3.11.0
24+
APISIX_VERSION ?= 3.12.0
25+
MAX_APISIX_VERSION ?= 3.12.0
2626
IMAGE_NAME = apache/apisix
2727
IMAGE_TAR_NAME = apache_apisix
2828
APISIX_REPO = https://github.com/apache/apisix

debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
FROM debian:bullseye-slim
1919

20-
ARG APISIX_VERSION=3.11.0
20+
ARG APISIX_VERSION=3.12.0
2121

2222
RUN set -ex; \
2323
arch=$(dpkg --print-architecture); \

docs/en/latest/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Find an APISIX [release version](https://github.com/apache/apisix/releases) to b
4343
Build a Docker image from the release:
4444

4545
```shell
46-
APISIX_VERSION=3.11.0 # specify release version
46+
APISIX_VERSION=3.12.0 # specify release version
4747
DISTRO=debian # debian, redhat
4848
make build-on-$DISTRO
4949
```

example/docker-compose-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ version: "3"
1919

2020
services:
2121
apisix:
22-
image: apache/apisix:3.11.0-debian
22+
image: apache/apisix:3.12.0-debian
2323
restart: always
2424
volumes:
2525
- ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro

example/docker-compose-standalone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ version: "3"
1919

2020
services:
2121
apisix:
22-
image: apache/apisix:${APISIX_IMAGE_TAG:-3.11.0-debian}
22+
image: apache/apisix:${APISIX_IMAGE_TAG:-3.12.0-debian}
2323
restart: always
2424
volumes:
2525
- ./apisix_conf/apisix-standalone.yaml:/usr/local/apisix/conf/apisix.yaml:ro

example/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ version: "3"
1919

2020
services:
2121
apisix:
22-
image: apache/apisix:${APISIX_IMAGE_TAG:-3.11.0-debian}
22+
image: apache/apisix:${APISIX_IMAGE_TAG:-3.12.0-debian}
2323
restart: always
2424
volumes:
2525
- ./apisix_conf/config.yaml:/usr/local/apisix/conf/config.yaml:ro

redhat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

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

20-
ARG APISIX_VERSION=3.11.0
20+
ARG APISIX_VERSION=3.12.0
2121
LABEL apisix_version="${APISIX_VERSION}"
2222
COPY ./yum.repos.d/apache-apisix.repo /etc/yum.repos.d/apache-apisix.repo
2323
COPY ./yum.repos.d/openresty.repo /etc/yum.repos.d/openresty.repo

0 commit comments

Comments
 (0)