Skip to content

Commit 461e5d7

Browse files
authored
Release v0.23.0/v1.2.0 (#2790)
* Bump versions * Prepare auto for version v0.23.0 * Prepare sdk for version v1.2.0 * Update the changelog * Fix crosslink
1 parent 8990c28 commit 461e5d7

File tree

11 files changed

+23
-18
lines changed

11 files changed

+23
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http
88

99
## [Unreleased]
1010

11+
## [v0.23.0/v1.2.0] - 2025-09-10
12+
1113
<!-- markdownlint-disable MD028 -->
12-
> [!NOTE]
14+
> [!NOTE]
1315
> This is the last release version that will support building the auto-instrumentation CLI using Go 1.23.
1416
> The next release will require development to be done using Go >= 1.24.
1517
<!-- markdownlint-enable MD028 -->
@@ -44,6 +46,7 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http
4446
### Changed
4547

4648
- Upgrade `go.opentelemetry.io/auto` semconv to `v1.37.0`. ([#2763](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/2763))
49+
- Upgrade `go.opentelemetry.io/auto/sdk` semconv to `v1.37.0`. ([#2763](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/2763))
4750

4851
### Fixed
4952

@@ -715,7 +718,8 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http
715718

716719
This is the first release of OpenTelemetry Go Automatic Instrumentation.
717720

718-
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/compare/v0.22.1...HEAD
721+
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/compare/v0.23.0...HEAD
722+
[v0.23.0/v1.2.0]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.23.0
719723
[v0.22.1]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.22.1
720724
[v0.22.0]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.22.0
721725
[v0.21.0]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.21.0

examples/kafka-go/consumer/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ require (
1313
github.com/go-logr/stdr v1.2.2 // indirect
1414
github.com/klauspost/compress v1.18.0 // indirect
1515
github.com/pierrec/lz4/v4 v4.1.22 // indirect
16-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
16+
go.opentelemetry.io/auto/sdk v1.2.0 // indirect
1717
go.opentelemetry.io/otel/metric v1.38.0 // indirect
1818
)
19+
20+
replace go.opentelemetry.io/auto/sdk => ../../../sdk

examples/kafka-go/consumer/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY=
2323
github.com/xdg-go/scram v1.1.2/go.mod h1:RT/sEzTbU5y00aCK8UOx6R7YryM0iF1N2MOmC3kKLN4=
2424
github.com/xdg-go/stringprep v1.0.4 h1:XLI/Ng3O1Atzq0oBs3TWm+5ZVgkq2aqdlvP9JtoZ6c8=
2525
github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM=
26-
go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA=
27-
go.opentelemetry.io/auto/sdk v1.1.0/go.mod h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A=
2826
go.opentelemetry.io/otel v1.38.0 h1:RkfdswUDRimDg0m2Az18RKOsnI8UDzppJAtj01/Ymk8=
2927
go.opentelemetry.io/otel v1.38.0/go.mod h1:zcmtmQ1+YmQM9wrNsTGV/q/uyusom3P8RxwExxkZhjM=
3028
go.opentelemetry.io/otel/metric v1.38.0 h1:Kl6lzIYGAh5M159u9NgiRkmoMKjvbsKtYRwgfrA6WpA=

examples/rolldice/user/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ require (
1010
require (
1111
github.com/go-logr/logr v1.4.3 // indirect
1212
github.com/go-logr/stdr v1.2.2 // indirect
13-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
13+
go.opentelemetry.io/auto/sdk v1.2.0 // indirect
1414
go.opentelemetry.io/otel/metric v1.38.0 // indirect
1515
go.opentelemetry.io/otel/trace v1.38.0 // indirect
1616
)
17+
18+
replace go.opentelemetry.io/auto/sdk => ../../../sdk

examples/rolldice/user/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
1313
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1414
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
1515
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
16-
go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA=
17-
go.opentelemetry.io/auto/sdk v1.1.0/go.mod h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A=
1816
go.opentelemetry.io/otel v1.38.0 h1:RkfdswUDRimDg0m2Az18RKOsnI8UDzppJAtj01/Ymk8=
1917
go.opentelemetry.io/otel v1.38.0/go.mod h1:zcmtmQ1+YmQM9wrNsTGV/q/uyusom3P8RxwExxkZhjM=
2018
go.opentelemetry.io/otel/metric v1.38.0 h1:Kl6lzIYGAh5M159u9NgiRkmoMKjvbsKtYRwgfrA6WpA=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ require (
9696
github.com/prometheus/otlptranslator v0.0.2 // indirect
9797
github.com/prometheus/procfs v0.17.0 // indirect
9898
github.com/x448/float16 v0.8.4 // indirect
99-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
99+
go.opentelemetry.io/auto/sdk v1.2.0 // indirect
100100
go.opentelemetry.io/contrib/bridges/prometheus v0.63.0 // indirect
101101
go.opentelemetry.io/contrib/detectors/aws/ec2/v2 v2.0.0 // indirect
102102
go.opentelemetry.io/contrib/detectors/aws/ecs v1.38.0 // indirect

internal/pkg/instrumentation/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ const (
99
// Name is used for `telemetry.distro.name` resource attribute.
1010
Name = "opentelemetry-go-instrumentation"
1111
// Version is the current release version of OpenTelemetry Go auto-instrumentation in use.
12-
Version = "v0.22.1"
12+
Version = "v0.23.0"
1313
)

internal/test/e2e/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ require (
1010
github.com/mattn/go-sqlite3 v1.14.32
1111
github.com/segmentio/kafka-go v0.4.49
1212
github.com/stretchr/testify v1.11.1
13-
go.opentelemetry.io/auto v0.22.1
14-
go.opentelemetry.io/auto/sdk v1.1.0
13+
go.opentelemetry.io/auto v0.23.0
14+
go.opentelemetry.io/auto/sdk v1.2.0
1515
go.opentelemetry.io/collector/pdata v1.38.0
1616
go.opentelemetry.io/otel v1.38.0
1717
go.opentelemetry.io/otel/trace v1.38.0

internal/tools/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/docker/docker v28.4.0+incompatible
88
github.com/golangci/golangci-lint/v2 v2.3.1
99
github.com/google/go-licenses/v2 v2.0.1
10-
go.opentelemetry.io/auto v0.22.1
10+
go.opentelemetry.io/auto v0.23.0
1111
go.opentelemetry.io/build-tools/crosslink v0.26.2
1212
go.opentelemetry.io/build-tools/dbotconf v0.26.2
1313
go.opentelemetry.io/build-tools/multimod v0.26.2
@@ -239,7 +239,7 @@ require (
239239
go.augendre.info/arangolint v0.2.0 // indirect
240240
go.augendre.info/fatcontext v0.8.1 // indirect
241241
go.opencensus.io v0.24.0 // indirect
242-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
242+
go.opentelemetry.io/auto/sdk v1.2.0 // indirect
243243
go.opentelemetry.io/build-tools v0.27.0 // indirect
244244
go.opentelemetry.io/collector/pdata v1.38.0 // indirect
245245
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect

sdk/internal/telemetry/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.23.0
44

55
require (
66
github.com/stretchr/testify v1.11.1
7-
go.opentelemetry.io/auto/sdk v1.1.0
7+
go.opentelemetry.io/auto/sdk v1.2.0
88
go.opentelemetry.io/collector/pdata v1.38.0
99
)
1010

0 commit comments

Comments
 (0)