Skip to content

Commit bcfa4bd

Browse files
authored
Release 1.17.0 (#3271)
This release upgrades [OpenTelemetry Go to v1.27.0/v0.49.0/v0.3.0][otel-v1.27.0] and [OpenTelemetry Go Contrib to v1.27.0/v0.52.0/v0.21.0/v0.7.0/v0.2.0][contrib-v1.27.0]. [otel-v1.27.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.27.0 [contrib-v1.27.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.27.0
1 parent 4d1c136 commit bcfa4bd

File tree

49 files changed

+83
-75
lines changed

Some content is hidden

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

49 files changed

+83
-75
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.17.0] - 2024-05-22
12+
13+
This release upgrades [OpenTelemetry Go to v1.27.0/v0.49.0/v0.3.0][otel-v1.27.0]
14+
and [OpenTelemetry Go Contrib to v1.27.0/v0.52.0/v0.21.0/v0.7.0/v0.2.0][contrib-v1.27.0].
15+
1116
## [1.16.0] - 2024-04-26
1217

1318
This release upgrades [OpenTelemetry Go to v1.26.0/v0.48.0/v0.2.0-alpha][otel-v1.26.0]
@@ -575,7 +580,8 @@ an impedance mismatch with this duplicate batching.
575580
- Add [`splunkhttp`](./instrumentation/net/http/splunkhttp) module providing
576581
additional Splunk specific instrumentation for `net/http`.
577582

578-
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v1.16.0...HEAD
583+
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v1.17.0...HEAD
584+
[1.17.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.17.0
579585
[1.16.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.16.0
580586
[1.15.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.15.0
581587
[1.14.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.14.0
@@ -604,6 +610,7 @@ an impedance mismatch with this duplicate batching.
604610
[0.2.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.2.0
605611
[0.1.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.1.0
606612

613+
[otel-v1.27.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.27.0
607614
[otel-v1.26.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.26.0
608615
[otel-v1.25.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.25.0
609616
[otel-v1.24.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.24.0
@@ -630,6 +637,7 @@ an impedance mismatch with this duplicate batching.
630637
[otel-v0.20.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.20.0
631638
[otel-v0.19.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.19.0
632639

640+
[contrib-v1.27.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.27.0
633641
[contrib-v1.26.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.26.0
634642
[contrib-v1.25.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.25.0
635643
[contrib-v1.24.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.24.0

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.16.0"
19+
return "1.17.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.16.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/net/http/splunkhttp v1.16.0
6+
github.com/signalfx/splunk-otel-go/distro v1.17.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/net/http/splunkhttp v1.17.0
88
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.52.0
99
golang.org/x/sync v0.7.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.16.0
6+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0
77
github.com/stretchr/testify v1.9.0
88
go.opentelemetry.io/otel v1.27.0
99
go.opentelemetry.io/otel/metric v1.27.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.16.0
6+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.17.0
77
github.com/stretchr/testify v1.9.0
88
go.opentelemetry.io/otel v1.27.0
99
go.opentelemetry.io/otel/sdk v1.27.0
@@ -18,7 +18,7 @@ require (
1818
github.com/go-logr/stdr v1.2.2 // indirect
1919
github.com/kr/text v0.2.0 // indirect
2020
github.com/pmezard/go-difflib v1.0.0 // indirect
21-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
21+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
2222
go.opentelemetry.io/otel/metric v1.27.0 // indirect
2323
golang.org/x/sys v0.20.0 // indirect
2424
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.16.0"
19+
return "1.17.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.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0
88
github.com/stretchr/testify v1.9.0
99
go.opentelemetry.io/otel v1.27.0
1010
go.opentelemetry.io/otel/trace v1.27.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.16.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka v1.17.0
99
github.com/stretchr/testify v1.9.0
1010
go.opentelemetry.io/otel v1.27.0
1111
go.opentelemetry.io/otel/sdk v1.27.0
@@ -36,7 +36,7 @@ require (
3636
github.com/opencontainers/runc v1.1.12 // indirect
3737
github.com/pkg/errors v0.9.1 // indirect
3838
github.com/pmezard/go-difflib v1.0.0 // indirect
39-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
39+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
4040
github.com/sirupsen/logrus v1.9.3 // indirect
4141
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
4242
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.16.0"
23+
return "1.17.0"
2424
}

instrumentation/github.com/confluentinc/confluent-kafka-go/v2/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/v2 v2.4.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0
88
github.com/stretchr/testify v1.9.0
99
go.opentelemetry.io/otel v1.27.0
1010
go.opentelemetry.io/otel/trace v1.27.0

instrumentation/github.com/confluentinc/confluent-kafka-go/v2/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/v2 v2.4.0
77
github.com/ory/dockertest/v3 v3.10.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/v2/kafka/splunkkafka v1.16.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/v2/kafka/splunkkafka v1.17.0
99
github.com/stretchr/testify v1.9.0
1010
go.opentelemetry.io/otel v1.27.0
1111
go.opentelemetry.io/otel/sdk v1.27.0
@@ -38,7 +38,7 @@ require (
3838
github.com/opencontainers/runc v1.1.12 // 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.16.0 // indirect
41+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.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/v2/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.16.0"
23+
return "1.17.0"
2424
}

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

55
require (
66
github.com/go-chi/chi v1.5.5
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0
88
go.opentelemetry.io/otel v1.27.0
99
go.opentelemetry.io/otel/trace v1.27.0
1010
)

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

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

55
require (
66
github.com/go-chi/chi v1.5.5
7-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-chi/chi/splunkchi v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-chi/chi/splunkchi v1.17.0
88
github.com/stretchr/testify v1.9.0
99
go.opentelemetry.io/otel v1.27.0
1010
go.opentelemetry.io/otel/sdk v1.27.0
@@ -16,7 +16,7 @@ require (
1616
github.com/go-logr/logr v1.4.2 // indirect
1717
github.com/go-logr/stdr v1.2.2 // indirect
1818
github.com/pmezard/go-difflib v1.0.0 // indirect
19-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
19+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
2020
go.opentelemetry.io/otel/metric v1.27.0 // indirect
2121
golang.org/x/sys v0.20.0 // indirect
2222
gopkg.in/yaml.v3 v3.0.1 // indirect

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

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

1717
// Version returns the version of splunkchi.
1818
func Version() string {
19-
return "1.16.0"
19+
return "1.17.0"
2020
}

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

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

55
require (
66
github.com/go-sql-driver/mysql v1.8.1
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.17.0
88
github.com/stretchr/testify v1.9.0
99
)
1010

@@ -14,7 +14,7 @@ require (
1414
github.com/go-logr/logr v1.4.2 // indirect
1515
github.com/go-logr/stdr v1.2.2 // indirect
1616
github.com/pmezard/go-difflib v1.0.0 // indirect
17-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
17+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
1818
go.opentelemetry.io/otel v1.27.0 // indirect
1919
go.opentelemetry.io/otel/metric v1.27.0 // indirect
2020
go.opentelemetry.io/otel/trace v1.27.0 // indirect

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

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

55
require (
66
github.com/ory/dockertest/v3 v3.10.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.16.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-sql-driver/mysql/splunkmysql v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.17.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-sql-driver/mysql/splunkmysql v1.17.0
99
github.com/stretchr/testify v1.9.0
1010
go.opentelemetry.io/otel v1.27.0
1111
go.opentelemetry.io/otel/sdk v1.27.0
@@ -36,7 +36,7 @@ require (
3636
github.com/opencontainers/runc v1.1.12 // indirect
3737
github.com/pkg/errors v0.9.1 // indirect
3838
github.com/pmezard/go-difflib v1.0.0 // indirect
39-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
39+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
4040
github.com/sirupsen/logrus v1.9.3 // indirect
4141
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
4242
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect

instrumentation/github.com/gomodule/redigo/splunkredigo/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/gomodule/redigo v1.9.2
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0
88
github.com/stretchr/testify v1.9.0
99
go.opentelemetry.io/otel v1.27.0
1010
go.opentelemetry.io/otel/trace v1.27.0

instrumentation/github.com/gomodule/redigo/splunkredigo/redis/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/gomodule/redigo v1.9.2
77
github.com/ory/dockertest v3.3.5+incompatible
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/gomodule/redigo/splunkredigo v1.16.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/gomodule/redigo/splunkredigo v1.17.0
99
github.com/stretchr/testify v1.9.0
1010
go.opentelemetry.io/otel v1.27.0
1111
go.opentelemetry.io/otel/sdk v1.27.0
@@ -30,7 +30,7 @@ require (
3030
github.com/opencontainers/runc v1.1.12 // indirect
3131
github.com/pkg/errors v0.9.1 // indirect
3232
github.com/pmezard/go-difflib v1.0.0 // indirect
33-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
33+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
3434
github.com/sirupsen/logrus v1.9.3 // indirect
3535
go.opentelemetry.io/otel/metric v1.27.0 // indirect
3636
golang.org/x/net v0.25.0 // indirect

instrumentation/github.com/gomodule/redigo/splunkredigo/version.go

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

1717
// Version returns the version of splunkredigo.
1818
func Version() string {
19-
return "1.16.0"
19+
return "1.17.0"
2020
}

instrumentation/github.com/graph-gophers/graphql-go/splunkgraphql/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/graph-gophers/graphql-go v1.5.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0
88
go.opentelemetry.io/otel v1.27.0
99
go.opentelemetry.io/otel/trace v1.27.0
1010
)

instrumentation/github.com/graph-gophers/graphql-go/splunkgraphql/test/go.mod

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

55
require (
66
github.com/graph-gophers/graphql-go v1.5.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/graph-gophers/graphql-go/splunkgraphql v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/graph-gophers/graphql-go/splunkgraphql v1.17.0
88
github.com/stretchr/testify v1.9.0
99
go.opentelemetry.io/otel/sdk v1.27.0
1010
go.opentelemetry.io/otel/trace v1.27.0
@@ -15,7 +15,7 @@ require (
1515
github.com/go-logr/logr v1.4.2 // indirect
1616
github.com/go-logr/stdr v1.2.2 // indirect
1717
github.com/pmezard/go-difflib v1.0.0 // indirect
18-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
18+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
1919
go.opentelemetry.io/otel v1.27.0 // indirect
2020
go.opentelemetry.io/otel/metric v1.27.0 // indirect
2121
golang.org/x/sys v0.20.0 // indirect

instrumentation/github.com/graph-gophers/graphql-go/splunkgraphql/version.go

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

1717
// Version returns the version of splunkgraphql.
1818
func Version() string {
19-
return "1.16.0"
19+
return "1.17.0"
2020
}

instrumentation/github.com/jackc/pgx/splunkpgx/go.mod

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

55
require (
66
github.com/jackc/pgx/v4 v4.18.3
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.17.0
88
github.com/stretchr/testify v1.9.0
99
)
1010

@@ -20,7 +20,7 @@ require (
2020
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
2121
github.com/jackc/pgtype v1.14.3 // indirect
2222
github.com/pmezard/go-difflib v1.0.0 // indirect
23-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
23+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
2424
go.opentelemetry.io/otel v1.27.0 // indirect
2525
go.opentelemetry.io/otel/metric v1.27.0 // indirect
2626
go.opentelemetry.io/otel/trace v1.27.0 // indirect

instrumentation/github.com/jackc/pgx/splunkpgx/test/go.mod

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

55
require (
66
github.com/ory/dockertest/v3 v3.10.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.16.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/jackc/pgx/splunkpgx v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.17.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/jackc/pgx/splunkpgx v1.17.0
99
github.com/stretchr/testify v1.9.0
1010
go.opentelemetry.io/otel v1.27.0
1111
go.opentelemetry.io/otel/sdk v1.27.0
@@ -42,7 +42,7 @@ require (
4242
github.com/opencontainers/runc v1.1.12 // indirect
4343
github.com/pkg/errors v0.9.1 // indirect
4444
github.com/pmezard/go-difflib v1.0.0 // indirect
45-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
45+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
4646
github.com/sirupsen/logrus v1.9.3 // indirect
4747
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
4848
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect

instrumentation/github.com/jackc/pgx/v5/splunkpgx/go.mod

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

55
require (
66
github.com/jackc/pgx/v5 v5.5.5
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.17.0
88
github.com/stretchr/testify v1.9.0
99
)
1010

@@ -18,7 +18,7 @@ require (
1818
github.com/kr/text v0.2.0 // indirect
1919
github.com/pmezard/go-difflib v1.0.0 // indirect
2020
github.com/rogpeppe/go-internal v1.12.0 // indirect
21-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
21+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
2222
go.opentelemetry.io/otel v1.27.0 // indirect
2323
go.opentelemetry.io/otel/metric v1.27.0 // indirect
2424
go.opentelemetry.io/otel/trace v1.27.0 // indirect

instrumentation/github.com/jackc/pgx/v5/splunkpgx/test/go.mod

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

55
require (
66
github.com/ory/dockertest/v3 v3.10.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.16.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/jackc/pgx/v5/splunkpgx v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.17.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/jackc/pgx/v5/splunkpgx v1.17.0
99
github.com/stretchr/testify v1.9.0
1010
go.opentelemetry.io/otel v1.27.0
1111
go.opentelemetry.io/otel/sdk v1.27.0
@@ -39,7 +39,7 @@ require (
3939
github.com/opencontainers/runc v1.1.12 // indirect
4040
github.com/pkg/errors v0.9.1 // indirect
4141
github.com/pmezard/go-difflib v1.0.0 // indirect
42-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
42+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
4343
github.com/sirupsen/logrus v1.9.3 // indirect
4444
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
4545
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect

instrumentation/github.com/jinzhu/gorm/splunkgorm/go.mod

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

55
require (
66
github.com/jinzhu/gorm v1.9.16
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.16.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.17.0
88
github.com/stretchr/testify v1.9.0
99
)
1010

@@ -14,7 +14,7 @@ require (
1414
github.com/go-logr/stdr v1.2.2 // indirect
1515
github.com/jinzhu/inflection v1.0.0 // indirect
1616
github.com/pmezard/go-difflib v1.0.0 // indirect
17-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.16.0 // indirect
17+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.17.0 // indirect
1818
go.opentelemetry.io/otel v1.27.0 // indirect
1919
go.opentelemetry.io/otel/metric v1.27.0 // indirect
2020
go.opentelemetry.io/otel/trace v1.27.0 // indirect

0 commit comments

Comments
 (0)