Skip to content

Commit cc2a850

Browse files
authored
chore(go.mod): bump boxo fork (#4114)
We found another leak induced by high peer churn. The fork now contains a few more ugly hacky changes to minimize the impact of the leak, but doesn't completely solves it. The follow up issue is on its way
1 parent 210730d commit cc2a850

File tree

6 files changed

+95
-94
lines changed

6 files changed

+95
-94
lines changed

go.mod

+25-24
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/celestiaorg/rsmt2d v0.14.0
1818
github.com/cosmos/cosmos-sdk v0.46.16
1919
github.com/cristalhq/jwt/v5 v5.4.0
20-
github.com/dgraph-io/badger/v4 v4.5.1
20+
github.com/dgraph-io/badger/v4 v4.6.0
2121
github.com/etclabscore/go-openrpc-reflect v0.0.37
2222
github.com/filecoin-project/go-jsonrpc v0.6.0
2323
github.com/gammazero/workerpool v1.1.3
@@ -30,22 +30,22 @@ require (
3030
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
3131
github.com/hashicorp/golang-lru/v2 v2.0.7
3232
github.com/imdario/mergo v0.3.16
33-
github.com/ipfs/boxo v0.24.0
33+
github.com/ipfs/boxo v0.29.0
3434
github.com/ipfs/go-block-format v0.2.0
3535
github.com/ipfs/go-cid v0.5.0
36-
github.com/ipfs/go-datastore v0.6.0
37-
github.com/ipfs/go-ds-badger4 v0.1.5
36+
github.com/ipfs/go-datastore v0.8.2
37+
github.com/ipfs/go-ds-badger4 v0.1.8
3838
github.com/ipfs/go-ipfs-delay v0.0.1
3939
github.com/ipfs/go-ipld-format v0.6.0
4040
github.com/ipfs/go-log/v2 v2.5.1
41-
github.com/ipfs/go-metrics-interface v0.0.1
42-
github.com/ipfs/go-metrics-prometheus v0.0.2
41+
github.com/ipfs/go-metrics-interface v0.3.0
42+
github.com/ipfs/go-metrics-prometheus v0.1.0
4343
github.com/klauspost/reedsolomon v1.12.1
4444
github.com/libp2p/go-libp2p v0.41.0
45-
github.com/libp2p/go-libp2p-kad-dht v0.27.0
45+
github.com/libp2p/go-libp2p-kad-dht v0.30.2
4646
github.com/libp2p/go-libp2p-pubsub v0.13.0
47-
github.com/libp2p/go-libp2p-record v0.2.0
48-
github.com/libp2p/go-libp2p-routing-helpers v0.7.4
47+
github.com/libp2p/go-libp2p-record v0.3.1
48+
github.com/libp2p/go-libp2p-routing-helpers v0.7.5
4949
github.com/mitchellh/go-homedir v1.1.0
5050
github.com/multiformats/go-base32 v0.1.0
5151
github.com/multiformats/go-multiaddr v0.15.0
@@ -54,19 +54,19 @@ require (
5454
github.com/open-rpc/meta-schema v0.0.0-20201029221707-1b72ef2ea333
5555
github.com/prometheus/client_golang v1.21.0
5656
github.com/rollkit/go-da v0.8.0
57-
github.com/spf13/cobra v1.8.1
58-
github.com/spf13/pflag v1.0.5
57+
github.com/spf13/cobra v1.9.1
58+
github.com/spf13/pflag v1.0.6
5959
github.com/stretchr/testify v1.10.0
6060
github.com/tendermint/tendermint v0.34.29
6161
go.opentelemetry.io/contrib/instrumentation/runtime v0.45.0
62-
go.opentelemetry.io/otel v1.31.0
62+
go.opentelemetry.io/otel v1.34.0
6363
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.27.0
6464
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0
6565
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0
66-
go.opentelemetry.io/otel/metric v1.31.0
67-
go.opentelemetry.io/otel/sdk v1.31.0
66+
go.opentelemetry.io/otel/metric v1.34.0
67+
go.opentelemetry.io/otel/sdk v1.34.0
6868
go.opentelemetry.io/otel/sdk/metric v1.27.0
69-
go.opentelemetry.io/otel/trace v1.31.0
69+
go.opentelemetry.io/otel/trace v1.34.0
7070
go.opentelemetry.io/proto/otlp v1.3.1
7171
go.uber.org/fx v1.23.0
7272
go.uber.org/zap v1.27.0
@@ -152,10 +152,12 @@ require (
152152
github.com/ethereum/go-ethereum v1.14.11 // indirect
153153
github.com/ethereum/go-verkle v0.1.1-0.20240829091221-dffa7562dbe9 // indirect
154154
github.com/felixge/httpsnoop v1.0.4 // indirect
155+
github.com/filecoin-project/go-clock v0.1.0 // indirect
155156
github.com/flynn/noise v1.1.0 // indirect
156157
github.com/francoispqt/gojay v1.2.13 // indirect
157158
github.com/fsnotify/fsnotify v1.7.0 // indirect
158-
github.com/gammazero/deque v0.2.0 // indirect
159+
github.com/gammazero/chanqueue v1.0.0 // indirect
160+
github.com/gammazero/deque v1.0.0 // indirect
159161
github.com/getsentry/sentry-go v0.31.1 // indirect
160162
github.com/go-kit/kit v0.12.0 // indirect
161163
github.com/go-kit/log v0.2.1 // indirect
@@ -175,7 +177,7 @@ require (
175177
github.com/golang/protobuf v1.5.4 // indirect
176178
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
177179
github.com/google/btree v1.1.3 // indirect
178-
github.com/google/flatbuffers v25.1.24+incompatible // indirect
180+
github.com/google/flatbuffers v25.2.10+incompatible // indirect
179181
github.com/google/go-cmp v0.6.0 // indirect
180182
github.com/google/gopacket v1.1.19 // indirect
181183
github.com/google/orderedcode v0.0.1 // indirect
@@ -192,11 +194,9 @@ require (
192194
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
193195
github.com/gtank/merlin v0.1.1 // indirect
194196
github.com/gtank/ristretto255 v0.1.2 // indirect
195-
github.com/hashicorp/errwrap v1.1.0 // indirect
196197
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
197198
github.com/hashicorp/go-getter v1.7.5 // indirect
198199
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
199-
github.com/hashicorp/go-multierror v1.1.1 // indirect
200200
github.com/hashicorp/go-safetemp v1.0.0 // indirect
201201
github.com/hashicorp/go-version v1.6.0 // indirect
202202
github.com/hashicorp/golang-lru v1.0.2 // indirect
@@ -209,16 +209,16 @@ require (
209209
github.com/improbable-eng/grpc-web v0.15.0 // indirect
210210
github.com/inconshreveable/mousetrap v1.1.0 // indirect
211211
github.com/ipfs/bbloom v0.0.4 // indirect
212+
github.com/ipfs/go-ds-badger v0.3.4 // indirect
212213
github.com/ipfs/go-ipfs-pq v0.0.3 // indirect
213214
github.com/ipfs/go-ipfs-util v0.0.3 // indirect
214215
github.com/ipfs/go-ipld-legacy v0.2.1 // indirect
215216
github.com/ipfs/go-log v1.0.5 // indirect
216-
github.com/ipfs/go-peertaskqueue v0.8.1 // indirect
217+
github.com/ipfs/go-peertaskqueue v0.8.2 // indirect
217218
github.com/ipld/go-codec-dagpb v1.6.0 // indirect
218219
github.com/ipld/go-ipld-prime v0.21.0 // indirect
219220
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
220221
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
221-
github.com/jbenet/goprocess v0.1.4 // indirect
222222
github.com/jmespath/go-jmespath v0.4.0 // indirect
223223
github.com/jmhodges/levigo v1.0.0 // indirect
224224
github.com/josharian/intern v1.0.0 // indirect
@@ -232,7 +232,7 @@ require (
232232
github.com/libp2p/go-cidranger v1.1.0 // indirect
233233
github.com/libp2p/go-flow-metrics v0.2.0 // indirect
234234
github.com/libp2p/go-libp2p-asn-util v0.4.1 // indirect
235-
github.com/libp2p/go-libp2p-kbucket v0.6.4 // indirect
235+
github.com/libp2p/go-libp2p-kbucket v0.6.5 // indirect
236236
github.com/libp2p/go-msgio v0.3.0 // indirect
237237
github.com/libp2p/go-netroute v0.2.2 // indirect
238238
github.com/libp2p/go-reuseport v0.4.0 // indirect
@@ -325,6 +325,7 @@ require (
325325
github.com/zondax/ledger-go v0.14.3 // indirect
326326
go.etcd.io/bbolt v1.3.11 // indirect
327327
go.opencensus.io v0.24.0 // indirect
328+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
328329
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
329330
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect
330331
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.31.0 // indirect
@@ -340,7 +341,7 @@ require (
340341
golang.org/x/time v0.9.0 // indirect
341342
golang.org/x/tools v0.30.0 // indirect
342343
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
343-
gonum.org/v1/gonum v0.15.0 // indirect
344+
gonum.org/v1/gonum v0.15.1 // indirect
344345
google.golang.org/api v0.169.0 // indirect
345346
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
346347
google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 // indirect
@@ -363,4 +364,4 @@ replace (
363364
github.com/tendermint/tendermint => github.com/celestiaorg/celestia-core v1.47.0-tm-v0.34.35
364365
)
365366

366-
replace github.com/ipfs/boxo => github.com/celestiaorg/boxo v0.0.0-20241118122411-70a650316c3b
367+
replace github.com/ipfs/boxo => github.com/celestiaorg/boxo v0.29.0-fork

0 commit comments

Comments
 (0)