Skip to content

Commit cf64eab

Browse files
authored
Release v0.10.0-alpha (#577)
* Bump version in versions.yaml * Prepare alpha for version v0.10.0-alpha * Update changelog * Update all expected "telemetry.auto.version" * Update CHANGELOG.md
1 parent a5bef4d commit cf64eab

File tree

9 files changed

+30
-18
lines changed

9 files changed

+30
-18
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [v0.10.0-alpha] - 2024-01-03
12+
13+
### Added
14+
15+
- Add `net.host.name`, `net.protocol.name`, `net.peer.name`, and `net.peer.port` attributes to HTTP server spans. ([#470](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/470)
16+
- Support version `v1.60.1` of `google.golang.org/grpc`. ([#568](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/568))
17+
18+
### Fixed
19+
20+
- Correct the target probe argument positions for the `v1.60.0` and greater versions of the `google.golang.org/grpc` server instrumentation. ([#574](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/574), [#576](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/576))
21+
- Do not instrument the OpenTelemetry default global implementation if the user has already set a delegate. ([#569](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/569))
22+
1123
## [v0.9.0-alpha] - 2023-12-14
1224

1325
### Added
@@ -47,7 +59,6 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http
4759
- Add the `WithTraceExporter` `InstrumentationOption` to configure the trace `SpanExporter` used by an `Instrumentation`. ([#426](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/426))
4860
- Add HTTP status code attribute to `net/http` server instrumentation. ([#428](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/428))
4961
- The instrumentation scope now includes the version of the auto-instrumentation project. ([#442](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/442))
50-
- Add `net.host.name`, `net.protocol.name`, `net.peer.name`, and `net.peer.port` attributes to HTTP server spans. ([#470]https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/470)
5162
- Add a new `WithSampler` method allowing end-users to provide their own implementation of OpenTelemetry sampler directly through the package API. ([#468](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/468)).
5263
- Add uprobes to `execDC` in order to instrument SQL DML. ([#475](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/475))
5364

@@ -244,7 +255,8 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http
244255

245256
This is the first release of OpenTelemetry Go Automatic Instrumentation.
246257

247-
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/compare/v0.9.0-alpha...HEAD
258+
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/compare/v0.10.0-alpha...HEAD
259+
[v0.10.0-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.10.0-alpha
248260
[v0.9.0-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.9.0-alpha
249261
[v0.8.0-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.8.0-alpha
250262
[v0.7.0-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.7.0-alpha

internal/test/e2e/databasesql/traces.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
"key": "telemetry.auto.version",
3232
"value": {
33-
"stringValue": "v0.9.0-alpha"
33+
"stringValue": "v0.10.0-alpha"
3434
}
3535
},
3636
{
@@ -46,7 +46,7 @@
4646
{
4747
"scope": {
4848
"name": "go.opentelemetry.io/auto/database/sql",
49-
"version": "v0.9.0-alpha"
49+
"version": "v0.10.0-alpha"
5050
},
5151
"spans": [
5252
{
@@ -70,7 +70,7 @@
7070
{
7171
"scope": {
7272
"name": "go.opentelemetry.io/auto/net/http",
73-
"version": "v0.9.0-alpha"
73+
"version": "v0.10.0-alpha"
7474
},
7575
"spans": [
7676
{

internal/test/e2e/gin/traces.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
"key": "telemetry.auto.version",
3232
"value": {
33-
"stringValue": "v0.9.0-alpha"
33+
"stringValue": "v0.10.0-alpha"
3434
}
3535
},
3636
{
@@ -46,7 +46,7 @@
4646
{
4747
"scope": {
4848
"name": "go.opentelemetry.io/auto/github.com/gin-gonic/gin",
49-
"version": "v0.9.0-alpha"
49+
"version": "v0.10.0-alpha"
5050
},
5151
"spans": [
5252
{
@@ -76,7 +76,7 @@
7676
{
7777
"scope": {
7878
"name": "go.opentelemetry.io/auto/net/http",
79-
"version": "v0.9.0-alpha"
79+
"version": "v0.10.0-alpha"
8080
},
8181
"spans": [
8282
{

internal/test/e2e/grpc/traces.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
"key": "telemetry.auto.version",
3232
"value": {
33-
"stringValue": "v0.9.0-alpha"
33+
"stringValue": "v0.10.0-alpha"
3434
}
3535
},
3636
{
@@ -46,7 +46,7 @@
4646
{
4747
"scope": {
4848
"name": "go.opentelemetry.io/auto/google.golang.org/grpc",
49-
"version": "v0.9.0-alpha"
49+
"version": "v0.10.0-alpha"
5050
},
5151
"spans": [
5252
{

internal/test/e2e/nethttp/traces.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
"key": "telemetry.auto.version",
3232
"value": {
33-
"stringValue": "v0.9.0-alpha"
33+
"stringValue": "v0.10.0-alpha"
3434
}
3535
},
3636
{
@@ -46,7 +46,7 @@
4646
{
4747
"scope": {
4848
"name": "go.opentelemetry.io/auto/net/http",
49-
"version": "v0.9.0-alpha"
49+
"version": "v0.10.0-alpha"
5050
},
5151
"spans": [
5252
{

internal/test/e2e/nethttp_custom/traces.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
"key": "telemetry.auto.version",
3232
"value": {
33-
"stringValue": "v0.9.0-alpha"
33+
"stringValue": "v0.10.0-alpha"
3434
}
3535
},
3636
{
@@ -46,7 +46,7 @@
4646
{
4747
"scope": {
4848
"name": "go.opentelemetry.io/auto/net/http",
49-
"version": "v0.9.0-alpha"
49+
"version": "v0.10.0-alpha"
5050
},
5151
"spans": [
5252
{

internal/test/e2e/otelglobal/traces.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
"key": "telemetry.auto.version",
3232
"value": {
33-
"stringValue": "v0.9.0-alpha"
33+
"stringValue": "v0.10.0-alpha"
3434
}
3535
},
3636
{
@@ -46,7 +46,7 @@
4646
{
4747
"scope": {
4848
"name": "go.opentelemetry.io/auto/go.opentelemetry.io/otel/internal/global",
49-
"version": "v0.9.0-alpha"
49+
"version": "v0.10.0-alpha"
5050
},
5151
"spans": [
5252
{

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ package auto
1616

1717
// Version is the current release version of OpenTelemetry Go auto-instrumentation in use.
1818
func Version() string {
19-
return "v0.9.0-alpha"
19+
return "v0.10.0-alpha"
2020
}

versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
module-sets:
1616
alpha:
17-
version: v0.9.0-alpha
17+
version: v0.10.0-alpha
1818
modules:
1919
- go.opentelemetry.io/auto
2020
excluded-modules:

0 commit comments

Comments
 (0)