Skip to content

Commit a7df6f9

Browse files
authored
feat: prepare to release APISIX-Base 1.21.4.1.0 (#211)
Signed-off-by: spacewander <[email protected]>
1 parent 0e70c70 commit a7df6f9

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
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.19.3.2.0
22+
BUILD_APISIX_BASE_VERSION: 1.21.4.1.0
2323
steps:
2424
- uses: actions/checkout@v2
2525

build-apisix-base.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ else
1616
ngx_multi_upstream_module_ver="1.1.0"
1717
mod_dubbo_ver="1.0.2"
1818
apisix_nginx_module_ver="1.9.0"
19-
wasm_nginx_module_ver="0.6.0"
19+
wasm_nginx_module_ver="0.6.1"
2020
lua_var_nginx_module_ver="v0.5.2"
2121
debug_args=${debug_args:-}
2222
OR_PREFIX=${OR_PREFIX:="/usr/local/openresty"}

package-apisix-base.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ fi
1313

1414
ARCH=${ARCH:-`(uname -m | tr '[:upper:]' '[:lower:]')`}
1515

16-
openresty_zlib_version="1.2.11-3"
17-
openresty_openssl111_version="1.1.1n"
18-
openresty_pcre_version="8.44-1"
16+
openresty_zlib_version="1.2.12-1"
17+
openresty_openssl111_version="1.1.1n-1"
18+
openresty_pcre_version="8.45-1"
1919
if [ "$PACKAGE_TYPE" == "deb" ]; then
20-
openresty_zlib_version="1.2.11-3~focal1"
21-
openresty_pcre_version="8.44-1~focal1"
20+
pkg_suffix="focal1"
21+
openresty_zlib_version="$openresty_zlib_version~$pkg_suffix"
22+
openresty_openssl111_version="$openresty_openssl111_version~$pkg_suffix"
23+
openresty_pcre_version="$openresty_pcre_version~$pkg_suffix"
2224
fi
2325

2426
fpm -f -s dir -t "$PACKAGE_TYPE" \

0 commit comments

Comments
 (0)