File tree Expand file tree Collapse file tree 8 files changed +16
-14
lines changed
Expand file tree Collapse file tree 8 files changed +16
-14
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1- 1.30 .0
1+ 1.31 .0
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ go 1.22.0
55toolchain go1.22.6
66
77require (
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
Original file line number Diff line number Diff line change 1414
1515package launcher
1616
17- const version = "1.30 .0"
17+ const version = "1.31 .0"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ go 1.22.0
55toolchain go1.22.6
66
77require (
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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ toolchain go1.22.6
66
77require (
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
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ go 1.22.0
55toolchain go1.22.6
66
77require (
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
You can’t perform that action at this time.
0 commit comments