Skip to content

Commit 0742633

Browse files
authored
Release 1.19.0 (#3401)
1 parent 95eeb03 commit 0742633

File tree

50 files changed

+84
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+84
-76
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [1.19.0] - 2024-09-03
12+
13+
This release upgrades [OpenTelemetry Go to v1.29.0/v0.51.0/v0.5.0][otel-v1.29.0]
14+
and [OpenTelemetry Go Contrib to v1.29.0/v0.54.0/v0.23.0/v0.9.0/v0.4.0/v0.2.0/v0.1.0][contrib-v1.29.0].
15+
1116
### Added
1217

1318
- Add container attributes to resource if available. (#3374)
@@ -589,7 +594,8 @@ an impedance mismatch with this duplicate batching.
589594
- Add [`splunkhttp`](./instrumentation/net/http/splunkhttp) module providing
590595
additional Splunk specific instrumentation for `net/http`.
591596

592-
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v1.18.0...HEAD
597+
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v1.19.0...HEAD
598+
[1.19.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.19.0
593599
[1.18.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.18.0
594600
[1.17.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.17.0
595601
[1.16.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.16.0
@@ -620,6 +626,7 @@ an impedance mismatch with this duplicate batching.
620626
[0.2.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.2.0
621627
[0.1.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.1.0
622628

629+
[otel-v1.29.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.29.0
623630
[otel-v1.28.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.28.0
624631
[otel-v1.27.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.27.0
625632
[otel-v1.26.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.26.0
@@ -648,6 +655,7 @@ an impedance mismatch with this duplicate batching.
648655
[otel-v0.20.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.20.0
649656
[otel-v0.19.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.19.0
650657

658+
[contrib-v1.29.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.29.0
651659
[contrib-v1.28.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.28.0
652660
[contrib-v1.27.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.27.0
653661
[contrib-v1.26.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.26.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Splunk Distribution of OpenTelemetry Go
22

3-
[![OpenTelemetry Go](https://img.shields.io/badge/OTel-1.28.0-blueviolet)](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.28.0)
3+
[![OpenTelemetry Go](https://img.shields.io/badge/OTel-1.29.0-blueviolet)](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.29.0)
44
[![Splunk GDI Specification](https://img.shields.io/badge/GDI-1.6.0-blueviolet)](https://github.com/signalfx/gdi-specification/releases/tag/v1.6.0)
55
[![GitHub Release](https://img.shields.io/github/v/release/signalfx/splunk-otel-go?include_prereleases)](https://github.com/signalfx/splunk-otel-go/releases)
66
[![Go Reference](https://pkg.go.dev/badge/github.com/signalfx/splunk-otel-go.svg)](https://pkg.go.dev/github.com/signalfx/splunk-otel-go)

distro/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ package distro
1616

1717
// Version returns the version of distro.
1818
func Version() string {
19-
return "1.18.0"
19+
return "1.19.0"
2020
}

example/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/signalfx/splunk-otel-go/example
33
go 1.21
44

55
require (
6-
github.com/signalfx/splunk-otel-go/distro v1.18.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/net/http/splunkhttp v1.18.0
6+
github.com/signalfx/splunk-otel-go/distro v1.19.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/net/http/splunkhttp v1.19.0
88
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0
99
golang.org/x/sync v0.8.0
1010
)

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.21
44

55
require (
6-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.18.0
6+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.19.0
77
github.com/stretchr/testify v1.9.0
88
go.opentelemetry.io/otel v1.29.0
99
go.opentelemetry.io/otel/metric v1.29.0

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

Lines changed: 2 additions & 2 deletions
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.21
44

55
require (
6-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.18.0
6+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.19.0
77
github.com/stretchr/testify v1.9.0
88
go.opentelemetry.io/otel v1.29.0
99
go.opentelemetry.io/otel/sdk v1.29.0
@@ -19,7 +19,7 @@ require (
1919
github.com/google/uuid v1.6.0 // indirect
2020
github.com/kr/text v0.2.0 // indirect
2121
github.com/pmezard/go-difflib v1.0.0 // indirect
22-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.18.0 // indirect
22+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.19.0 // indirect
2323
go.opentelemetry.io/otel/metric v1.29.0 // indirect
2424
golang.org/x/sys v0.24.0 // indirect
2525
gopkg.in/yaml.v3 v3.0.1 // indirect

instrumentation/database/sql/splunksql/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ package splunksql
1616

1717
// Version returns the version of splunksql.
1818
func Version() string {
19-
return "1.18.0"
19+
return "1.19.0"
2020
}

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.21
44

55
require (
66
github.com/confluentinc/confluent-kafka-go v1.9.2
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.18.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.19.0
88
github.com/stretchr/testify v1.9.0
99
go.opentelemetry.io/otel v1.29.0
1010
go.opentelemetry.io/otel/trace v1.29.0

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21
55
require (
66
github.com/confluentinc/confluent-kafka-go v1.9.2
77
github.com/ory/dockertest/v3 v3.10.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka v1.18.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka v1.19.0
99
github.com/stretchr/testify v1.9.0
1010
go.opentelemetry.io/otel v1.29.0
1111
go.opentelemetry.io/otel/sdk v1.29.0
@@ -38,7 +38,7 @@ require (
3838
github.com/opencontainers/runc v1.1.14 // indirect
3939
github.com/pkg/errors v0.9.1 // indirect
4040
github.com/pmezard/go-difflib v1.0.0 // indirect
41-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.18.0 // indirect
41+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.19.0 // indirect
4242
github.com/sirupsen/logrus v1.9.3 // indirect
4343
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
4444
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ package splunkkafka
2020

2121
// Version returns the version of splunkkafka.
2222
func Version() string {
23-
return "1.18.0"
23+
return "1.19.0"
2424
}

0 commit comments

Comments
 (0)