victoriametrics: 1.146.0 -> 1.148.0

Changelog: https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.148.0
(cherry picked from commit 40860c7991)
This commit is contained in:
Adam C. Stephens
2026-07-20 14:39:52 -04:00
committed by github-actions[bot]
parent cf5d758a25
commit ca0e82d5fc

View File

@@ -14,13 +14,13 @@
buildGoModule (finalAttrs: {
pname = "VictoriaMetrics";
version = "1.146.0";
version = "1.148.0";
src = fetchFromGitHub {
owner = "VictoriaMetrics";
repo = "VictoriaMetrics";
tag = "v${finalAttrs.version}";
hash = "sha256-EWRVbUeugyLsExP3NyPVLd7v2kwbRg5OjFg2WAY1FuM=";
hash = "sha256-ehkiL+HqrUc5w4WsmasobscMQgQanEZexpNDjZQ7mo4=";
};
vendorHash = null;
@@ -60,7 +60,6 @@ buildGoModule (finalAttrs: {
# Increase timeouts in tests to prevent failure on heavily loaded builders
substituteInPlace lib/storage/storage_test.go \
--replace-fail "time.After(10 " "time.After(120 " \
--replace-fail "time.NewTimer(30 " "time.NewTimer(120 " \
--replace-fail "time.NewTimer(time.Second * 10)" "time.NewTimer(time.Second * 120)"
'';
@@ -79,7 +78,13 @@ buildGoModule (finalAttrs: {
passthru = {
tests = lib.recurseIntoAttrs nixosTests.victoriametrics;
updateScript = nix-update-script { };
updateScript = nix-update-script {
extraArgs = [
# avoid pmm and -cluster releases
"--version-regex"
"v([0-9\\.]+)"
];
};
};
meta = {