Skip to content

Commit 620cbe1

Browse files
MrAliaspellared
andauthored
Release v0.8.0 (#726)
* Release v0.8.0 * Release v0.8.0 * Fix internal import version * Fix spelling error in changelog * Fix changelog * Add #492 to changelog * Apply suggestions from code review Co-authored-by: Robert Pająk <[email protected]> Co-authored-by: Robert Pająk <[email protected]>
1 parent ce2bf75 commit 620cbe1

File tree

33 files changed

+50
-44
lines changed

33 files changed

+50
-44
lines changed

CHANGELOG.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
## [Unreleased]
1010

11+
## [0.8.0] - 2022-04-05
12+
1113
### Added
1214

1315
- Add the `WithPropagator` option to
@@ -22,6 +24,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
2224
- Add the `WithLogger` option to `github.com/signalfx/splunk-otel-go/distro`
2325
along with parsing of the `OTEL_LOG_LEVEL` environment variable to set the
2426
logging level of the default logger used. (#336)
27+
- The `github.com/signalfx/splunk-otel-go/distro` package from
28+
`github.com/signalfx/splunk-otel-go` has been made into its own module.
29+
(#492)
2530
- The `SPLUNK_REALM` environment variable is now supported. If set, the
2631
exporter will use the corresponding Splunk ingest endpoint. (#725)
2732

@@ -33,14 +38,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3338
environment variable to `jaeger-thrift-splunk`, or by directly passing the
3439
user configured exporter with a `WithTraceExporter` option. (#300)
3540
- Update `go.opentelemetry.io/otel*` dependencies from [`v1.3.0`][otel-v1.3.0]
36-
to [`v1.6.1`][otel-v1.6.1]. (#656, #720)
41+
to [`v1.6.1`][otel-v1.6.1]. (#406, #471, #656, #721)
3742
- Update `go.opentelemetry.io/contrib*` dependencies from
38-
[`v1.4.0`/`v0.30.0`][contrib-v1.4.0] to [`v1.6.0`/`v0.31.0`][contrib-v1.6.0].
39-
(#720)
43+
[`v1.3.0`/`v0.28.0`][contrib-v1.3.0] to [`v1.6.0`/`v0.31.0`][contrib-v1.6.0].
44+
(#406, #721)
4045
- The `OTEL_TRACES_SAMPLER` environment variable is now honored instead of only
4146
defaulting to an always-on sampler. (#724)
4247
- Set span limits to the Splunk defaults (the link count is limited to 1000,
43-
the attribute value length is limited to 12000, and all other limts are set
48+
the attribute value length is limited to 12000, and all other limits are set
4449
to be unlimited) if they are not set by the user with environment variables.
4550
(#723)
4651

@@ -211,7 +216,8 @@ an impedance mismatch with this duplicate batching.
211216
- Add [`splunkhttp`](./instrumentation/net/http/splunkhttp) module providing
212217
additional Splunk specific instrumentation for `net/http`.
213218

214-
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v0.7.0...HEAD
219+
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v0.8.0...HEAD
220+
[0.8.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.8.0
215221
[0.7.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.7.0
216222
[0.6.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.6.0
217223
[0.4.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.4.0
@@ -229,7 +235,7 @@ an impedance mismatch with this duplicate batching.
229235
[otel-v0.19.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.19.0
230236

231237
[contrib-v1.6.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.6.0
232-
[contrib-v1.4.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.4.0
238+
[contrib-v1.3.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.3.0
233239
[contrib-v0.28.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.28.0
234240
[contrib-v0.23.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.23.0
235241
[contrib-v0.22.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.22.0

distro/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.16
55
require (
66
github.com/go-logr/logr v1.2.3
77
github.com/go-logr/zapr v1.2.3
8-
github.com/signalfx/splunk-otel-go v0.7.0
8+
github.com/signalfx/splunk-otel-go v0.8.0
99
github.com/stretchr/testify v1.7.1
1010
github.com/tonglil/buflogr v0.0.0-20220114010534-d490b3990d7e
1111
go.opentelemetry.io/contrib/propagators/aws v1.6.0

instrumentation/database/sql/splunksql/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql
33
go 1.16
44

55
require (
6-
github.com/signalfx/splunk-otel-go/instrumentation/internal v0.0.0-00010101000000-000000000000
6+
github.com/signalfx/splunk-otel-go/instrumentation/internal v0.8.0
77
github.com/stretchr/testify v1.7.1
88
go.opentelemetry.io/otel v1.6.1
99
go.opentelemetry.io/otel/trace v1.6.1

instrumentation/database/sql/splunksql/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql
33
go 1.16
44

55
require (
6-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v0.7.0
6+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v0.8.0
77
github.com/stretchr/testify v1.7.1
88
go.opentelemetry.io/otel v1.6.1
99
go.opentelemetry.io/otel/sdk v1.6.1

instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.16
44

55
require (
66
github.com/confluentinc/confluent-kafka-go v1.8.2
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v0.0.0-00010101000000-000000000000
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v0.8.0
88
github.com/stretchr/testify v1.7.1
99
go.opentelemetry.io/otel v1.6.1
1010
go.opentelemetry.io/otel/trace v1.6.1

instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.16
55
require (
66
github.com/confluentinc/confluent-kafka-go v1.8.2
77
github.com/ory/dockertest/v3 v3.8.1
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka v0.7.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka v0.8.0
99
github.com/stretchr/testify v1.7.1
1010
go.opentelemetry.io/otel v1.6.1
1111
go.opentelemetry.io/otel/sdk v1.6.1

instrumentation/github.com/go-chi/chi/splunkchi/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.16
44

55
require (
66
github.com/go-chi/chi v1.5.4
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v0.0.0-00010101000000-000000000000
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v0.8.0
88
go.opentelemetry.io/otel v1.6.1
99
go.opentelemetry.io/otel/trace v1.6.1
1010
)

instrumentation/github.com/go-chi/chi/splunkchi/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.16
44

55
require (
66
github.com/go-chi/chi v1.5.4
7-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-chi/chi/splunkchi v0.7.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-chi/chi/splunkchi v0.8.0
88
github.com/stretchr/testify v1.7.1
99
go.opentelemetry.io/otel v1.6.1
1010
go.opentelemetry.io/otel/sdk v1.6.1

instrumentation/github.com/go-sql-driver/mysql/splunkmysql/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.16
44

55
require (
66
github.com/go-sql-driver/mysql v1.6.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v0.7.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v0.8.0
88
github.com/stretchr/testify v1.7.1
99
)
1010

instrumentation/github.com/go-sql-driver/mysql/splunkmysql/test/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.16
44

55
require (
66
github.com/ory/dockertest/v3 v3.8.1
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v0.7.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-sql-driver/mysql/splunkmysql v0.7.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v0.8.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-sql-driver/mysql/splunkmysql v0.8.0
99
github.com/stretchr/testify v1.7.1
1010
go.opentelemetry.io/otel v1.6.1
1111
go.opentelemetry.io/otel/sdk v1.6.1

0 commit comments

Comments
 (0)