Skip to content

Commit c2b7a7f

Browse files
authored
Release 0.28.1 (#1282)
* prepare release v0.28.1 * Prepare tools for version v0.28.1 * tidy and changelog
1 parent dccabd2 commit c2b7a7f

File tree

12 files changed

+23
-90
lines changed

12 files changed

+23
-90
lines changed

.chloggen/alphabetical-changelog-entries.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.chloggen/ping-pr-author-of-failing-test.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.chloggen/remove-pr-autogenerated-issue.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.chloggen/trim-component-type-suffix.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.chloggen/yaml_output.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44

55
<!-- next version -->
66

7+
## v0.28.1
8+
9+
### 💡 Enhancements 💡
10+
11+
- `checkapi`: Work with a JSON schema stored as yaml under metadata.yaml config key. (#1148)
12+
- `chloggen`: Sort changelog entries lexicographically based on their component field (#1276)
13+
- `issuegenerator`: issuegenerator now pings the author of a failing test's PR (#1182)
14+
- `issuegenerator`: trim component type suffix from component names (#1255)
15+
16+
### 🧰 Bug fixes 🧰
17+
18+
- `issuegenerator`: removed pr section from autogenerated issue body. (#1243)
19+
720
## v0.28.0
821

922
### 🛑 Breaking changes 🛑

checkapi/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module go.opentelemetry.io/build-tools/checkapi
33
go 1.24.0
44

55
require (
6+
github.com/goccy/go-json v0.10.5
67
github.com/kaptinlin/jsonschema v0.4.12
78
github.com/stretchr/testify v1.11.1
89
gopkg.in/yaml.v3 v3.0.1
@@ -11,7 +12,6 @@ require (
1112
require (
1213
github.com/davecgh/go-spew v1.1.1 // indirect
1314
github.com/go-json-experiment/json v0.0.0-20250813233538-9b1f9ea2e11b // indirect
14-
github.com/goccy/go-json v0.10.5 // indirect
1515
github.com/goccy/go-yaml v1.18.0 // indirect
1616
github.com/kaptinlin/go-i18n v0.1.6 // indirect
1717
github.com/kaptinlin/messageformat-go v0.4.0 // indirect

crosslink/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/spf13/cobra v1.10.1
99
github.com/spf13/pflag v1.0.10
1010
github.com/stretchr/testify v1.11.1
11-
go.opentelemetry.io/build-tools v0.28.0
11+
go.opentelemetry.io/build-tools v0.28.1
1212
go.uber.org/zap v1.27.0
1313
golang.org/x/mod v0.28.0
1414
)

dbotconf/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
require (
66
github.com/spf13/cobra v1.10.1
77
github.com/stretchr/testify v1.11.1
8-
go.opentelemetry.io/build-tools v0.28.0
8+
go.opentelemetry.io/build-tools v0.28.1
99
golang.org/x/mod v0.28.0
1010
gopkg.in/yaml.v3 v3.0.1
1111
)

internal/tools/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ require (
77
github.com/gogo/protobuf v1.3.2
88
github.com/golangci/golangci-lint/v2 v2.5.0
99
github.com/matryer/moq v0.4.0
10-
go.opentelemetry.io/build-tools/chloggen v0.28.0
11-
go.opentelemetry.io/build-tools/crosslink v0.28.0
12-
go.opentelemetry.io/build-tools/dbotconf v0.28.0
13-
go.opentelemetry.io/build-tools/multimod v0.28.0
10+
go.opentelemetry.io/build-tools/chloggen v0.28.1
11+
go.opentelemetry.io/build-tools/crosslink v0.28.1
12+
go.opentelemetry.io/build-tools/dbotconf v0.28.1
13+
go.opentelemetry.io/build-tools/multimod v0.28.1
1414
golang.org/x/vuln v1.1.4
1515
)
1616

@@ -219,7 +219,7 @@ require (
219219
go-simpler.org/sloglint v0.11.1 // indirect
220220
go.augendre.info/arangolint v0.2.0 // indirect
221221
go.augendre.info/fatcontext v0.9.0 // indirect
222-
go.opentelemetry.io/build-tools v0.28.0 // indirect
222+
go.opentelemetry.io/build-tools v0.28.1 // indirect
223223
go.uber.org/automaxprocs v1.6.0 // indirect
224224
go.uber.org/multierr v1.11.0 // indirect
225225
go.uber.org/zap v1.27.0 // indirect

0 commit comments

Comments
 (0)