From 8507be186e4038ad41d439c72901eb0635849052 Mon Sep 17 00:00:00 2001 From: Jacob Repp Date: Sat, 8 Nov 2025 00:00:23 -0800 Subject: [PATCH] build: update Go version to 1.25 Update go.mod to use Go 1.25, matching the installed Go toolchain (1.25.2) and ensuring compatibility with the latest Go features and improvements. Verified: - All packages build successfully - Unit tests pass - HTTP status codes remain in net/http (standard library) --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index e26ee0a..889d2f5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/google/goblet -go 1.24.0 +go 1.25 require ( cloud.google.com/go/errorreporting v0.3.2