From eefdd8bfb6900a0c06540edf95e04b1d5334fa86 Mon Sep 17 00:00:00 2001 From: Pablo Baeyens Date: Tue, 25 Feb 2025 11:47:15 +0100 Subject: [PATCH] prerelease tools v0.19.0 (#701) * [chore] Bump versions.yaml * make tidy * Prepare tools for version v0.19.0 * make tidy && make chlog-update VERSION=v0.19.0 --- .chloggen/bump-go-1-23.yaml | 16 ---------------- .chloggen/refactor-issue-generator.yaml | 16 ---------------- CHANGELOG.md | 7 +++++++ crosslink/go.mod | 2 +- dbotconf/go.mod | 2 +- internal/tools/go.mod | 6 +++--- internal/tools/go.sum | 8 ++++---- multimod/go.mod | 2 +- semconvgen/go.mod | 2 +- versions.yaml | 2 +- 10 files changed, 19 insertions(+), 44 deletions(-) delete mode 100644 .chloggen/bump-go-1-23.yaml delete mode 100644 .chloggen/refactor-issue-generator.yaml diff --git a/.chloggen/bump-go-1-23.yaml b/.chloggen/bump-go-1-23.yaml deleted file mode 100644 index 73fde5b3..00000000 --- a/.chloggen/bump-go-1-23.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: enhancement - -# The name of the component, or a single word describing the area of concern, (e.g. crosslink) -component: all - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Bump minimum Go version to 1.23 - -# One or more tracking issues related to the change -issues: [695] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: diff --git a/.chloggen/refactor-issue-generator.yaml b/.chloggen/refactor-issue-generator.yaml deleted file mode 100644 index ded2618d..00000000 --- a/.chloggen/refactor-issue-generator.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: enhancement - -# The name of the component, or a single word describing the area of concern, (e.g. crosslink) -component: issuegenerator - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: IssueGenerator now creates issues based on JUnit test results. - -# One or more tracking issues related to the change -issues: [672] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: diff --git a/CHANGELOG.md b/CHANGELOG.md index cb43c8ff..d2658a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ +## v0.19.0 + +### 💡 Enhancements 💡 + +- `all`: Bump minimum Go version to 1.23 (#695) +- `issuegenerator`: IssueGenerator now creates issues based on JUnit test results. (#672) + ## v0.18.0 ### 🛑 Breaking changes 🛑 diff --git a/crosslink/go.mod b/crosslink/go.mod index c5f0156d..ebe6bb7f 100644 --- a/crosslink/go.mod +++ b/crosslink/go.mod @@ -8,7 +8,7 @@ require ( github.com/spf13/cobra v1.9.1 github.com/spf13/pflag v1.0.6 github.com/stretchr/testify v1.10.0 - go.opentelemetry.io/build-tools v0.18.0 + go.opentelemetry.io/build-tools v0.19.0 go.uber.org/zap v1.27.0 golang.org/x/mod v0.23.0 ) diff --git a/dbotconf/go.mod b/dbotconf/go.mod index 7a195094..3a4bcf21 100644 --- a/dbotconf/go.mod +++ b/dbotconf/go.mod @@ -5,7 +5,7 @@ go 1.23.0 require ( github.com/spf13/cobra v1.9.1 github.com/stretchr/testify v1.10.0 - go.opentelemetry.io/build-tools v0.18.0 + go.opentelemetry.io/build-tools v0.19.0 golang.org/x/mod v0.23.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/internal/tools/go.mod b/internal/tools/go.mod index 833336b2..72e06e17 100644 --- a/internal/tools/go.mod +++ b/internal/tools/go.mod @@ -90,7 +90,7 @@ require ( github.com/golangci/plugin-module-register v0.1.1 // indirect github.com/golangci/revgrep v0.8.0 // indirect github.com/golangci/unconvert v0.0.0-20240309020433-c5143eacb3ed // indirect - github.com/google/go-cmp v0.6.0 // indirect + github.com/google/go-cmp v0.7.0 // indirect github.com/gordonklaus/ineffassign v0.1.0 // indirect github.com/gostaticanalysis/analysisutil v0.7.1 // indirect github.com/gostaticanalysis/comment v1.4.2 // indirect @@ -173,7 +173,7 @@ require ( github.com/sourcegraph/go-diff v0.7.0 // indirect github.com/spf13/afero v1.12.0 // indirect github.com/spf13/cast v1.6.0 // indirect - github.com/spf13/cobra v1.9.0 // indirect + github.com/spf13/cobra v1.9.1 // indirect github.com/spf13/pflag v1.0.6 // indirect github.com/spf13/viper v1.19.0 // indirect github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect @@ -199,7 +199,7 @@ require ( gitlab.com/bosi/decorder v0.4.2 // indirect go-simpler.org/musttag v0.13.0 // indirect go-simpler.org/sloglint v0.9.0 // indirect - go.opentelemetry.io/build-tools v0.18.0 // indirect + go.opentelemetry.io/build-tools v0.19.0 // indirect go.uber.org/automaxprocs v1.6.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.27.0 // indirect diff --git a/internal/tools/go.sum b/internal/tools/go.sum index 15a2a307..35392977 100644 --- a/internal/tools/go.sum +++ b/internal/tools/go.sum @@ -294,8 +294,8 @@ github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= -github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= +github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= @@ -562,8 +562,8 @@ github.com/spf13/afero v1.12.0 h1:UcOPyRBYczmFn6yvphxkn9ZEOY65cpwGKb5mL36mrqs= github.com/spf13/afero v1.12.0/go.mod h1:ZTlWwG4/ahT8W7T0WQ5uYmjI9duaLQGy3Q2OAl4sk/4= github.com/spf13/cast v1.6.0 h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0= github.com/spf13/cast v1.6.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= -github.com/spf13/cobra v1.9.0 h1:Py5fIuq/lJsRYxcxfOtsJqpmwJWCMOUy2tMJYV8TNHE= -github.com/spf13/cobra v1.9.0/go.mod h1:nDyEzZ8ogv936Cinf6g1RU9MRY64Ir93oCnqb9wxYW0= +github.com/spf13/cobra v1.9.1 h1:CXSaggrXdbHK9CF+8ywj8Amf7PBRmPCOJugH954Nnlo= +github.com/spf13/cobra v1.9.1/go.mod h1:nDyEzZ8ogv936Cinf6g1RU9MRY64Ir93oCnqb9wxYW0= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o= github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= diff --git a/multimod/go.mod b/multimod/go.mod index b776d827..7ce08ae5 100644 --- a/multimod/go.mod +++ b/multimod/go.mod @@ -7,7 +7,7 @@ require ( github.com/spf13/cobra v1.9.1 github.com/spf13/viper v1.19.0 github.com/stretchr/testify v1.10.0 - go.opentelemetry.io/build-tools v0.18.0 + go.opentelemetry.io/build-tools v0.19.0 go.uber.org/multierr v1.11.0 golang.org/x/mod v0.23.0 ) diff --git a/semconvgen/go.mod b/semconvgen/go.mod index 043e4793..6b5e21fb 100644 --- a/semconvgen/go.mod +++ b/semconvgen/go.mod @@ -4,7 +4,7 @@ go 1.23.0 require ( github.com/spf13/pflag v1.0.6 - go.opentelemetry.io/build-tools v0.18.0 + go.opentelemetry.io/build-tools v0.19.0 golang.org/x/mod v0.23.0 golang.org/x/text v0.22.0 ) diff --git a/versions.yaml b/versions.yaml index f7086c22..9d765f80 100644 --- a/versions.yaml +++ b/versions.yaml @@ -14,7 +14,7 @@ module-sets: tools: - version: v0.18.0 + version: v0.19.0 modules: - go.opentelemetry.io/build-tools - go.opentelemetry.io/build-tools/checkfile