victoriametrics: 1.123.0 -> 1.124.0 (#434803)

This commit is contained in:
Leona Maroni
2025-08-22 16:45:02 +02:00
committed by GitHub

View File

@@ -13,13 +13,13 @@
buildGoModule (finalAttrs: { buildGoModule (finalAttrs: {
pname = "VictoriaMetrics"; pname = "VictoriaMetrics";
version = "1.123.0"; version = "1.124.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "VictoriaMetrics"; owner = "VictoriaMetrics";
repo = "VictoriaMetrics"; repo = "VictoriaMetrics";
tag = "v${finalAttrs.version}"; tag = "v${finalAttrs.version}";
hash = "sha256-GUVRMlF94BaZSVfz4Z+IBSpf6WuA5o1WQQmeZAqKZ1g="; hash = "sha256-f0Mf/4cFnJ/3I8z/4UhhNJnSCau9Q7mFfR32lP9/yi0=";
}; };
vendorHash = null; vendorHash = null;
@@ -51,6 +51,10 @@ buildGoModule (finalAttrs: {
# This appears to be some kind of test server for development purposes only. # This appears to be some kind of test server for development purposes only.
rm -f app/vmui/packages/vmui/web/{go.mod,main.go} rm -f app/vmui/packages/vmui/web/{go.mod,main.go}
# Allow older go versions
substituteInPlace go.mod \
--replace-fail "go 1.24.6" "go ${finalAttrs.passthru.go.version}"
# Increase timeouts in tests to prevent failure on heavily loaded builders # Increase timeouts in tests to prevent failure on heavily loaded builders
substituteInPlace lib/storage/storage_test.go \ substituteInPlace lib/storage/storage_test.go \
--replace-fail "time.After(10 " "time.After(120 " \ --replace-fail "time.After(10 " "time.After(120 " \