Skip to content

chore(deps): update dependency tarampampam/error-pages to v4 - autoclosed#121

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/tarampampam-error-pages-4.x
Closed

chore(deps): update dependency tarampampam/error-pages to v4 - autoclosed#121
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/tarampampam-error-pages-4.x

Conversation

@renovate

@renovate renovate Bot commented Jun 1, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
tarampampam/error-pages libraries major 3.8.14.2.2

Release Notes

tarampampam/error-pages (tarampampam/error-pages)

v4.2.2

Compare Source

What's Changed

Other Changes
  • Update <html lang> attribute at runtime after page localization in #​412

Full Changelog: tarampampam/error-pages@v4.2.1...v4.2.2

🐋 Docker images

// server
ghcr.io/tarampampam/error-pages:4.2.2
ghcr.io/tarampampam/error-pages:4.2
ghcr.io/tarampampam/error-pages:4
ghcr.io/tarampampam/error-pages:latest
quay.io/tarampampam/error-pages:4.2.2
quay.io/tarampampam/error-pages:4.2
quay.io/tarampampam/error-pages:4
quay.io/tarampampam/error-pages:latest
tarampampam/error-pages:4.2.2
tarampampam/error-pages:4.2
tarampampam/error-pages:4
tarampampam/error-pages:latest

// builder
ghcr.io/tarampampam/error-pages:4.2.2-builder
ghcr.io/tarampampam/error-pages:4.2-builder
ghcr.io/tarampampam/error-pages:4-builder
ghcr.io/tarampampam/error-pages:latest-builder
quay.io/tarampampam/error-pages:4.2.2-builder
quay.io/tarampampam/error-pages:4.2-builder
quay.io/tarampampam/error-pages:4-builder
quay.io/tarampampam/error-pages:latest-builder
tarampampam/error-pages:4.2.2-builder
tarampampam/error-pages:4.2-builder
tarampampam/error-pages:4-builder
tarampampam/error-pages:latest-builder

📦 Helm chart

helm install error-pages oci://ghcr.io/tarampampam/error-pages/charts/error-pages \
  --version 4.2.2

v4.2.1

Compare Source

What's Changed

  • The latest Docker tag now points to the latest v4 version
📦 Dependency updates

Full Changelog: tarampampam/error-pages@v4.2.0...v4.2.1

🐋 Docker images

// server
ghcr.io/tarampampam/error-pages:4.2.1
ghcr.io/tarampampam/error-pages:4.2
ghcr.io/tarampampam/error-pages:4
ghcr.io/tarampampam/error-pages:latest
quay.io/tarampampam/error-pages:4.2.1
quay.io/tarampampam/error-pages:4.2
quay.io/tarampampam/error-pages:4
quay.io/tarampampam/error-pages:latest
tarampampam/error-pages:4.2.1
tarampampam/error-pages:4.2
tarampampam/error-pages:4
tarampampam/error-pages:latest

// builder
ghcr.io/tarampampam/error-pages:4.2.1-builder
ghcr.io/tarampampam/error-pages:4.2-builder
ghcr.io/tarampampam/error-pages:4-builder
ghcr.io/tarampampam/error-pages:latest-builder
quay.io/tarampampam/error-pages:4.2.1-builder
quay.io/tarampampam/error-pages:4.2-builder
quay.io/tarampampam/error-pages:4-builder
quay.io/tarampampam/error-pages:latest-builder
tarampampam/error-pages:4.2.1-builder
tarampampam/error-pages:4.2-builder
tarampampam/error-pages:4-builder
tarampampam/error-pages:latest-builder

📦 Helm chart

helm install error-pages oci://ghcr.io/tarampampam/error-pages/charts/error-pages \
  --version 4.2.1

v4.2.0

Compare Source

What's Changed

🛠 Fixes
  • The Host header value has been reverted to the details data in #​404
🚀 Features
  • Add service annotations and loadBalancerSourceRanges support in Helm chart by @​pmezhuev in #​403

New Contributors

Full Changelog: tarampampam/error-pages@v4.1.0...v4.2.0

🐋 Docker images

// server
ghcr.io/tarampampam/error-pages:4.2.0
ghcr.io/tarampampam/error-pages:4.2
ghcr.io/tarampampam/error-pages:4
quay.io/tarampampam/error-pages:4.2.0
quay.io/tarampampam/error-pages:4.2
quay.io/tarampampam/error-pages:4
tarampampam/error-pages:4.2.0
tarampampam/error-pages:4.2
tarampampam/error-pages:4

// builder
ghcr.io/tarampampam/error-pages:4.2.0-builder
ghcr.io/tarampampam/error-pages:4.2-builder
ghcr.io/tarampampam/error-pages:4-builder
quay.io/tarampampam/error-pages:4.2.0-builder
quay.io/tarampampam/error-pages:4.2-builder
quay.io/tarampampam/error-pages:4-builder
tarampampam/error-pages:4.2.0-builder
tarampampam/error-pages:4.2-builder
tarampampam/error-pages:4-builder

📦 Helm chart

helm install error-pages oci://ghcr.io/tarampampam/error-pages/charts/error-pages \
  --version 4.2.0

v4.1.0

Compare Source

What's Changed

🛠 Fixes
  • Remove log-level escalation for 4xx/5xx in access log in #​400
🚀 Features
  • Complete rework of the app-down template in #​398
  • Added support for extra links and a homepage link for each template; rewrote the cats template 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: tarampampam/error-pages@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

v4.0.0

Compare Source

THIS IS A MAJOR RELEASE WITH BREAKING CHANGES

READ THIS UPGRADE GUIDE BEFORE USING IT
UPGRADE SUPPORT IS AVAILABLE HERE

This release introduces v4 - a ground-up rewrite of error-pages. All external dependencies have been removed, and the project now runs entirely on the Go standard library.

Breaking changes

  • Two separate binaries replace the old serve / build / healthcheck subcommands:
    • error-pages - HTTP server (dynamic rendering)
    • builder - static generator that pre-renders {code}.{html,json,xml,txt} to disk
  • Environment variables were renamed: TEMPLATES_ROTATION_MODE -> ROTATION_MODE, RESPONSE_JSON_FORMAT -> JSON_TEMPLATE, and more.
  • --add-code separator changed from / to |; multiple entries now use ||
  • Many CLI flags and environment variables have been renamed
  • Template fields were renamed: {{ code }} -> {{ .StatusCode }} (v3 syntax is still automatically rewritten at parse time through a shim, but it is deprecated)
  • Other changes are described here

What's new

HTTP server
  • FastHTTP has been replaced with the standard library net/http; HTTP/1.1 and HTTP/2 h2c are served on the same listener, with no TLS required.
  • Gzip compression is now available for all response formats (HTML, JSON, XML, and plain text) when Accept-Encoding: gzip is set.
  • HTML minification has been removed, since gzip gives similar savings with less complexity.
  • Format negotiation now follows this order: URL extension -> Content-Type -> X-Format -> Accept header (highest q-value wins).
Template engine
  • New internal/template package with a clean Data / Config split - templates are parsed once at startup.
  • 48 built-in template functions: now, hostname, env (with secret masking), toJson, escape, l10nScript, and many more.
  • The v3 -> v4 token shim automatically rewrites old syntax at parse time.
  • Custom template loader (tploader): HTTP/HTTPS URL, file path, or inline literal - loaded concurrently at startup.
Localization

l10n/locales.json is now the single source of truth (15+ languages).

Helm chart

A new deploy/helm/ directory includes Chart.yaml, values.yaml, values.schema.json, and deployment, service, and middleware templates. Check the artifacthub for more details.

CLI "framework"

A custom internal/cli package provides a generic Flag[T] implementation with no external dependencies, and value precedence is now: default -> env var -> CLI flag.

Documentation

🐋 Docker images

// server
ghcr.io/tarampampam/error-pages:4.0.0
ghcr.io/tarampampam/error-pages:4.0
ghcr.io/tarampampam/error-pages:4
quay.io/tarampampam/error-pages:4.0.0
quay.io/tarampampam/error-pages:4.0
quay.io/tarampampam/error-pages:4
tarampampam/error-pages:4.0.0
tarampampam/error-pages:4.0
tarampampam/error-pages:4

// builder
ghcr.io/tarampampam/error-pages:4.0.0-builder
ghcr.io/tarampampam/error-pages:4.0-builder
ghcr.io/tarampampam/error-pages:4-builder
quay.io/tarampampam/error-pages:4.0.0-builder
quay.io/tarampampam/error-pages:4.0-builder
quay.io/tarampampam/error-pages:4-builder
tarampampam/error-pages:4.0.0-builder
tarampampam/error-pages:4.0-builder
tarampampam/error-pages:4-builder

📦 Helm chart

helm install error-pages oci://ghcr.io/tarampampam/error-pages/charts/error-pages \
  --version 4.0.0

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "monthly"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies label Jun 1, 2026
@renovate
renovate Bot force-pushed the renovate/tarampampam-error-pages-4.x branch 2 times, most recently from 350f137 to 4fee910 Compare June 1, 2026 08:31
@renovate
renovate Bot force-pushed the renovate/tarampampam-error-pages-4.x branch 3 times, most recently from d82faee to 6eb1b67 Compare June 14, 2026 09:32
@renovate
renovate Bot force-pushed the renovate/tarampampam-error-pages-4.x branch from 6eb1b67 to c46eab8 Compare June 21, 2026 17:36
@renovate
renovate Bot force-pushed the renovate/tarampampam-error-pages-4.x branch 3 times, most recently from 1c591c9 to d1fb16f Compare July 1, 2026 11:08
@renovate
renovate Bot force-pushed the renovate/tarampampam-error-pages-4.x branch from d1fb16f to 1047270 Compare July 1, 2026 11:09
@renovate renovate Bot changed the title chore(deps): update dependency tarampampam/error-pages to v4 chore(deps): update dependency tarampampam/error-pages to v4 - autoclosed Jul 2, 2026
@renovate renovate Bot closed this Jul 2, 2026
@renovate
renovate Bot deleted the renovate/tarampampam-error-pages-4.x branch July 2, 2026 00:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Development

Successfully merging this pull request may close these issues.

1 participant