Skip to content

Commit 4c0f8ce

Browse files
committed
1 parent b4a68a4 commit 4c0f8ce

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

deployment/docker/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DOCKER_NAMESPACE ?= victoriametrics
66
ROOT_IMAGE ?= alpine:3.22.2
77
CERTS_IMAGE := alpine:3.22.2
88

9-
GO_BUILDER_IMAGE := golang:1.25.4
9+
GO_BUILDER_IMAGE := golang:1.25.5
1010

1111
BUILDER_IMAGE := local/builder:2.0.0-$(shell echo $(GO_BUILDER_IMAGE) | tr :/ __)-1
1212
BASE_IMAGE := local/base:1.1.4-$(shell echo $(ROOT_IMAGE) | tr :/ __)-$(shell echo $(CERTS_IMAGE) | tr :/ __)

deployment/logs-benchmark/docker-compose-elk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
- vlogs
1919

2020
generator:
21-
image: golang:1.25.4-alpine
21+
image: golang:1.25.5-alpine
2222
restart: always
2323
working_dir: /go/src/app
2424
volumes:

deployment/logs-benchmark/docker-compose-loki.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
generator:
5-
image: golang:1.25.4-alpine
5+
image: golang:1.25.5-alpine
66
restart: always
77
working_dir: /go/src/app
88
volumes:

docs/victorialogs/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ according to the follosing docs:
2121

2222
## tip
2323

24+
* SECURITY: upgrade Go builder from Go1.25.4 to Go1.25.5. See [the list of issues addressed in Go1.25.5](https://github.com/golang/go/issues?q=milestone%3AGo1.25.5%20label%3ACherryPickApproved).
25+
2426
* FEATURE: [HTTP querying API](https://docs.victoriametrics.com/victorialogs/querying/#http-api): automatically convert the results of [`row_any()`](https://docs.victoriametrics.com/victorialogs/logsql/#row_any-stats), [`row_min()`](https://docs.victoriametrics.com/victorialogs/logsql/#row_min-stats) and [`row_max()`](https://docs.victoriametrics.com/victorialogs/logsql/#row_max-stats) stats functions to labels in [`/select/logsql/stats_query`](https://docs.victoriametrics.com/victorialogs/querying/#querying-log-stats) and [`/select/logsql/stats_query_range`](https://docs.victoriametrics.com/victorialogs/querying/#querying-log-range-stats) functions. This allows obtaining a sample of log message in alerting rules with the following query: `... | stats count() as hits, row_any(_msg) as msg_sample`. See [#81](https://github.com/VictoriaMetrics/VictoriaLogs/issues/81).
2527
* FEATURE: [web UI](https://docs.victoriametrics.com/victorialogs/querying/#web-ui): show VictoriaLogs version in the vmui's footer. See [#116](https://github.com/VictoriaMetrics/VictoriaLogs/issues/116).
2628

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/VictoriaMetrics/VictoriaLogs
22

3-
go 1.25.4
3+
go 1.25.5
44

55
require (
66
github.com/VictoriaMetrics/VictoriaMetrics v0.0.0-20251126195227-50fc48ac476b

0 commit comments

Comments
 (0)