diff --git a/CHANGELOG.md b/CHANGELOG.md index 23556031..0ae257ab 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.32.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.32.0) - 2024-10-15 + +- Add Prometheus exporter. [#775](https://github.com/lightstep/otel-launcher-go/pull/775) + ## [1.31.0](https://github.com/lightstep/otel-launcher-go/releases/tag/v1.31.0) - 2024-09-06 - SDK-internal metrics: replace "otelcol_" prefix with "otelsdk_" [#760](https://github.com/lightstep/otel-launcher-go/pull/760) diff --git a/VERSION b/VERSION index 34aae156..359c4108 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.31.0 +1.32.0 diff --git a/go.mod b/go.mod index 07355460..b35f8f83 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.22.0 toolchain go1.22.6 require ( - github.com/lightstep/otel-launcher-go/pipelines v1.31.0 + github.com/lightstep/otel-launcher-go/pipelines v1.32.0 github.com/sethvargo/go-envconfig v0.8.3 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/otel v1.31.0 @@ -38,9 +38,9 @@ require ( github.com/klauspost/compress v1.17.10 // indirect github.com/klauspost/cpuid/v2 v2.2.8 // indirect github.com/lightstep/go-expohisto v1.0.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.31.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.31.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.32.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.32.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.32.0 // indirect github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.31.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect diff --git a/launcher/version.go b/launcher/version.go index 212245fa..d7829808 100644 --- a/launcher/version.go +++ b/launcher/version.go @@ -14,4 +14,4 @@ package launcher -const version = "1.31.0" +const version = "1.32.0" diff --git a/lightstep/sdk/metric/example/go.mod b/lightstep/sdk/metric/example/go.mod index f8a995d5..20b0de87 100644 --- a/lightstep/sdk/metric/example/go.mod +++ b/lightstep/sdk/metric/example/go.mod @@ -5,7 +5,7 @@ go 1.22.0 toolchain go1.22.6 require ( - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.31.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.32.0 github.com/lightstep/otel-launcher-go/pipelines v1.31.0 go.opentelemetry.io/proto/otlp v1.3.1 ) @@ -33,7 +33,7 @@ require ( github.com/klauspost/compress v1.17.10 // indirect github.com/klauspost/cpuid/v2 v2.2.8 // indirect github.com/lightstep/go-expohisto v1.0.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.32.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/mostynb/go-grpc-compression v1.2.3 // indirect diff --git a/lightstep/sdk/metric/go.mod b/lightstep/sdk/metric/go.mod index ecd8cbba..46758142 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.31.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.32.0 github.com/open-telemetry/opentelemetry-collector-contrib/exporter/otelarrowexporter v0.111.0 github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter v0.111.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/resourcetotelemetry v0.111.0 diff --git a/lightstep/sdk/trace/go.mod b/lightstep/sdk/trace/go.mod index 2667a460..a3095a44 100644 --- a/lightstep/sdk/trace/go.mod +++ b/lightstep/sdk/trace/go.mod @@ -6,7 +6,7 @@ toolchain go1.22.6 require ( github.com/google/go-cmp v0.6.0 - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.32.0 github.com/open-telemetry/opentelemetry-collector-contrib/exporter/otelarrowexporter v0.111.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otelarrowreceiver v0.111.0 github.com/open-telemetry/otel-arrow/collector/processor/concurrentbatchprocessor v0.28.0 diff --git a/pipelines/go.mod b/pipelines/go.mod index 77838f05..aabe207f 100644 --- a/pipelines/go.mod +++ b/pipelines/go.mod @@ -5,8 +5,8 @@ go 1.22.0 toolchain go1.22.6 require ( - github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.31.0 - github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.31.0 + github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.32.0 + github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.32.0 github.com/lightstep/otel-launcher-go/lightstep/sdk/trace v1.31.0 // For otelcol-based exporter configuration. @@ -44,7 +44,7 @@ require ( github.com/klauspost/compress v1.17.10 // indirect github.com/klauspost/cpuid/v2 v2.2.8 // indirect github.com/lightstep/go-expohisto v1.0.0 // indirect - github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.31.0 // indirect + github.com/lightstep/otel-launcher-go/lightstep/sdk/internal v1.32.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect