- vmagent: flush pending persistent queue data to chunk file before updating the metadata to prevent metadata writer offset from getting ahead of chunk file size
- vmagent: fix possible data race when processing OpenTelemetry metadata
- vmagent: atomically write persistent queue metainfo to prevent possible file corruption on ungraceful shutdown
- vmbackup and vmbackupmanager: retry S3 requests failing with HTTP 429 status code or TooManyRequests error code
- vmselect in VictoriaMetrics cluster: properly apply limit to metrics metadata response
- vminsert in VictoriaMetrics cluster: drop metadata blocks when communicating with vmstorage nodes over the legacy RPC protocol
- vmui: keep only one header navigation dropdown (Explore, Tools) open at a time
- vmui: preserve newline formatting in alert and rule annotations on the Alerting page
- vmui: hide Total metric names stats on Cardinality Explorer page when user selects a specific metric or label to focus
- vmauth: return 408 Request Timeout instead of 400 Bad Request when the request body is not received within -maxQueueDuration
- Upgrade Go builder from Go1.26.4 to Go1.26.5
v1.136.14
Released at 2026-07-17
v1.136.x is a line of LTS releases. It contains important up-to-date bugfixes for VictoriaMetrics enterprise. All these fixes are also included in the latest community release. The v1.136.x line will be supported for at least 12 months since v1.136.0 release
-
SECURITY: upgrade Go builder from Go1.26.4 to Go1.26.5. See the list of issues addressed in Go1.26.5.
-
BUGFIX: vmagent: flush pending persistent queue data to chunk file before updating the metadata. This prevents the metadata writer offset from getting ahead of the chunk file size and avoids losing the persistent queue after an unclean shutdown. See #11192.
-
BUGFIX: vmagent: fix a possible data race when processing OpenTelemetry metadata. See #11238. Thanks to @nevgeny for contribution.
-
BUGFIX: vmagent: atomically write persistent queue metainfo to prevent possible file corruption on ungraceful shutdown. See #11192.
-
BUGFIX: vmbackup and vmbackupmanager: retry S3 requests failing with
HTTP 429status code orTooManyRequestserror code. Previously such requests were not retried, so a short burst of rate limiting would fail the whole backup. See #11218. Thanks to @gautamrizwani for contribution. -
BUGFIX:
vmselectin VictoriaMetrics cluster: properly apply limit to metrics metadata response. See #11139. -
BUGFIX:
vminsertin VictoriaMetrics cluster: Now drops metadata blocks when communicating with vmstorage nodes over the legacy RPC protocol. To avoid this limitation, upgradevmstorageto a version that supports the new RPC protocol (>= v1.137.0). See #11146. -
BUGFIX: vmui: keep only one header navigation dropdown (
Explore,Tools) open at a time. Previously, hovering across two dropdowns could briefly leave both open due to the close delay. See #11224. Thanks to @antedotee for contribution. -
BUGFIX: vmui: preserve newline formatting in alert and rule annotations on the Alerting page. See #11171.
-
BUGFIX: vmui: hide
Total metric namesstats on Cardinality Explorer page when user selects a specific metric or label to focus. See #11154 for details. Thanks to @lghuy05 for the contribution. -
BUGFIX: vmauth: return
408 Request Timeoutinstead of400 Bad Requestwhen the request body isn't received within-maxQueueDuration. This preventsvmagentfrom incorrectly downgrading the remote write protocol and dropping data whenvmauthis used as a proxy for a remote write endpoint. See #11272.