Skip to content

Commit be5987d

Browse files
authored
update dependencies (#226)
* update dependencies
1 parent 06dc225 commit be5987d

File tree

3 files changed

+135
-118
lines changed

3 files changed

+135
-118
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ $ gateway-conformance test --gateway-url http://127.0.0.1:8080 --subdomain-url h
7777
7878
### Docker
7979

80-
The `gateway-conformace` requires golang runtime to be present to facilitate `go test`.
81-
If you want to run it on a box without having to instal golang runtime, prebuilt image at `ghcr.io/ipfs/gateway-conformance` is provided.
80+
The `gateway-conformance` requires golang runtime to be present to facilitate `go test`.
81+
If you want to run it on a box without having to install golang runtime, prebuilt image at `ghcr.io/ipfs/gateway-conformance` is provided.
8282

8383
It can be used for both `test` and `extract-fixtures` commands:
8484

go.mod

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
11
module github.com/ipfs/gateway-conformance
22

3-
go 1.22
3+
go 1.22.0
4+
5+
toolchain go1.22.8
46

57
require (
6-
github.com/ipfs/boxo v0.24.0
8+
github.com/ipfs/boxo v0.26.0
79
github.com/ipfs/go-cid v0.4.1
8-
github.com/ipfs/go-unixfsnode v1.9.1
10+
github.com/ipfs/go-unixfsnode v1.9.2
911
github.com/ipld/go-car v0.6.2
10-
github.com/ipld/go-car/v2 v2.13.1
12+
github.com/ipld/go-car/v2 v2.14.2
1113
github.com/ipld/go-codec-dagpb v1.6.0
1214
github.com/ipld/go-ipld-prime v0.21.0
13-
github.com/libp2p/go-libp2p v0.36.4
14-
github.com/stretchr/testify v1.9.0
15-
github.com/urfave/cli/v2 v2.27.4
15+
github.com/libp2p/go-libp2p v0.38.1
16+
github.com/stretchr/testify v1.10.0
17+
github.com/urfave/cli/v2 v2.27.5
1618
gopkg.in/yaml.v3 v3.0.1
1719
)
1820

1921
require (
20-
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
21-
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
22-
github.com/crackcomm/go-gitignore v0.0.0-20231225121904-e25f5bc08668 // indirect
22+
github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b // indirect
23+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
24+
github.com/crackcomm/go-gitignore v0.0.0-20241020182519-7843d2ba8fdf // indirect
2325
github.com/davecgh/go-spew v1.1.1 // indirect
2426
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
27+
github.com/gammazero/deque v1.0.0 // indirect
2528
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
2629
github.com/ipfs/go-blockservice v0.5.2 // indirect
2730
github.com/ipfs/go-ipfs-blockstore v1.3.1 // indirect
@@ -31,13 +34,13 @@ require (
3134
github.com/ipfs/go-verifcid v0.0.3 // indirect
3235
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
3336
github.com/libp2p/go-libp2p-record v0.2.0 // indirect
34-
github.com/multiformats/go-multiaddr v0.13.0 // indirect
35-
github.com/multiformats/go-multistream v0.5.0 // indirect
37+
github.com/multiformats/go-multiaddr v0.14.0 // indirect
38+
github.com/multiformats/go-multistream v0.6.0 // indirect
3639
github.com/pmezard/go-difflib v1.0.0 // indirect
3740
github.com/russross/blackfriday/v2 v2.1.0 // indirect
3841
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
39-
go.opentelemetry.io/otel/metric v1.27.0 // indirect
40-
golang.org/x/sync v0.7.0 // indirect
42+
go.opentelemetry.io/otel/metric v1.31.0 // indirect
43+
golang.org/x/sync v0.10.0 // indirect
4144
)
4245

4346
require (
@@ -58,7 +61,7 @@ require (
5861
github.com/ipfs/go-log/v2 v2.5.1 // indirect
5962
github.com/ipfs/go-metrics-interface v0.0.1 // indirect
6063
github.com/jbenet/goprocess v0.1.4 // indirect
61-
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
64+
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
6265
github.com/mattn/go-isatty v0.0.20 // indirect
6366
github.com/minio/sha256-simd v1.0.1 // indirect
6467
github.com/mr-tron/base58 v1.2.0 // indirect
@@ -74,15 +77,15 @@ require (
7477
github.com/spaolacci/murmur3 v1.1.0 // indirect
7578
github.com/whyrusleeping/cbor v0.0.0-20171005072247-63513f603b11 // indirect
7679
github.com/whyrusleeping/cbor-gen v0.1.2 // indirect
77-
go.opentelemetry.io/otel v1.27.0 // indirect
78-
go.opentelemetry.io/otel/trace v1.27.0 // indirect
80+
go.opentelemetry.io/otel v1.31.0 // indirect
81+
go.opentelemetry.io/otel/trace v1.31.0 // indirect
7982
go.uber.org/atomic v1.11.0 // indirect
8083
go.uber.org/multierr v1.11.0 // indirect
8184
go.uber.org/zap v1.27.0 // indirect
82-
golang.org/x/crypto v0.25.0 // indirect
83-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
84-
golang.org/x/sys v0.22.0 // indirect
85-
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
86-
google.golang.org/protobuf v1.34.2 // indirect
85+
golang.org/x/crypto v0.31.0 // indirect
86+
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
87+
golang.org/x/sys v0.28.0 // indirect
88+
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
89+
google.golang.org/protobuf v1.36.0 // indirect
8790
lukechampine.com/blake3 v1.3.0 // indirect
8891
)

0 commit comments

Comments
 (0)