Merge pull request #1877 from acelaya-forks/upgrade-nginx

Upgrade docker image to nginx 1.30.1
This commit is contained in:
Alejandro Celaya
2026-05-15 08:28:55 +02:00
committed by GitHub
2 changed files with 18 additions and 1 deletions

View File

@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
## [4.7.1] - 2026-02-04
### Added
* *Nothing*
### Changed
* Update dependencies
### Deprecated
* *Nothing*
### Removed
* *Nothing*
### Fixed
* [#1876](https://github.com/shlinkio/shlink-web-client/issues/1876) Upgrade docker image to nginx 1.30.1 to address [CVE-2026-42945](https://www.cve.org/CVERecord?id=CVE-2026-42945).
## [4.7.0] - 2026-02-04 ## [4.7.0] - 2026-02-04
### Added ### Added
* [shlink-web-component] Add support for Shlink 5.0.0, by supporting date-based redirect conditions. * [shlink-web-component] Add support for Shlink 5.0.0, by supporting date-based redirect conditions.

View File

@@ -4,7 +4,7 @@ ARG VERSION="latest"
ENV VERSION=${VERSION} ENV VERSION=${VERSION}
RUN cd /shlink-web-client && npm ci && node --run build RUN cd /shlink-web-client && npm ci && node --run build
FROM nginxinc/nginx-unprivileged:1.29-alpine FROM nginxinc/nginx-unprivileged:1.30.1-alpine
ARG UID=101 ARG UID=101
LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>" LABEL maintainer="Alejandro Celaya <alejandro@alejandrocelaya.com>"