Skip to content

Commit eeae00a

Browse files
chore(deps): bump go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp from 0.67.0 to 0.69.0 (#5063)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent f1abdf2 commit eeae00a

5 files changed

Lines changed: 9 additions & 8 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ require (
6161
github.com/spf13/pflag v1.0.10
6262
github.com/stretchr/testify v1.11.1
6363
go.opentelemetry.io/contrib/bridges/prometheus v0.69.0
64-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0
64+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0
6565
go.opentelemetry.io/contrib/instrumentation/runtime v0.69.0
6666
go.opentelemetry.io/otel v1.44.0
6767
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.44.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1318,8 +1318,8 @@ go.opentelemetry.io/contrib/detectors/gcp v1.42.0 h1:kpt2PEJuOuqYkPcktfJqWWDjTEd
13181318
go.opentelemetry.io/contrib/detectors/gcp v1.42.0/go.mod h1:W9zQ439utxymRrXsUOzZbFX4JhLxXU4+ZnCt8GG7yA8=
13191319
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0 h1:0Qx7VGBacMm9ZENQ7TnNObTYI4ShC+lHI16seduaxZo=
13201320
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0/go.mod h1:Sje3i3MjSPKTSPvVWCaL8ugBzJwik3u4smCjUeuupqg=
1321-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 h1:OyrsyzuttWTSur2qN/Lm0m2a8yqyIjUVBZcxFPuXq2o=
1322-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0/go.mod h1:C2NGBr+kAB4bk3xtMXfZ94gqFDtg/GkI7e9zqGh5Beg=
1321+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0 h1:8tvICD4vSTOOsNrsI4Ljf6C+6UKvpTEH5XY3JMoyPoo=
1322+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0/go.mod h1:z9+yiacE0IHRqM4qFfkbt/JYlmYXgss8GY/jXoNuPJI=
13231323
go.opentelemetry.io/contrib/instrumentation/runtime v0.69.0 h1:MtkMsuRo3zEXTTMALfyrszwCDZTkB6wolyPjbwFAdq0=
13241324
go.opentelemetry.io/contrib/instrumentation/runtime v0.69.0/go.mod h1:FYTxnpsm+UPD0erZNq20GvnM8T2YQHiHtT2vokdpoac=
13251325
go.opentelemetry.io/otel v1.21.0/go.mod h1:QZzNPQPm1zLX4gZK4cMi+71eaorMSGT3A4znnUvNNEo=

nodebuilder/tests/tastora/framework.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515
sdk "github.com/cosmos/cosmos-sdk/types"
1616
"github.com/cosmos/cosmos-sdk/types/module/testutil"
1717
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
18+
dockerclient "github.com/moby/moby/client"
1819
"github.com/stretchr/testify/require"
1920
"go.uber.org/zap"
2021
"go.uber.org/zap/zaptest"
@@ -589,7 +590,7 @@ func (f *Framework) Cleanup() {
589590
// Remove the Docker network
590591
if f.network != "" {
591592
f.logger.Info("Removing Docker network", zap.String("network", f.network))
592-
if err := f.client.NetworkRemove(ctx, f.network); err != nil {
593+
if _, err := f.client.NetworkRemove(ctx, f.network, dockerclient.NetworkRemoveOptions{}); err != nil {
593594
f.t.Logf("Failed to remove Docker network %s: %v", f.network, err)
594595
} else {
595596
f.logger.Info("Successfully removed Docker network", zap.String("network", f.network))

nodebuilder/tests/tastora/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ require (
1111
github.com/cometbft/cometbft v1.0.1
1212
github.com/containerd/errdefs v1.0.0
1313
github.com/cosmos/cosmos-sdk v0.50.13
14+
github.com/moby/moby/client v0.4.0
1415
github.com/stretchr/testify v1.11.1
1516
go.uber.org/zap v1.28.0
1617
google.golang.org/grpc v1.81.1
@@ -279,7 +280,7 @@ require (
279280
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
280281
go.opentelemetry.io/contrib/detectors/gcp v1.42.0 // indirect
281282
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0 // indirect
282-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
283+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0 // indirect
283284
go.opentelemetry.io/otel v1.44.0 // indirect
284285
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.43.0 // indirect
285286
go.opentelemetry.io/otel/metric v1.44.0 // indirect
@@ -376,7 +377,6 @@ require (
376377
github.com/ingonyama-zk/icicle-gnark/v3 v3.2.2 // indirect
377378
github.com/minio/minlz v1.0.1-0.20250507153514-87eb42fe8882 // indirect
378379
github.com/moby/moby/api v1.54.1 // indirect
379-
github.com/moby/moby/client v0.4.0 // indirect
380380
github.com/pion/transport/v4 v4.0.1 // indirect
381381
github.com/ronanh/intcomp v1.1.1 // indirect
382382
github.com/shirou/gopsutil v3.21.11+incompatible // indirect

nodebuilder/tests/tastora/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,8 +1331,8 @@ go.opentelemetry.io/contrib/detectors/gcp v1.42.0 h1:kpt2PEJuOuqYkPcktfJqWWDjTEd
13311331
go.opentelemetry.io/contrib/detectors/gcp v1.42.0/go.mod h1:W9zQ439utxymRrXsUOzZbFX4JhLxXU4+ZnCt8GG7yA8=
13321332
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0 h1:0Qx7VGBacMm9ZENQ7TnNObTYI4ShC+lHI16seduaxZo=
13331333
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0/go.mod h1:Sje3i3MjSPKTSPvVWCaL8ugBzJwik3u4smCjUeuupqg=
1334-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 h1:OyrsyzuttWTSur2qN/Lm0m2a8yqyIjUVBZcxFPuXq2o=
1335-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0/go.mod h1:C2NGBr+kAB4bk3xtMXfZ94gqFDtg/GkI7e9zqGh5Beg=
1334+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0 h1:8tvICD4vSTOOsNrsI4Ljf6C+6UKvpTEH5XY3JMoyPoo=
1335+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.69.0/go.mod h1:z9+yiacE0IHRqM4qFfkbt/JYlmYXgss8GY/jXoNuPJI=
13361336
go.opentelemetry.io/otel v1.21.0/go.mod h1:QZzNPQPm1zLX4gZK4cMi+71eaorMSGT3A4znnUvNNEo=
13371337
go.opentelemetry.io/otel v1.44.0 h1:JjwHmHpA4iZ3wBxluu2fbbE7j4kqlE8jXyAyPXH7HqU=
13381338
go.opentelemetry.io/otel v1.44.0/go.mod h1:BMgjTHL9WPRlRjL2oZCBTL4whCGtXch2H4BhOPIAyYc=

0 commit comments

Comments
 (0)