Skip to content

Commit 028b09e

Browse files
committed
Upgrade OpenResty to 1.29.2.3
Signed-off-by: Evan Wies <evan@neomantra.net>
1 parent 24b37e3 commit 028b09e

File tree

15 files changed

+21
-20
lines changed

15 files changed

+21
-20
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
`docker-openresty` Changelog
22
============================
33

4-
## 1.29.2.2-2 (2026-03-26)
4+
## 1.29.2.3-0 (2026-03-30)
55

66
Thank you to [AppVeyor](https://www.appveyor.com) for many years of Windows builds! ❤️
77

8+
* Upgrade OpenResty to `1.29.2.3`
89
* Windows builds moved from AppVeyor to GitHub Actions.
910
* `bookwork-fat` and `bullseye-fat` flavors now include build systems and LuaRocks (#295)
1011

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ It is best practice to pin your images to an explicit image tag. The [next sect
4141

4242
| Image | Description |
4343
| --- | --- |
44-
| `openresty/openresty:1.29.2.2-0-noble` | Built-from-source Ubuntu Noble |
45-
| `openresty/openresty:1.29.2.2-0-jammy` | Built-from-source Ubuntu Jammy |
46-
| `openresty/openresty:1.29.2.2-0-bookworm-fat` | Built-from-upstream Debian Bookworm |
47-
| `openresty/openresty:1.29.2.2-0-alpine` | Built-from-source Alpine |
48-
| `openresty/openresty:1.29.2.2-0-alpine-apk` | Built-from-upstream Alpine |
44+
| `openresty/openresty:1.29.2.3-0-noble` | Built-from-source Ubuntu Noble |
45+
| `openresty/openresty:1.29.2.3-0-jammy` | Built-from-source Ubuntu Jammy |
46+
| `openresty/openresty:1.29.2.3-0-bookworm-fat` | Built-from-upstream Debian Bookworm |
47+
| `openresty/openresty:1.29.2.3-0-alpine` | Built-from-source Alpine |
48+
| `openresty/openresty:1.29.2.3-0-alpine-apk` | Built-from-upstream Alpine |
4949

5050
These are examples of untagged image names, for reference:
5151

alpine-apk/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ARG RESTY_IMAGE_TAG="3.18.12"
1515
ARG RESTY_APK_ALPINE_VERSION="3.18"
1616
ARG RESTY_APK_KEY_URL="https://openresty.org/package/admin@openresty.com-5ea678a6.rsa.pub"
1717
ARG RESTY_APK_REPO_URL="https://openresty.org/package/alpine/v${RESTY_APK_ALPINE_VERSION}/main"
18-
ARG RESTY_APK_VERSION="=1.29.2.2-r0"
18+
ARG RESTY_APK_VERSION="=1.29.2.3-r0"
1919

2020
LABEL resty_image_base="${RESTY_IMAGE_BASE}"
2121
LABEL resty_image_tag="${RESTY_IMAGE_TAG}"

alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LABEL maintainer="Evan Wies <evan@neomantra.net>"
1111
# Docker Build Arguments
1212
ARG RESTY_IMAGE_BASE="alpine"
1313
ARG RESTY_IMAGE_TAG="3.22.3"
14-
ARG RESTY_VERSION="1.29.2.2"
14+
ARG RESTY_VERSION="1.29.2.3"
1515

1616
# https://github.com/openresty/openresty-packaging/blob/master/alpine/openresty-openssl3/APKBUILD
1717
ARG RESTY_OPENSSL_VERSION="3.5.5"

bookworm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LABEL maintainer="Evan Wies <evan@neomantra.net>"
1212
# OpenResty Debian package variants.
1313
# For example: "-debug" or "-valgrind"
1414
ARG RESTY_DEB_FLAVOR=""
15-
ARG RESTY_DEB_VERSION="=1.29.2.2-1~bookworm1"
15+
ARG RESTY_DEB_VERSION="=1.29.2.3-1~bookworm1"
1616
ARG RESTY_APT_REPO="https://openresty.org/package/debian"
1717
ARG RESTY_APT_PGP="https://openresty.org/package/pubkey.gpg"
1818
ARG RESTY_APT_ARCH="amd64"

bookworm/Dockerfile.buildpack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LABEL maintainer="Evan Wies <evan@neomantra.net>"
1212
# OpenResty Debian package variants.
1313
# For example: "-debug" or "-valgrind"
1414
ARG RESTY_DEB_FLAVOR=""
15-
ARG RESTY_DEB_VERSION="=1.29.2.2-1~bookworm1"
15+
ARG RESTY_DEB_VERSION="=1.29.2.3-1~bookworm1"
1616
ARG RESTY_APT_REPO="https://openresty.org/package/debian"
1717
ARG RESTY_APT_PGP="https://openresty.org/package/pubkey.gpg"
1818
ARG RESTY_APT_ARCH="amd64"

bookworm/Dockerfile.fat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ARG RESTY_FAT_IMAGE_TAG="bookworm"
1919
# OpenResty Debian package variants.
2020
# For example: "-debug" or "-valgrind"
2121
ARG RESTY_FAT_DEB_FLAVOR=""
22-
ARG RESTY_FAT_DEB_VERSION="=1.29.2.2-1~bookworm1"
22+
ARG RESTY_FAT_DEB_VERSION="=1.29.2.3-1~bookworm1"
2323

2424
ARG RESTY_LUAROCKS_VERSION="3.13.0"
2525

bullseye/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LABEL maintainer="Evan Wies <evan@neomantra.net>"
1212
# OpenResty Debian package variants.
1313
# For example: "-debug" or "-valgrind"
1414
ARG RESTY_DEB_FLAVOR=""
15-
ARG RESTY_DEB_VERSION="=1.29.2.2-1~bullseye1"
15+
ARG RESTY_DEB_VERSION="=1.29.2.3-1~bullseye1"
1616
ARG RESTY_APT_REPO="https://openresty.org/package/debian"
1717
ARG RESTY_APT_PGP="https://openresty.org/package/pubkey.gpg"
1818
ARG RESTY_IMAGE_BASE="debian"

bullseye/Dockerfile.debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LABEL maintainer="Evan Wies <evan@neomantra.net>"
1212
# OpenResty Debian package variants.
1313
# For example: "-debug" or "-valgrind"
1414
ARG RESTY_DEB_FLAVOR="-debug"
15-
ARG RESTY_DEB_VERSION="=1.29.2.2-1~bullseye1"
15+
ARG RESTY_DEB_VERSION="=1.29.2.3-1~bullseye1"
1616
ARG RESTY_APT_REPO="https://openresty.org/package/debian"
1717
ARG RESTY_APT_PGP="https://openresty.org/package/pubkey.gpg"
1818
ARG RESTY_IMAGE_BASE="debian"

bullseye/Dockerfile.fat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ARG RESTY_FAT_IMAGE_TAG="bullseye"
1919
# OpenResty Debian package variants.
2020
# For example: "-debug" or "-valgrind"
2121
ARG RESTY_FAT_DEB_FLAVOR=""
22-
ARG RESTY_FAT_DEB_VERSION="=1.29.2.2-1~bullseye1"
22+
ARG RESTY_FAT_DEB_VERSION="=1.29.2.3-1~bullseye1"
2323

2424
ARG RESTY_LUAROCKS_VERSION="3.13.0"
2525

0 commit comments

Comments
 (0)