Skip to content

Commit

Permalink
Release v1.30 (#737)
Browse files Browse the repository at this point in the history
**Description:** See Changelog.

**Testing:** ✅
  • Loading branch information
jmacd authored Jul 17, 2024
1 parent 26e201b commit 332fc81
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 13 deletions.
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.30.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.30.0) - 2024-07-17

- Update OpenTelemetry-Arrow components to latest, now in collector-contrib. [#736](https://github.com/lightstep/otel-launcher-go/pull/736)

## [1.29.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.29.0) - 2024-06-06

- Update to OpenTelemetry-Go 1.27.0, including new Synchronous Gauge support. [#713](https://github.com/lightstep/otel-launcher-go/pull/713)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.29.0
1.30.0
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21.0
toolchain go1.22.2

require (
github.com/lightstep/otel-launcher-go/pipelines v1.29.0
github.com/lightstep/otel-launcher-go/pipelines v1.30.0
github.com/sethvargo/go-envconfig v0.8.3
github.com/stretchr/testify v1.9.0
go.opentelemetry.io/otel v1.28.0
Expand Down Expand Up @@ -42,9 +42,9 @@ require (
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
github.com/knadh/koanf/v2 v2.1.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.29.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.29.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.29.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.30.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.30.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.29.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/mitchellh/copystructure v1.2.0 // 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.29.0"
const version = "1.30.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 @@ -5,7 +5,7 @@ go 1.21.0
toolchain go1.22.2

require (
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.29.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.30.0
github.com/lightstep/otel-launcher-go/pipelines v1.29.0
go.opentelemetry.io/proto/otlp v1.3.1
)
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.1.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.29.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // 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 @@ -11,7 +11,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.29.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/otelarrowexporter v0.105.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otelarrowreceiver v0.105.0
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.25.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 @@ -6,7 +6,7 @@ toolchain go1.22.5

require (
github.com/google/go-cmp v0.6.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.29.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0
github.com/open-telemetry/opentelemetry-collector-contrib/exporter/otelarrowexporter v0.105.0
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otelarrowreceiver v0.105.0
github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.25.0
Expand Down
6 changes: 3 additions & 3 deletions pipelines/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ go 1.21.0
toolchain go1.22.2

require (
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.29.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.29.0
github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.30.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.30.0
github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.29.0

// For otelcol-based exporter configuration.
Expand Down Expand Up @@ -48,7 +48,7 @@ require (
github.com/knadh/koanf/providers/confmap v0.1.0 // indirect
github.com/knadh/koanf/v2 v2.1.1 // indirect
github.com/lightstep/go-expohisto v1.0.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.29.0 // indirect
github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.30.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
Expand Down

0 comments on commit 332fc81

Please sign in to comment.