File tree Expand file tree Collapse file tree 7 files changed +21
-9
lines changed
lightstep/sdk/metric/example Expand file tree Collapse file tree 7 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 1111 build :
1212 strategy :
1313 matrix :
14- go-version : [1.18 .x]
14+ go-version : [1.19 .x]
1515 name : Build
1616 runs-on : ubuntu-latest
1717 steps :
Original file line number Diff line number Diff line change @@ -8,6 +8,18 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88
99## Unreleased
1010
11+ ## [ 1.11.1] ( https://github.com/lightstep/otel-launcher-go/releases/tag/v1.11.0 ) - 2022-10-05
12+
13+ ### Bug fixes
14+
15+ - Updates required for tests to pass with go-1.19.x.
16+ [ #300 ] ( https://github.com/lightstep/otel-launcher-go/pull/300 )
17+
18+ ### Changed
19+
20+ - Print the metric name responsible for empty attributes
21+ [ #298 ] ( https://github.com/lightstep/otel-launcher-go/pull/298 )
22+
1123## [ 1.11.0] ( https://github.com/lightstep/otel-launcher-go/releases/tag/v1.11.0 ) - 2022-09-12
1224
1325🛑 [ BREAKING] The set of builtin, automatic metrics instrumentation
Original file line number Diff line number Diff line change 1- 1.11.0
1+ 1.11.1
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/lightstep/otel-launcher-go
33go 1.18
44
55require (
6- github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.0
7- github.com/lightstep/otel-launcher-go/pipelines v1.11.0
6+ github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1
7+ github.com/lightstep/otel-launcher-go/pipelines v1.11.1
88 github.com/sethvargo/go-envconfig v0.8.2
99 github.com/stretchr/testify v1.8.0
1010 go.opentelemetry.io/otel v1.10.0
@@ -23,7 +23,7 @@ require (
2323 github.com/golang/protobuf v1.5.2 // indirect
2424 github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
2525 github.com/kr/pretty v0.2.1 // indirect
26- github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.0 // indirect
26+ github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.1 // indirect
2727 github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
2828 github.com/pmezard/go-difflib v1.0.0 // indirect
2929 github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
Original file line number Diff line number Diff line change 1414
1515package launcher
1616
17- const version = "1.11.0 "
17+ const version = "1.11.1 "
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/lightstep/otel-launcher-go/lightstep/sdk/metric/example
33go 1.18
44
55require (
6- github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.0
6+ github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1
77 github.com/lightstep/otel-launcher-go/pipelines v1.8.0
88 go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.31.0
99 go.opentelemetry.io/proto/otlp v0.19.0
Original file line number Diff line number Diff line change 44
55require (
66 // Lightstep-alternate metric SDK
7- github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.0
7+ github.com/lightstep/otel-launcher-go/lightstep/sdk/metric v1.11.1
88
99 // Host and runtime instrumentation
1010 go.opentelemetry.io/contrib/instrumentation/host v0.33.0
@@ -56,7 +56,7 @@ require (
5656 google.golang.org/protobuf v1.28.1
5757)
5858
59- require github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.0
59+ require github.com/lightstep/otel-launcher-go/lightstep/instrumentation v1.11.1
6060
6161require (
6262 github.com/davecgh/go-spew v1.1.1 // indirect
You can’t perform that action at this time.
0 commit comments