From e824c2d3a86ac3a049873b90fea692f0dd7ede8d Mon Sep 17 00:00:00 2001 From: Moritz Wiesinger Date: Wed, 22 Jan 2025 16:43:49 +0100 Subject: [PATCH] [chore] Release v0.17.0 (#668) * update version Signed-off-by: Moritz Wiesinger * Prepare tools for version v0.17.0 * make tidy Signed-off-by: Moritz Wiesinger * update changelog Signed-off-by: Moritz Wiesinger --------- Signed-off-by: Moritz Wiesinger --- .chloggen/add-githubgen.yaml | 16 ---------------- .chloggen/crosslink-tidy-v2.yaml | 16 ---------------- .chloggen/githubgen-enhancements.yaml | 16 ---------------- CHANGELOG.md | 11 +++++++++++ crosslink/go.mod | 2 +- dbotconf/go.mod | 2 +- internal/tools/go.mod | 2 +- internal/tools/go.sum | 3 +++ multimod/go.mod | 2 +- semconvgen/go.mod | 2 +- versions.yaml | 2 +- 11 files changed, 20 insertions(+), 54 deletions(-) delete mode 100644 .chloggen/add-githubgen.yaml delete mode 100644 .chloggen/crosslink-tidy-v2.yaml delete mode 100644 .chloggen/githubgen-enhancements.yaml diff --git a/.chloggen/add-githubgen.yaml b/.chloggen/add-githubgen.yaml deleted file mode 100644 index 27eabfb2..00000000 --- a/.chloggen/add-githubgen.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: 'new_component' - -# The name of the component, or a single word describing the area of concern, (e.g. crosslink) -component: githubgen - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Moved githubgen tool here from open-telemetry/opentelemetry-collector-contrib - -# One or more tracking issues related to the change -issues: [639] - -# (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/crosslink-tidy-v2.yaml b/.chloggen/crosslink-tidy-v2.yaml deleted file mode 100644 index 081a686d..00000000 --- a/.chloggen/crosslink-tidy-v2.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: crosslink - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Added `--skip` flag to `crosslink tidylist` subcommand - -# One or more tracking issues related to the change -issues: [662] - -# (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/githubgen-enhancements.yaml b/.chloggen/githubgen-enhancements.yaml deleted file mode 100644 index fd153863..00000000 --- a/.chloggen/githubgen-enhancements.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: githubgen - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Enhanced githubgen tool with more options to better fit arbitrary repos, added unit tests - -# One or more tracking issues related to the change -issues: [655] - -# (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 d68124e3..f57e1d1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ +## v0.17.0 + +### 🚀 New components 🚀 + +- `githubgen`: Moved githubgen tool here from open-telemetry/opentelemetry-collector-contrib (#639) + +### 💡 Enhancements 💡 + +- `crosslink`: Added `--skip` flag to `crosslink tidylist` subcommand (#662) +- `githubgen`: Enhanced githubgen tool with more options to better fit arbitrary repos, added unit tests (#655) + ## v0.16.0 ### 💡 Enhancements 💡 diff --git a/crosslink/go.mod b/crosslink/go.mod index 36807e0a..2e45bcde 100644 --- a/crosslink/go.mod +++ b/crosslink/go.mod @@ -8,7 +8,7 @@ require ( github.com/spf13/cobra v1.8.1 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.10.0 - go.opentelemetry.io/build-tools v0.16.0 + go.opentelemetry.io/build-tools v0.17.0 go.uber.org/zap v1.27.0 golang.org/x/mod v0.22.0 ) diff --git a/dbotconf/go.mod b/dbotconf/go.mod index 63bd6096..30fa901a 100644 --- a/dbotconf/go.mod +++ b/dbotconf/go.mod @@ -5,7 +5,7 @@ go 1.22.0 require ( github.com/spf13/cobra v1.8.1 github.com/stretchr/testify v1.10.0 - go.opentelemetry.io/build-tools v0.16.0 + go.opentelemetry.io/build-tools v0.17.0 golang.org/x/mod v0.22.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/internal/tools/go.mod b/internal/tools/go.mod index d66edb9d..53f1a724 100644 --- a/internal/tools/go.mod +++ b/internal/tools/go.mod @@ -201,7 +201,7 @@ require ( gitlab.com/bosi/decorder v0.4.2 // indirect go-simpler.org/musttag v0.13.0 // indirect go-simpler.org/sloglint v0.7.2 // indirect - go.opentelemetry.io/build-tools v0.16.0 // indirect + go.opentelemetry.io/build-tools v0.17.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 ff218759..653cc9b8 100644 --- a/internal/tools/go.sum +++ b/internal/tools/go.sum @@ -324,6 +324,7 @@ github.com/gostaticanalysis/nilerr v0.1.1 h1:ThE+hJP0fEp4zWLkWHWcRyI2Od0p7DlgYG3 github.com/gostaticanalysis/nilerr v0.1.1/go.mod h1:wZYb6YI5YAxxq0i1+VJbY0s2YONW0HU0GPE3+5PWN4A= github.com/gostaticanalysis/testutil v0.3.1-0.20210208050101-bfb5c8eec0e4/go.mod h1:D+FIZ+7OahH3ePw/izIEeH5I06eKs1IKI4Xr64/Am3M= github.com/gostaticanalysis/testutil v0.5.0 h1:Dq4wT1DdTwTGCQQv3rl3IvD5Ld0E6HiY+3Zh0sUGqw8= +github.com/gostaticanalysis/testutil v0.5.0/go.mod h1:OLQSbuM6zw2EvCcXTz1lVq5unyoNft372msDY0nY5Hs= github.com/hashicorp/go-immutable-radix/v2 v2.1.0 h1:CUW5RYIcysz+D3B+l1mDeXrQ7fUvGGCwJfdASSzbrfo= github.com/hashicorp/go-immutable-radix/v2 v2.1.0/go.mod h1:hgdqLXA4f6NIjRVisM1TJ9aOJVNRqKZj+xDGF6m7PBw= github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8= @@ -595,7 +596,9 @@ github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8 github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= github.com/tdakkota/asciicheck v0.3.0 h1:LqDGgZdholxZMaJgpM6b0U9CFIjDCbFdUF00bDnBKOQ= github.com/tdakkota/asciicheck v0.3.0/go.mod h1:KoJKXuX/Z/lt6XzLo8WMBfQGzak0SrAKZlvRr4tg8Ac= +github.com/tenntenn/modver v1.0.1 h1:2klLppGhDgzJrScMpkj9Ujy3rXPUspSjAcev9tSEBgA= github.com/tenntenn/modver v1.0.1/go.mod h1:bePIyQPb7UeioSRkw3Q0XeMhYZSMx9B8ePqg6SAMGH0= +github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3 h1:f+jULpRQGxTSkNYKJ51yaw6ChIqO+Je8UqsTKN/cDag= github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3/go.mod h1:ON8b8w4BN/kE1EOhwT0o+d62W65a6aPw1nouo9LMgyY= github.com/tetafro/godot v1.4.20 h1:z/p8Ek55UdNvzt4TFn2zx2KscpW4rWqcnUrdmvWJj7E= github.com/tetafro/godot v1.4.20/go.mod h1:2oVxTBSftRTh4+MVfUaUXR6bn2GDXCaMcOG4Dk3rfio= diff --git a/multimod/go.mod b/multimod/go.mod index b1572274..bda57691 100644 --- a/multimod/go.mod +++ b/multimod/go.mod @@ -7,7 +7,7 @@ require ( github.com/spf13/cobra v1.8.1 github.com/spf13/viper v1.19.0 github.com/stretchr/testify v1.10.0 - go.opentelemetry.io/build-tools v0.16.0 + go.opentelemetry.io/build-tools v0.17.0 go.uber.org/multierr v1.11.0 golang.org/x/mod v0.22.0 ) diff --git a/semconvgen/go.mod b/semconvgen/go.mod index c9c2c927..415c6d66 100644 --- a/semconvgen/go.mod +++ b/semconvgen/go.mod @@ -4,7 +4,7 @@ go 1.22.0 require ( github.com/spf13/pflag v1.0.5 - go.opentelemetry.io/build-tools v0.16.0 + go.opentelemetry.io/build-tools v0.17.0 golang.org/x/mod v0.22.0 golang.org/x/text v0.21.0 ) diff --git a/versions.yaml b/versions.yaml index 741c05a8..032e9f8f 100644 --- a/versions.yaml +++ b/versions.yaml @@ -14,7 +14,7 @@ module-sets: tools: - version: v0.16.0 + version: v0.17.0 modules: - go.opentelemetry.io/build-tools - go.opentelemetry.io/build-tools/checkfile