Skip to content

Commit eb452ca

Browse files
authored
Release version 1.31.0 (#761)
- SDK-internal metrics: replace "otelcol_" prefix with "otelsdk_" [#760](#760) - Traces exporter: allow custom meter/trace providers [#739](#739) - Use correct default retry settings. [#741](#741)
1 parent 8afd5cc commit eb452ca

File tree

8 files changed

+16
-14
lines changed

8 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
## Unreleased
1010

11-
- Metrics/Traces exporter [#760](https://github.com/lightstep/otel-launcher-go/pull/760)
11+
## [1.31.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.31.0) - 2024-09-06
12+
13+
- SDK-internal metrics: replace "otelcol_" prefix with "otelsdk_" [#760](https://github.com/lightstep/otel-launcher-go/pull/760)
1214
- Traces exporter: allow custom meter/trace providers [#739](https://github.com/lightstep/otel-launcher-go/pull/739)
1315
- Use correct default retry settings. [#741](https://github.com/lightstep/otel-launcher-go/pull/741)
1416

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.30.0
1+
1.31.0

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22.0
55
toolchain go1.22.6
66

77
require (
8-
github.com/lightstep/otel-launcher-go/pipelines v1.30.0
8+
github.com/lightstep/otel-launcher-go/pipelines v1.31.0
99
github.com/sethvargo/go-envconfig v0.8.3
1010
github.com/stretchr/testify v1.9.0
1111
go.opentelemetry.io/otel v1.29.0
@@ -43,9 +43,9 @@ require (
4343
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
4444
github.com/knadh/koanf/v2 v2.1.1 // indirect
4545
github.com/lightstep/go-expohisto v1.0.0 // indirect
46-
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.30.0 // indirect
47-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0 // indirect
48-
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.30.0 // indirect
46+
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.31.0 // indirect
47+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0 // indirect
48+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.31.0 // indirect
4949
github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.29.0 // indirect
5050
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
5151
github.com/mitchellh/copystructure v1.2.0 // indirect

launcher/version.go

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

1515
package launcher
1616

17-
const version = "1.30.0"
17+
const version = "1.31.0"

lightstep/sdk/metric/example/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22.0
55
toolchain go1.22.6
66

77
require (
8-
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.30.0
8+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.31.0
99
github.com/lightstep/otel-launcher-go/pipelines v1.29.0
1010
go.opentelemetry.io/proto/otlp v1.3.1
1111
)
@@ -37,7 +37,7 @@ require (
3737
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
3838
github.com/knadh/koanf/v2 v2.1.1 // indirect
3939
github.com/lightstep/go-expohisto v1.0.0 // indirect
40-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0 // indirect
40+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0 // indirect
4141
github.com/mitchellh/copystructure v1.2.0 // indirect
4242
github.com/mitchellh/reflectwalk v1.0.2 // indirect
4343
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect

lightstep/sdk/metric/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/golang/mock v1.6.0
1212
github.com/google/go-cmp v0.6.0
1313
github.com/lightstep/go-expohisto v1.0.0
14-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0
14+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0
1515
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/otelarrowexporter v0.108.0
1616
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otelarrowreceiver v0.108.0
1717
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.26.0

lightstep/sdk/trace/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.22.6
66

77
require (
88
github.com/google/go-cmp v0.6.0
9-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0
9+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0
1010
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/otelarrowexporter v0.108.0
1111
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otelarrowreceiver v0.108.0
1212
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.26.0

pipelines/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.22.0
55
toolchain go1.22.6
66

77
require (
8-
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.30.0
9-
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.30.0
8+
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.31.0
9+
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.31.0
1010
github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.29.0
1111

1212
// For otelcol-based exporter configuration.
@@ -48,7 +48,7 @@ require (
4848
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
4949
github.com/knadh/koanf/v2 v2.1.1 // indirect
5050
github.com/lightstep/go-expohisto v1.0.0 // indirect
51-
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0 // indirect
51+
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0 // indirect
5252
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
5353
github.com/mitchellh/copystructure v1.2.0 // indirect
5454
github.com/mitchellh/reflectwalk v1.0.2 // indirect

0 commit comments

Comments
 (0)