From a62ba568380fd4d238df1459f2ae71d50b1a345d Mon Sep 17 00:00:00 2001 From: Frederic BIDON Date: Sun, 15 Mar 2026 23:42:25 +0100 Subject: [PATCH] chore: bump go directive to 1.25.0 Update all go.mod (and go.work where applicable) to require go 1.25.0. Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Frederic BIDON --- cmdutils/go.mod | 2 +- conv/go.mod | 2 +- fileutils/go.mod | 2 +- go.mod | 2 +- go.sum | 4 ++-- go.work | 2 +- jsonname/go.mod | 2 +- jsonutils/adapters/easyjson/go.mod | 2 +- jsonutils/adapters/testintegration/benchmarks/go.mod | 2 +- jsonutils/adapters/testintegration/go.mod | 2 +- jsonutils/fixtures_test/go.mod | 2 +- jsonutils/go.mod | 2 +- loading/go.mod | 2 +- mangling/go.mod | 2 +- netutils/go.mod | 2 +- stringutils/go.mod | 2 +- typeutils/go.mod | 2 +- yamlutils/go.mod | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cmdutils/go.mod b/cmdutils/go.mod index 60df4756..052541c0 100644 --- a/cmdutils/go.mod +++ b/cmdutils/go.mod @@ -1,3 +1,3 @@ module github.com/go-openapi/swag/cmdutils -go 1.24.0 +go 1.25.0 diff --git a/conv/go.mod b/conv/go.mod index de578be3..2e510dd0 100644 --- a/conv/go.mod +++ b/conv/go.mod @@ -7,4 +7,4 @@ require ( replace github.com/go-openapi/swag/typeutils => ../typeutils -go 1.24.0 +go 1.25.0 diff --git a/fileutils/go.mod b/fileutils/go.mod index 38011b12..6bc4f022 100644 --- a/fileutils/go.mod +++ b/fileutils/go.mod @@ -2,4 +2,4 @@ module github.com/go-openapi/swag/fileutils require github.com/go-openapi/testify/v2 v2.4.1 -go 1.24.0 +go 1.25.0 diff --git a/go.mod b/go.mod index b5cddec8..46fba25a 100644 --- a/go.mod +++ b/go.mod @@ -34,4 +34,4 @@ replace ( github.com/go-openapi/swag/yamlutils => ./yamlutils ) -go 1.24.0 +go 1.25.0 diff --git a/go.sum b/go.sum index 58bfe8a7..6f68694f 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -github.com/go-openapi/testify/enable/yaml/v2 v2.4.0 h1:7SgOMTvJkM8yWrQlU8Jm18VeDPuAvB/xWrdxFJkoFag= -github.com/go-openapi/testify/enable/yaml/v2 v2.4.0/go.mod h1:14iV8jyyQlinc9StD7w1xVPW3CO3q1Gj04Jy//Kw4VM= +github.com/go-openapi/testify/enable/yaml/v2 v2.4.1 h1:NZOrZmIb6PTv5LTFxr5/mKV/FjbUzGE7E6gLz7vFoOQ= +github.com/go-openapi/testify/enable/yaml/v2 v2.4.1/go.mod h1:r7dwsujEHawapMsxA69i+XMGZrQ5tRauhLAjV/sxg3Q= github.com/go-openapi/testify/v2 v2.4.1 h1:zB34HDKj4tHwyUQHrUkpV0Q0iXQ6dUCOQtIqn8hE6Iw= github.com/go-openapi/testify/v2 v2.4.1/go.mod h1:HCPmvFFnheKK2BuwSA0TbbdxJ3I16pjwMkYkP4Ywn54= go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc= diff --git a/go.work b/go.work index 1e537f07..8537cb2a 100644 --- a/go.work +++ b/go.work @@ -17,4 +17,4 @@ use ( ./yamlutils ) -go 1.24.0 +go 1.25.0 diff --git a/jsonname/go.mod b/jsonname/go.mod index dac0849c..e3dc9ae1 100644 --- a/jsonname/go.mod +++ b/jsonname/go.mod @@ -2,4 +2,4 @@ module github.com/go-openapi/swag/jsonname require github.com/go-openapi/testify/v2 v2.4.1 -go 1.24.0 +go 1.25.0 diff --git a/jsonutils/adapters/easyjson/go.mod b/jsonutils/adapters/easyjson/go.mod index d991a782..03ecf22e 100644 --- a/jsonutils/adapters/easyjson/go.mod +++ b/jsonutils/adapters/easyjson/go.mod @@ -22,4 +22,4 @@ replace ( github.com/go-openapi/swag/typeutils => ../../../typeutils ) -go 1.24.0 +go 1.25.0 diff --git a/jsonutils/adapters/testintegration/benchmarks/go.mod b/jsonutils/adapters/testintegration/benchmarks/go.mod index 2cc75103..f96c84a4 100644 --- a/jsonutils/adapters/testintegration/benchmarks/go.mod +++ b/jsonutils/adapters/testintegration/benchmarks/go.mod @@ -24,4 +24,4 @@ replace ( github.com/go-openapi/swag/typeutils => ../../../../typeutils ) -go 1.24.0 +go 1.25.0 diff --git a/jsonutils/adapters/testintegration/go.mod b/jsonutils/adapters/testintegration/go.mod index 54f5bce6..f6764335 100644 --- a/jsonutils/adapters/testintegration/go.mod +++ b/jsonutils/adapters/testintegration/go.mod @@ -24,4 +24,4 @@ replace ( github.com/go-openapi/swag/typeutils => ../../../typeutils ) -go 1.24.0 +go 1.25.0 diff --git a/jsonutils/fixtures_test/go.mod b/jsonutils/fixtures_test/go.mod index ceea2a69..66d813b0 100644 --- a/jsonutils/fixtures_test/go.mod +++ b/jsonutils/fixtures_test/go.mod @@ -6,4 +6,4 @@ require ( go.yaml.in/yaml/v3 v3.0.4 ) -go 1.24.0 +go 1.25.0 diff --git a/jsonutils/go.mod b/jsonutils/go.mod index 1d4242d4..b2276333 100644 --- a/jsonutils/go.mod +++ b/jsonutils/go.mod @@ -18,4 +18,4 @@ replace ( github.com/go-openapi/swag/typeutils => ../typeutils ) -go 1.24.0 +go 1.25.0 diff --git a/loading/go.mod b/loading/go.mod index 2f99d96e..f50c0375 100644 --- a/loading/go.mod +++ b/loading/go.mod @@ -21,4 +21,4 @@ replace ( github.com/go-openapi/swag/yamlutils => ../yamlutils ) -go 1.24.0 +go 1.25.0 diff --git a/mangling/go.mod b/mangling/go.mod index c5531de5..fcd7b809 100644 --- a/mangling/go.mod +++ b/mangling/go.mod @@ -2,4 +2,4 @@ module github.com/go-openapi/swag/mangling require github.com/go-openapi/testify/v2 v2.4.1 -go 1.24.0 +go 1.25.0 diff --git a/netutils/go.mod b/netutils/go.mod index c882d8a8..14536045 100644 --- a/netutils/go.mod +++ b/netutils/go.mod @@ -2,4 +2,4 @@ module github.com/go-openapi/swag/netutils require github.com/go-openapi/testify/v2 v2.4.1 -go 1.24.0 +go 1.25.0 diff --git a/stringutils/go.mod b/stringutils/go.mod index 051985b1..871de0fe 100644 --- a/stringutils/go.mod +++ b/stringutils/go.mod @@ -2,4 +2,4 @@ module github.com/go-openapi/swag/stringutils require github.com/go-openapi/testify/v2 v2.4.1 -go 1.24.0 +go 1.25.0 diff --git a/typeutils/go.mod b/typeutils/go.mod index 8e7c3660..ca88f486 100644 --- a/typeutils/go.mod +++ b/typeutils/go.mod @@ -2,4 +2,4 @@ module github.com/go-openapi/swag/typeutils require github.com/go-openapi/testify/v2 v2.4.1 -go 1.24.0 +go 1.25.0 diff --git a/yamlutils/go.mod b/yamlutils/go.mod index d6a4cef5..d820599d 100644 --- a/yamlutils/go.mod +++ b/yamlutils/go.mod @@ -17,4 +17,4 @@ replace ( github.com/go-openapi/swag/typeutils => ../typeutils ) -go 1.24.0 +go 1.25.0