Skip to content

Commit 072e9d1

Browse files
authored
feat: prepare to release APISIX-BASE 1.21.4.1.4 (#263)
1 parent 7b2ba8b commit 072e9d1

6 files changed

+8
-8
lines changed

.github/workflows/package-apisix-base-apk.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 60
1919
env:
20-
BUILD_APISIX_BASE_VERSION: 1.21.4.1.3
20+
BUILD_APISIX_BASE_VERSION: 1.21.4.1.4
2121
steps:
2222
- uses: actions/checkout@v2
2323

.github/workflows/package-apisix-base-deb-ubuntu20.04.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 60
2121
env:
22-
BUILD_APISIX_BASE_VERSION: 1.21.4.1.3
22+
BUILD_APISIX_BASE_VERSION: 1.21.4.1.4
2323
steps:
2424
- uses: actions/checkout@v2
2525

@@ -41,7 +41,7 @@ jobs:
4141
docker exec ubuntu20.04Instance bash -c "DEBIAN_FRONTEND=noninteractive apt-get install -y libreadline-dev lsb-release libssl-dev perl build-essential"
4242
docker exec ubuntu20.04Instance bash -c "DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends wget gnupg ca-certificates"
4343
docker exec ubuntu20.04Instance bash -c "wget -O - https://openresty.org/package/pubkey.gpg | apt-key add -"
44-
docker exec ubuntu20.04Instance bash -c "echo \"deb http://openresty.org/package/ubuntu $(lsb_release -sc) main\" | tee /etc/apt/sources.list.d/openresty.list"
44+
docker exec ubuntu20.04Instance bash -c 'echo "deb http://openresty.org/package/ubuntu $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/openresty.list'
4545
docker exec ubuntu20.04Instance bash -c "DEBIAN_FRONTEND=noninteractive apt-get update"
4646
docker exec ubuntu20.04Instance bash -c "DEBIAN_FRONTEND=noninteractive apt-get -y install openresty-openssl111 openresty-pcre openresty-zlib"
4747

.github/workflows/package-apisix-base-rpm-el7.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 60
2121
env:
22-
BUILD_APISIX_BASE_VERSION: 1.21.4.1.3
22+
BUILD_APISIX_BASE_VERSION: 1.21.4.1.4
2323
steps:
2424
- uses: actions/checkout@v2
2525

.github/workflows/package-apisix-base-rpm-el8.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 60
2121
env:
22-
BUILD_APISIX_BASE_VERSION: 1.21.4.1.3
22+
BUILD_APISIX_BASE_VERSION: 1.21.4.1.4
2323
steps:
2424
- uses: actions/checkout@v2
2525

build-apisix-base.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ if ([ $# -gt 0 ] && [ "$1" == "latest" ]) || [ "$version" == "latest" ]; then
1717
else
1818
ngx_multi_upstream_module_ver="1.1.1"
1919
mod_dubbo_ver="1.0.2"
20-
apisix_nginx_module_ver="1.11.0"
20+
apisix_nginx_module_ver="1.12.0"
2121
wasm_nginx_module_ver="0.6.4"
2222
lua_var_nginx_module_ver="v0.5.3"
23-
grpc_client_nginx_module_ver="v0.3.1"
23+
grpc_client_nginx_module_ver="v0.4.0"
2424
amesh_ver="main"
2525
debug_args=${debug_args:-}
2626
OR_PREFIX=${OR_PREFIX:="/usr/local/openresty"}

package-apisix.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ fi
2727
# Determine the min version of openresty or apisix-base
2828
if [ "$OPENRESTY" == "apisix-base" ]
2929
then
30-
min_or_version="1.21.4.1.3"
30+
min_or_version="1.21.4.1.4"
3131
max_or_version="1.21.5"
3232
elif [ "$OPENRESTY" == "apisix-base-latest" ]
3333
then

0 commit comments

Comments
 (0)