From 0262c12452cd82c61eb01c3545739867b05c7e6d Mon Sep 17 00:00:00 2001 From: Joshua MacDonald Date: Thu, 6 Jun 2024 11:17:24 -0700 Subject: [PATCH] Release 1.29 (#714) **Description:** Release version 1.29.0 with synchronous gauge support, depending on OTel Collector v0.102.x. See #713. --- 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 dd22e187..1379b99b 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.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) + ## [1.28.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.28.0) - 2024-04-12 - Dependency update: Use OpenTelemetry Collector v0.98.0, OTel-Arrow v0.21.0. [#678](https://github.com/lightstep/otel-launcher-go/pull/678) diff --git a/VERSION b/VERSION index cfc73071..5e57fb89 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.28.0 +1.29.0 diff --git a/go.mod b/go.mod index 0f5e1279..f239557d 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.21.0 toolchain go1.22.2 require ( - github.com/lightstep/otel-launcher-go/pipelines v1.28.0 + github.com/lightstep/otel-launcher-go/pipelines v1.29.0 github.com/sethvargo/go-envconfig v0.8.3 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/otel v1.27.0 @@ -41,9 +41,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.28.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.28.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.28.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/sdk/trace v1.25.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 b94dd1ae..41a925ce 100644 --- a/launcher/version.go +++ b/launcher/version.go @@ -14,4 +14,4 @@ package launcher -const version = "1.28.0" +const version = "1.29.0" diff --git a/lightstep/sdk/metric/example/go.mod b/lightstep/sdk/metric/example/go.mod index 16b0ba25..3fd9bfb7 100644 --- a/lightstep/sdk/metric/example/go.mod +++ b/lightstep/sdk/metric/example/go.mod @@ -5,7 +5,7 @@ go 1.21.0 toolchain go1.22.2 require ( - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.28.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.29.0 github.com/lightstep/otel-launcher-go/pipelines v1.8.0 go.opentelemetry.io/proto/otlp v1.2.0 ) @@ -35,7 +35,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.28.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.29.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 diff --git a/lightstep/sdk/metric/go.mod b/lightstep/sdk/metric/go.mod index 4267b071..6a00a59b 100644 --- a/lightstep/sdk/metric/go.mod +++ b/lightstep/sdk/metric/go.mod @@ -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.28.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.29.0 github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.24.0 github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.24.0 github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.24.0 diff --git a/lightstep/sdk/trace/go.mod b/lightstep/sdk/trace/go.mod index 6e320794..f8d8e438 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.28.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.29.0 github.com/open-telemetry/otel-arrow/collector/exporter/otelarrowexporter v0.21.0 github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.21.0 github.com/open-telemetry/otel-arrow/collector/receiver/otelarrowreceiver v0.21.0 diff --git a/pipelines/go.mod b/pipelines/go.mod index ea35ddcb..bde1564b 100644 --- a/pipelines/go.mod +++ b/pipelines/go.mod @@ -5,8 +5,8 @@ go 1.21.0 toolchain go1.22.2 require ( - github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.28.0 - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.28.0 + 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/sdk/trace v1.25.0 // For otelcol-based exporter configuration. @@ -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.28.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.29.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