What's Changed
🛠 Fixes
- Remove log-level escalation for 4xx/5xx in access log in #400
🚀 Features
- Complete rework of the
app-downtemplate in #398 - Added support for extra links and a homepage link for each template; rewrote the
catstemplate in #399
Helm chart changes
Note
This affects you only if you use the Helm chart AND have config.addCode set in your values.
Before (raw string)
config:
addCode: |
499=Client Closed Request|The client closed the connection before the server finished responding.
4**=Client Error|Something went wrong on the client side.After (array of objects)
config:
addCode:
- code: "499"
message: "Client Closed Request"
description: "The client closed the connection before the server finished responding"
- code: "4**"
message: "Client Error"
description: "Something went wrong on the client side"Each item must have code (required) and message (required); description is optional. All values are strings. The chart serializes the array to the CODE=MESSAGE|DESCRIPTION wire format that the application expects - you do not need to know the internal format.
Full Changelog: v4.0.0...v4.1.0
🐋 Docker images
// server
ghcr.io/tarampampam/error-pages:4.1.0
ghcr.io/tarampampam/error-pages:4.1
ghcr.io/tarampampam/error-pages:4
quay.io/tarampampam/error-pages:4.1.0
quay.io/tarampampam/error-pages:4.1
quay.io/tarampampam/error-pages:4
tarampampam/error-pages:4.1.0
tarampampam/error-pages:4.1
tarampampam/error-pages:4
// builder
ghcr.io/tarampampam/error-pages:4.1.0-builder
ghcr.io/tarampampam/error-pages:4.1-builder
ghcr.io/tarampampam/error-pages:4-builder
quay.io/tarampampam/error-pages:4.1.0-builder
quay.io/tarampampam/error-pages:4.1-builder
quay.io/tarampampam/error-pages:4-builder
tarampampam/error-pages:4.1.0-builder
tarampampam/error-pages:4.1-builder
tarampampam/error-pages:4-builder📦 Helm chart
helm install error-pages oci://ghcr.io/tarampampam/error-pages/charts/error-pages \
--version 4.1.0