From 12591d57c67148abaf7e74b0bbeacf5c18d1f023 Mon Sep 17 00:00:00 2001 From: Joshua MacDonald Date: Thu, 11 Jan 2024 11:42:04 -0800 Subject: [PATCH] Release 1.24.0 (#601) **Description:** Removes a number of dependencies. Traces the trace SDK export request. See the [CHANGELOG](https://github.com/lightstep/otel-launcher-go/blob/main/CHANGELOG.md). --- CHANGELOG.md | 2 ++ 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, 15 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5f84dc7..fd1ad44a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## Unreleased +## [1.24.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.23.0) - 2024-01-11) + - Dependency update: Use OpenTelemetry Collector v0.92.0, OTel-Arrow v0.14.0. [#600](https://github.com/lightstep/otel-launcher-go/pull/600) - Trace exporter: always use LS instrumentation packages and OTel Collector export path, remove dependency on OTel-Go OTLP trace exporter. [#595](https://github.com/lightstep/otel-launcher-go/pull/595) - Metric exporter: always use LS metrics SDK and OTel Collector export path, remove dependency on OTel-Go OTLP metric exporter and OTel-Go-Contrib metric instrumentation. [#596](https://github.com/lightstep/otel-launcher-go/pull/596) diff --git a/VERSION b/VERSION index a6c2798a..53cc1a6f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.23.0 +1.24.0 diff --git a/go.mod b/go.mod index 3cad3eb3..360917b0 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/lightstep/otel-launcher-go go 1.21 require ( - github.com/lightstep/otel-launcher-go/pipelines v1.23.0 + github.com/lightstep/otel-launcher-go/pipelines v1.24.0 github.com/sethvargo/go-envconfig v0.8.3 github.com/stretchr/testify v1.8.4 go.opentelemetry.io/otel v1.21.0 @@ -39,9 +39,9 @@ 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.23.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.23.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.23.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.24.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.24.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.24.0 // indirect github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.23.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect diff --git a/launcher/version.go b/launcher/version.go index 44584f3b..0866daff 100644 --- a/launcher/version.go +++ b/launcher/version.go @@ -14,4 +14,4 @@ package launcher -const version = "1.23.0" +const version = "1.24.0" diff --git a/lightstep/sdk/metric/example/go.mod b/lightstep/sdk/metric/example/go.mod index 46c61bf6..2cedac78 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.23.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.24.0 github.com/lightstep/otel-launcher-go/pipelines v1.8.0 go.opentelemetry.io/proto/otlp v1.0.0 ) @@ -33,7 +33,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.23.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.24.0 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/mapstructure v1.5.1-0.20220423185008-bf980b35cac4 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect diff --git a/lightstep/sdk/metric/go.mod b/lightstep/sdk/metric/go.mod index 5f6c5092..d1cb6567 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.23.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.24.0 github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.14.0 github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.14.0 github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.14.0 diff --git a/lightstep/sdk/trace/go.mod b/lightstep/sdk/trace/go.mod index 439ebf4f..4fa07227 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.23.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.24.0 github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.14.0 github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.14.0 github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.14.0 diff --git a/pipelines/go.mod b/pipelines/go.mod index f12ef58b..fda9d16a 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.23.0 - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.23.0 + github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.24.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.24.0 github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.23.0 // For otelcol-based exporter configuration. @@ -47,7 +47,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.23.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.24.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/mapstructure v1.5.1-0.20220423185008-bf980b35cac4 // indirect