Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 1.22.0 #578

Merged
merged 2 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.21.0
1.22.0
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion launcher/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

package launcher

const version = "1.21.0"
const version = "1.22.0"
4 changes: 2 additions & 2 deletions lightstep/sdk/metric/example/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lightstep/sdk/metric/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lightstep/sdk/trace/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pipelines/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading