diff --git a/CHANGELOG.md b/CHANGELOG.md index ace9e8f5..465b579d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Unreleased +## [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) + ## [1.21.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.21.0) - 2023-11-03) - Release based on OTel Collector v0.88 dependencies. [#539](https://github.com/lightstep/otel-launcher-go/pull/539) 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 1faf6191..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 v1.21.0 + 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,8 +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/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 e32db5ed..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,7 +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/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 42b0715f..a58c3c39 100644 --- a/lightstep/sdk/metric/go.mod +++ b/lightstep/sdk/metric/go.mod @@ -9,7 +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/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 c38946c0..64ce2241 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