Skip to content

Commit

Permalink
Release v1.23.0 (#592)
Browse files Browse the repository at this point in the history
**Description:** Includes OTel-Arrow v0.13.0 improvements and additional
spans/metrics about metrics SDK export behavior, specifically.

See the changelog:
https://github.com/lightstep/otel-launcher-go/blob/main/CHANGELOG.md
  • Loading branch information
jmacd authored Dec 21, 2023
1 parent 55af80f commit b5a6920
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## Unreleased

## [1.23.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.23.0) - 2023-12-20)

- Update to OTel-Arrow v0.13.0 dependencies. [#591](https://github.com/lightstep/otel-launcher-go/pull/591)
- LS metrics SDK: Record a span and a metric about the outcome of export. [#590](https://github.com/lightstep/otel-launcher-go/pull/590)
- LS Metrics SDK add an `AttributeSizeLimit` [#588](https://github.com/lightstep/otel-launcher-go/pull/588)
- Change the name of the otelcol batch processor to indicate whether traces or metrics. [#587](https://github.com/lightstep/otel-launcher-go/pull/587)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.22.0
1.23.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.22.0
github.com/lightstep/otel-launcher-go/pipelines v1.22.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.23.0
github.com/lightstep/otel-launcher-go/pipelines v1.23.0
github.com/sethvargo/go-envconfig v0.8.3
github.com/stretchr/testify v1.8.4
go.opentelemetry.io/otel v1.21.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.22.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.22.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.23.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.23.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.22.0"
const version = "1.23.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.22.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.23.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.22.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.23.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.22.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.23.0
github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.13.0
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.13.0
github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.13.0
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.22.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.23.0
github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.13.0
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.13.0
github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.13.0
Expand Down
6 changes: 3 additions & 3 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.22.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.22.0
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.23.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.23.0
go.opentelemetry.io/collector/config/configtls v0.90.0
// Host and runtime instrumentation
go.opentelemetry.io/contrib/instrumentation/host v0.45.0
Expand Down Expand Up @@ -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.22.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.23.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

0 comments on commit b5a6920

Please sign in to comment.