Download Latest Version mercure-legacy_Linux_i386.tar.gz (6.3 MB)
Email in envelope

Get an email when there's a new version of Mercure

Home / v0.24.0
Name Modified Size InfoDownloads / Week
Parent folder
mercure-0.24.0.tgz 2026-05-11 17.5 kB
checksums.txt 2026-05-11 3.7 kB
checksums.txt.sig 2026-05-11 566 Bytes
mercure_0.24.0_linux_arm64.rpm 2026-05-11 30.7 MB
mercure_0.24.0_linux_amd64.rpm 2026-05-11 33.3 MB
mercure_0.24.0_linux_arm64.deb 2026-05-11 30.8 MB
mercure_0.24.0_linux_armv5.deb 2026-05-11 31.4 MB
mercure_0.24.0_linux_armv7.rpm 2026-05-11 31.3 MB
mercure_0.24.0_linux_386.rpm 2026-05-11 32.1 MB
mercure_0.24.0_linux_amd64.deb 2026-05-11 33.4 MB
mercure_0.24.0_linux_armv6.rpm 2026-05-11 31.3 MB
mercure_0.24.0_linux_armv5.rpm 2026-05-11 31.3 MB
mercure_0.24.0_linux_armv7.deb 2026-05-11 31.3 MB
mercure_0.24.0_linux_386.deb 2026-05-11 32.2 MB
mercure_0.24.0_linux_armv6.deb 2026-05-11 31.4 MB
mercure_0.24.0_linux_arm64.apk 2026-05-11 31.4 MB
mercure_0.24.0_linux_armv7.apk 2026-05-11 32.0 MB
mercure_0.24.0_linux_386.apk 2026-05-11 32.8 MB
mercure_0.24.0_linux_armv6.apk 2026-05-11 32.0 MB
mercure-legacy_Darwin_x86_64.tar.gz 2026-05-11 6.7 MB
mercure-legacy_Windows_x86_64.zip 2026-05-11 6.7 MB
mercure_0.24.0_linux_amd64.apk 2026-05-11 34.1 MB
mercure_0.24.0_linux_armv5.apk 2026-05-11 32.0 MB
mercure-legacy_Darwin_arm64.tar.gz 2026-05-11 6.2 MB
mercure-legacy_Linux_arm64.tar.gz 2026-05-11 5.9 MB
mercure-legacy_Linux_x86_64.tar.gz 2026-05-11 6.6 MB
mercure-legacy_Windows_arm64.zip 2026-05-11 6.0 MB
mercure-legacy_Windows_i386.zip 2026-05-11 6.5 MB
mercure-legacy_Linux_armv6.tar.gz 2026-05-11 6.2 MB
mercure_Linux_armv5.tar.gz 2026-05-11 31.4 MB
mercure_Windows_arm64.zip 2026-05-11 30.8 MB
mercure-legacy_Linux_i386.tar.gz 2026-05-11 6.3 MB
mercure_Windows_i386.zip 2026-05-11 32.6 MB
mercure_Darwin_arm64.tar.gz 2026-05-11 33.0 MB
mercure_Linux_armv7.tar.gz 2026-05-11 31.4 MB
mercure_Windows_x86_64.zip 2026-05-11 33.6 MB
mercure_Linux_arm64.tar.gz 2026-05-11 30.8 MB
mercure_Linux_i386.tar.gz 2026-05-11 32.2 MB
mercure_Linux_x86_64.tar.gz 2026-05-11 33.4 MB
mercure_Darwin_x86_64.tar.gz 2026-05-11 34.9 MB
mercure_Linux_armv6.tar.gz 2026-05-11 31.4 MB
README.md 2026-05-11 3.7 kB
v0.24.0 source code.tar.gz 2026-05-11 1.4 MB
v0.24.0 source code.zip 2026-05-11 1.5 MB
Totals: 44 Items   990.3 MB 2

Community

Mercure 0.24 adds native OpenTelemetry tracing for the Hub's core operations, lets you point at a JWK Set on disk instead of running a separate HTTP endpoint, and ships a Helm chart that satisfies the restricted Pod Security Standard out of the box. The tracing work is the headline: production hubs can now report accurate publish/subscribe latencies and topic cardinality to any OTel-compatible backend, with zero allocations when tracing isn't enabled.

✨ New Features

  • Native OpenTelemetry tracing for the Hub's core operations: mercure.publish, mercure.subscribe, mercure.subscriptions, and mercure.transport.history. Spans carry attributes like mercure.topics, mercure.update.id, mercure.private, mercure.subscriber.id, and mercure.last_event_id.requested. Spans nest under whatever parent span Caddy's tracing directive produces, so the standard OTEL_* environment variables Just Work. When the directive isn't enabled, SpanFromContext returns the noop tracer, with no allocations and no global state. Two new docs pages, Tracing and Metrics, document the spans and the Caddyfile setup by @dunglas in #1211
  • Caddy: publisher_jwks_url and subscriber_jwks_url now accept file:// URLs in addition to http(s)://. Mount your JWK Set as a Kubernetes Secret/ConfigMap (or Docker volume) and point Mercure at it directly instead of running a sidecar HTTP endpoint. The file is read once at provision time; rotate keys with a Caddy config reload. HTTP/HTTPS URLs keep their background refresh behavior by @dunglas in #1239
  • Helm: rootless restricted-PSS defaults. Container runs as UID/GID 1000, drop: [ALL], allowPrivilegeEscalation: false, readOnlyRootFilesystem: true, plus fsGroup: 1000 with fsGroupChangePolicy: OnRootMismatch so writable mounts (/data, /config, /tmp) stay writable for the non-root user without recursive chowns on every PVC remount. Completes the hardening trajectory from [#1226], [#1229], [#1231], [#1233], [#1234]. Binding to :80 relies on net.ipv4.ip_unprivileged_port_start=0 (containerd 1.5+, cri-o); older runtimes can switch service.targetPort to 8080 by @dunglas in #1241

Enterprise

Mercure Enterprise's history-replay path is traced too: all four production transports (Redis, PostgreSQL, Kafka, Pulsar) start a mercure.transport.history span when dispatchHistory is called, with mercure.transport, mercure.subscriber.id, and mercure.last_event_id.requested attributes — matching the Community bolt transport. Errors on each transport's primary failure path (XRANGE, SELECT, consumer-group consume, Pulsar reader creation, message-ID decode) are recorded on the span via RecordError + SetStatus(Error, ...), so backends like Tempo, Jaeger, or Datadog surface them with full context.

Mercure Cloud tenants are already running on this release. Mercure Enterprise brings the same hardening and tracing on-premise plus the HA transports and priority support. Contact contact@mercure.rocks for the managed cloud offering, on-premise licenses, custom development, consulting, and training.

Full Changelog: v0.23.5...v0.24.0

Source: README.md, updated 2026-05-11