From ffdd1b8b49792b356a318b0d772c367487233786 Mon Sep 17 00:00:00 2001 From: Joshua MacDonald Date: Mon, 27 Nov 2023 13:01:21 -0800 Subject: [PATCH] Release version 1.22.0 (#578) **Description:** This includes #569. --- CHANGELOG.md | 4 ++++ VERSION | 2 +- go.mod | 8 ++++---- launcher/version.go | 2 +- lightstep/sdk/metric/example/go.mod | 4 ++-- lightstep/sdk/metric/go.mod | 2 +- lightstep/sdk/trace/go.mod | 2 +- pipelines/go.mod | 6 +++--- 8 files changed, 17 insertions(+), 13 deletions(-) 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