Skip to content

Commit c4b040c

Browse files
authored
Release 1.24.0 (#3633)
1 parent 65886f6 commit c4b040c

File tree

51 files changed

+86
-78
lines changed

Some content is hidden

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

51 files changed

+86
-78
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.24.0] - 2025-01-22
12+
13+
This release upgrades [OpenTelemetry Go to v1.34.0/v0.56.0/v0.10.0][otel-v1.34.0]
14+
and [OpenTelemetry Go Contrib to v1.34.0/v0.59.0/v0.28.0/v0.14.0/v0.9.0/v0.7.0/v0.6.0][contrib-v1.34.0].
15+
1116
## [1.23.0] - 2024-12-13
1217

1318
This release upgrades [OpenTelemetry Go to v1.33.0/v0.55.0/v0.9.0/v0.0.12][otel-v1.33.0]
@@ -619,7 +624,8 @@ an impedance mismatch with this duplicate batching.
619624
- Add [`splunkhttp`](./instrumentation/net/http/splunkhttp) module providing
620625
additional Splunk specific instrumentation for `net/http`.
621626

622-
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v1.23.0...HEAD
627+
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v1.24.0...HEAD
628+
[1.24.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.24.0
623629
[1.23.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.23.0
624630
[1.22.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.22.0
625631
[1.21.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v1.21.0
@@ -655,6 +661,7 @@ an impedance mismatch with this duplicate batching.
655661
[0.2.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.2.0
656662
[0.1.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.1.0
657663

664+
[otel-v1.34.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.34.0
658665
[otel-v1.33.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.33.0
659666
[otel-v1.32.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.32.0
660667
[otel-v1.31.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.31.0
@@ -688,6 +695,7 @@ an impedance mismatch with this duplicate batching.
688695
[otel-v0.20.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.20.0
689696
[otel-v0.19.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.19.0
690697

698+
[contrib-v1.34.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.34.0
691699
[contrib-v1.33.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.33.0
692700
[contrib-v1.32.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.32.0
693701
[contrib-v1.31.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v1.31.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.33.0-blueviolet)](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.33.0)
3+
[![OpenTelemetry Go](https://img.shields.io/badge/OTel-1.34.0-blueviolet)](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.34.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/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/signalfx/splunk-otel-go/distro
22

3-
go 1.22.7
3+
go 1.22.0
44

55
require (
66
github.com/go-logr/logr v1.4.2

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.23.0"
19+
return "1.24.0"
2020
}

example/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/signalfx/splunk-otel-go/example
22

3-
go 1.22.7
3+
go 1.22.0
44

55
require (
6-
github.com/signalfx/splunk-otel-go/distro v1.23.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/net/http/splunkhttp v1.23.0
6+
github.com/signalfx/splunk-otel-go/distro v1.24.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/net/http/splunkhttp v1.24.0
88
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0
99
golang.org/x/sync v0.10.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.22.0
44

55
require (
6-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0
6+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0
77
github.com/stretchr/testify v1.10.0
88
go.opentelemetry.io/otel v1.34.0
99
go.opentelemetry.io/otel/metric v1.34.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.22.0
44

55
require (
6-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.23.0
6+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.24.0
77
github.com/stretchr/testify v1.10.0
88
go.opentelemetry.io/otel v1.34.0
99
go.opentelemetry.io/otel/sdk v1.34.0
@@ -18,7 +18,7 @@ require (
1818
github.com/go-logr/stdr v1.2.2 // indirect
1919
github.com/google/uuid v1.6.0 // indirect
2020
github.com/pmezard/go-difflib v1.0.0 // indirect
21-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
21+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
2222
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
2323
go.opentelemetry.io/otel/metric v1.34.0 // indirect
2424
golang.org/x/sys v0.29.0 // 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.23.0"
19+
return "1.24.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.22.0
44

55
require (
66
github.com/confluentinc/confluent-kafka-go v1.9.2
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0
88
github.com/stretchr/testify v1.10.0
99
go.opentelemetry.io/otel v1.34.0
1010
go.opentelemetry.io/otel/trace v1.34.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.22.0
55
require (
66
github.com/confluentinc/confluent-kafka-go v1.9.2
77
github.com/ory/dockertest/v3 v3.11.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka v1.23.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka v1.24.0
99
github.com/stretchr/testify v1.10.0
1010
go.opentelemetry.io/otel v1.34.0
1111
go.opentelemetry.io/otel/sdk v1.34.0
@@ -39,7 +39,7 @@ require (
3939
github.com/opencontainers/runc v1.2.4 // 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.23.0 // indirect
42+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.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/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.23.0"
23+
return "1.24.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.22.0
44

55
require (
66
github.com/confluentinc/confluent-kafka-go/v2 v2.8.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0
88
github.com/stretchr/testify v1.10.0
99
go.opentelemetry.io/otel v1.34.0
1010
go.opentelemetry.io/otel/trace v1.34.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.22.0
55
require (
66
github.com/confluentinc/confluent-kafka-go/v2 v2.8.0
77
github.com/ory/dockertest/v3 v3.11.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/v2/kafka/splunkkafka v1.23.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/confluentinc/confluent-kafka-go/v2/kafka/splunkkafka v1.24.0
99
github.com/stretchr/testify v1.10.0
1010
go.opentelemetry.io/otel v1.34.0
1111
go.opentelemetry.io/otel/sdk v1.34.0
@@ -41,7 +41,7 @@ require (
4141
github.com/opencontainers/runc v1.2.4 // indirect
4242
github.com/pkg/errors v0.9.1 // indirect
4343
github.com/pmezard/go-difflib v1.0.0 // indirect
44-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
44+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
4545
github.com/sirupsen/logrus v1.9.3 // indirect
4646
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
4747
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.23.0"
23+
return "1.24.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.22.0
44

55
require (
66
github.com/go-chi/chi v1.5.5
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0
88
go.opentelemetry.io/otel v1.34.0
99
go.opentelemetry.io/otel/trace v1.34.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.22.0
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.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-chi/chi/splunkchi v1.24.0
88
github.com/stretchr/testify v1.10.0
99
go.opentelemetry.io/otel v1.34.0
1010
go.opentelemetry.io/otel/sdk v1.34.0
@@ -17,7 +17,7 @@ require (
1717
github.com/go-logr/stdr v1.2.2 // indirect
1818
github.com/google/uuid v1.6.0 // indirect
1919
github.com/pmezard/go-difflib v1.0.0 // indirect
20-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
20+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
2121
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
2222
go.opentelemetry.io/otel/metric v1.34.0 // indirect
2323
golang.org/x/sys v0.29.0 // 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.23.0"
19+
return "1.24.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.22.0
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.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.24.0
88
github.com/stretchr/testify v1.10.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.23.0 // indirect
17+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
1818
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
1919
go.opentelemetry.io/otel v1.34.0 // indirect
2020
go.opentelemetry.io/otel/metric v1.34.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.22.0
44

55
require (
66
github.com/ory/dockertest/v3 v3.11.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.23.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-sql-driver/mysql/splunkmysql v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.24.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/go-sql-driver/mysql/splunkmysql v1.24.0
99
github.com/stretchr/testify v1.10.0
1010
go.opentelemetry.io/otel v1.34.0
1111
go.opentelemetry.io/otel/sdk v1.34.0
@@ -39,7 +39,7 @@ require (
3939
github.com/opencontainers/runc v1.2.4 // 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.23.0 // indirect
42+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.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/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.22.0
44

55
require (
66
github.com/gomodule/redigo v1.9.2
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0
88
github.com/stretchr/testify v1.10.0
99
go.opentelemetry.io/otel v1.34.0
1010
go.opentelemetry.io/otel/trace v1.34.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.22.0
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.23.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/gomodule/redigo/splunkredigo v1.24.0
99
github.com/stretchr/testify v1.10.0
1010
go.opentelemetry.io/otel v1.34.0
1111
go.opentelemetry.io/otel/sdk v1.34.0
@@ -32,7 +32,7 @@ require (
3232
github.com/opencontainers/runc v1.2.4 // indirect
3333
github.com/pkg/errors v0.9.1 // indirect
3434
github.com/pmezard/go-difflib v1.0.0 // indirect
35-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
35+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
3636
github.com/sirupsen/logrus v1.9.3 // indirect
3737
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
3838
go.opentelemetry.io/otel/metric v1.34.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.23.0"
19+
return "1.24.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.22.0
44

55
require (
66
github.com/graph-gophers/graphql-go v1.5.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0
88
go.opentelemetry.io/otel v1.34.0
99
go.opentelemetry.io/otel/trace v1.34.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.22.0
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.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/graph-gophers/graphql-go/splunkgraphql v1.24.0
88
github.com/stretchr/testify v1.10.0
99
go.opentelemetry.io/otel/sdk v1.34.0
1010
go.opentelemetry.io/otel/trace v1.34.0
@@ -16,7 +16,7 @@ require (
1616
github.com/go-logr/stdr v1.2.2 // indirect
1717
github.com/google/uuid v1.6.0 // indirect
1818
github.com/pmezard/go-difflib v1.0.0 // indirect
19-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
19+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
2020
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
2121
go.opentelemetry.io/otel v1.34.0 // indirect
2222
go.opentelemetry.io/otel/metric v1.34.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.23.0"
19+
return "1.24.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.22.0
44

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

@@ -20,7 +20,7 @@ require (
2020
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
2121
github.com/jackc/pgtype v1.14.4 // indirect
2222
github.com/pmezard/go-difflib v1.0.0 // indirect
23-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
23+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
2424
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
2525
go.opentelemetry.io/otel v1.34.0 // indirect
2626
go.opentelemetry.io/otel/metric v1.34.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.22.0
44

55
require (
66
github.com/ory/dockertest/v3 v3.11.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.23.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/jackc/pgx/splunkpgx v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.24.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/jackc/pgx/splunkpgx v1.24.0
99
github.com/stretchr/testify v1.10.0
1010
go.opentelemetry.io/otel v1.34.0
1111
go.opentelemetry.io/otel/sdk v1.34.0
@@ -45,7 +45,7 @@ require (
4545
github.com/opencontainers/runc v1.2.4 // indirect
4646
github.com/pkg/errors v0.9.1 // indirect
4747
github.com/pmezard/go-difflib v1.0.0 // indirect
48-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
48+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
4949
github.com/sirupsen/logrus v1.9.3 // indirect
5050
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
5151
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.22.0
44

55
require (
66
github.com/jackc/pgx/v5 v5.7.2
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.24.0
88
github.com/stretchr/testify v1.10.0
99
)
1010

@@ -16,7 +16,7 @@ require (
1616
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
1717
github.com/jackc/puddle/v2 v2.2.2 // indirect
1818
github.com/pmezard/go-difflib v1.0.0 // indirect
19-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
19+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
2020
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
2121
go.opentelemetry.io/otel v1.34.0 // indirect
2222
go.opentelemetry.io/otel/metric v1.34.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.22.0
44

55
require (
66
github.com/ory/dockertest/v3 v3.11.0
7-
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.23.0
8-
github.com/signalfx/splunk-otel-go/instrumentation/github.com/jackc/pgx/v5/splunkpgx v1.23.0
7+
github.com/signalfx/splunk-otel-go/instrumentation/database/sql/splunksql v1.24.0
8+
github.com/signalfx/splunk-otel-go/instrumentation/github.com/jackc/pgx/v5/splunkpgx v1.24.0
99
github.com/stretchr/testify v1.10.0
1010
go.opentelemetry.io/otel v1.34.0
1111
go.opentelemetry.io/otel/sdk v1.34.0
@@ -41,7 +41,7 @@ require (
4141
github.com/opencontainers/runc v1.2.4 // indirect
4242
github.com/pkg/errors v0.9.1 // indirect
4343
github.com/pmezard/go-difflib v1.0.0 // indirect
44-
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.23.0 // indirect
44+
github.com/signalfx/splunk-otel-go/instrumentation/internal v1.24.0 // indirect
4545
github.com/sirupsen/logrus v1.9.3 // indirect
4646
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
4747
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect

0 commit comments

Comments
 (0)