Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## Upcoming Release
### Security
- Updated base Docker image packages to address CVE-2025-68973 (HIGH severity) in gpgv package
- Docker images now apply all available security updates during build

### Features Added
- Update Netty to 4.2.9.Final
- New `--logging-format` CLI option to select structured logging formats (PLAIN, ECS, GCP, LOGSTASH, GELF) without requiring custom Log4j2 configuration files. Issue [#1144][issue_1144] via PR [#1146][PR_1146].
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ ENV JAVA_HOME="/opt/java/openjdk" \
WEB3SIGNER_HTTP_LISTEN_HOST="0.0.0.0" \
WEB3SIGNER_METRICS_HOST="0.0.0.0"

# Install dependencies and create user
# Apply all security updates, install dependencies and create user
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
ca-certificates \
curl && \
Expand Down