diff --git a/CHANGELOG.md b/CHANGELOG.md index ace4e9ee..b51ad392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Unreleased +- Add Exemplar support in the Lightstep Metrics SDK. [#576](https://github.com/lightstep/otel-launcher-go/pull/576) + +## [1.22.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.22.0) - 2023-11-27) + - Use the OTel-Arrow concurrent batch processor in SDK exporters based on the OTel collector. [#569](https://github.com/lightstep/otel-launcher-go/pull/569) - - Add Exemplar support in the Lightstep Metrics SDK. [#576](https://github.com/lightstep/otel-launcher-go/pull/576) ## [1.21.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.21.0) - 2023-11-03) diff --git a/VERSION b/VERSION index 3500250a..57807d6d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.21.0 +1.22.0 diff --git a/go.mod b/go.mod index c8470152..4f1df7bf 100644 --- a/go.mod +++ b/go.mod @@ -3,8 +3,8 @@ module github.com/lightstep/otel-launcher-go go 1.21 require ( - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.21.0 - github.com/lightstep/otel-launcher-go/pipelines v0.0.0-00010101000000-000000000000 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.22.0 + github.com/lightstep/otel-launcher-go/pipelines v1.22.0 github.com/sethvargo/go-envconfig v0.8.3 github.com/stretchr/testify v1.8.4 go.opentelemetry.io/otel v1.20.0 @@ -43,9 +43,8 @@ require ( github.com/knadh/koanf/providers/confmap v0.1.0 // indirect github.com/knadh/koanf/v2 v2.0.1 // indirect github.com/lightstep/go-expohisto v1.0.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.21.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0 // indirect - github.com/lightstep/varopt v0.0.0-20231127170257-a0a62cb6787c // indirect + github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.22.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.22.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect diff --git a/launcher/version.go b/launcher/version.go index c88128f5..10dda846 100644 --- a/launcher/version.go +++ b/launcher/version.go @@ -14,4 +14,4 @@ package launcher -const version = "1.21.0" +const version = "1.22.0" diff --git a/lightstep/sdk/metric/example/go.mod b/lightstep/sdk/metric/example/go.mod index 77ec11f9..3676d783 100644 --- a/lightstep/sdk/metric/example/go.mod +++ b/lightstep/sdk/metric/example/go.mod @@ -3,7 +3,7 @@ module github.com/lightstep/otel-launcher-go/lightstep/sdk/metric/example go 1.21 require ( - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.21.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.22.0 github.com/lightstep/otel-launcher-go/pipelines v1.8.0 go.opentelemetry.io/proto/otlp v1.0.0 ) @@ -36,8 +36,7 @@ require ( github.com/knadh/koanf/providers/confmap v0.1.0 // indirect github.com/knadh/koanf/v2 v2.0.1 // indirect github.com/lightstep/go-expohisto v1.0.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0 // indirect - github.com/lightstep/varopt v0.0.0-20231127170257-a0a62cb6787c // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.22.0 // indirect github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect diff --git a/lightstep/sdk/metric/go.mod b/lightstep/sdk/metric/go.mod index 1fca24f2..a58c3c39 100644 --- a/lightstep/sdk/metric/go.mod +++ b/lightstep/sdk/metric/go.mod @@ -9,8 +9,7 @@ require ( github.com/golang/mock v1.6.0 github.com/google/go-cmp v0.6.0 github.com/lightstep/go-expohisto v1.0.0 - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0 - github.com/lightstep/varopt v0.0.0-20231127170257-a0a62cb6787c + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.22.0 github.com/open-telemetry/otel-arrow/collector v0.6.0 github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.10.0 github.com/stretchr/testify v1.8.4 diff --git a/lightstep/sdk/trace/go.mod b/lightstep/sdk/trace/go.mod index 9d393a3b..2be44ea6 100644 --- a/lightstep/sdk/trace/go.mod +++ b/lightstep/sdk/trace/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/google/go-cmp v0.6.0 - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.22.0 github.com/open-telemetry/otel-arrow/collector v0.6.0 github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.10.0 github.com/stretchr/testify v1.8.4 diff --git a/pipelines/go.mod b/pipelines/go.mod index fefc9108..3681facb 100644 --- a/pipelines/go.mod +++ b/pipelines/go.mod @@ -3,8 +3,8 @@ module github.com/lightstep/otel-launcher-go/pipelines go 1.21 require ( - github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.21.0 - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.21.0 + github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.22.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.22.0 go.opentelemetry.io/collector/config/configtls v0.88.0 // Host and runtime instrumentation go.opentelemetry.io/contrib/instrumentation/host v0.45.0 @@ -55,7 +55,7 @@ require ( github.com/knadh/koanf/maps v0.1.1 // indirect github.com/knadh/koanf/v2 v2.0.1 // indirect github.com/lightstep/go-expohisto v1.0.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.21.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.22.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect