Skip to content

Commit 0bcf5f9

Browse files
authored
update dependencies (#1107)
1 parent f0cdbf6 commit 0bcf5f9

File tree

5 files changed

+1015
-64
lines changed

5 files changed

+1015
-64
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ The following emojis are used to highlight certain changes:
2727
- `gateway`: 🛠 ✨ [IPIP-523](https://github.com/ipfs/specs/pull/523) `?format=` URL query parameter now takes precedence over `Accept` HTTP header, ensuring deterministic HTTP cache behavior and allowing browsers to use `?format=` even when they send `Accept` headers with specific content types. [#1074](https://github.com/ipfs/boxo/pull/1074)
2828
- `gateway`: 🛠 ✨ [IPIP-524](https://github.com/ipfs/specs/pull/524) codec conversions (e.g., dag-pb to dag-json, dag-json to dag-cbor) are no longer performed by default. Requesting a format that differs from the block's codec now returns HTTP 406 Not Acceptable with a hint to fetch raw blocks (`?format=raw`) and convert client-side. Set `Config.AllowCodecConversion` to `true` to restore the old behavior. [#1077](https://github.com/ipfs/boxo/pull/1077)
2929
- `gateway`: compliance with gateway-conformance [v0.10.0](https://github.com/ipfs/gateway-conformance/releases/tag/v0.10.0) (since v0.8: relaxed DAG-CBOR HTML preview cache headers, relaxed CAR 200/404 for missing paths, [IPIP-523](https://github.com/ipfs/specs/pull/523) format query precedence, [IPIP-524](https://github.com/ipfs/specs/pull/524) codec mismatch returns 406)
30+
- upgrade to `go-ipld-prime` [v0.22.0](https://github.com/ipld/go-ipld-prime/releases/tag/v0.22.0)
31+
- upgrade to `go-libp2p-kad-dht` [v0.38.0](https://github.com/libp2p/go-libp2p-kad-dht/releases/tag/v0.38.0)
3032

3133
### Removed
3234

examples/go.mod

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/ipfs/boxo/examples
22

3-
go 1.25
3+
go 1.25.0
44

55
require (
6-
github.com/ipfs/boxo v0.35.2
6+
github.com/ipfs/boxo v0.36.0
77
github.com/ipfs/go-block-format v0.2.3
88
github.com/ipfs/go-cid v0.6.0
9-
github.com/ipfs/go-datastore v0.9.0
9+
github.com/ipfs/go-datastore v0.9.1
1010
github.com/ipld/go-car/v2 v2.16.0
1111
github.com/libp2p/go-libp2p v0.47.0
1212
github.com/multiformats/go-multiaddr v0.16.1
@@ -60,9 +60,9 @@ require (
6060
github.com/ipfs/go-log/v2 v2.9.1 // indirect
6161
github.com/ipfs/go-metrics-interface v0.3.0 // indirect
6262
github.com/ipfs/go-peertaskqueue v0.8.3 // indirect
63-
github.com/ipfs/go-unixfsnode v1.10.2 // indirect
63+
github.com/ipfs/go-unixfsnode v1.10.3 // indirect
6464
github.com/ipld/go-codec-dagpb v1.7.0 // indirect
65-
github.com/ipld/go-ipld-prime v0.21.0 // indirect
65+
github.com/ipld/go-ipld-prime v0.22.0 // indirect
6666
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
6767
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
6868
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
@@ -72,7 +72,7 @@ require (
7272
github.com/libp2p/go-doh-resolver v0.5.0 // indirect
7373
github.com/libp2p/go-flow-metrics v0.3.0 // indirect
7474
github.com/libp2p/go-libp2p-asn-util v0.4.1 // indirect
75-
github.com/libp2p/go-libp2p-kad-dht v0.37.1 // indirect
75+
github.com/libp2p/go-libp2p-kad-dht v0.38.0 // indirect
7676
github.com/libp2p/go-libp2p-kbucket v0.8.0 // indirect
7777
github.com/libp2p/go-libp2p-record v0.3.1 // indirect
7878
github.com/libp2p/go-libp2p-routing-helpers v0.7.6-0.20251016083611-f098f492895e // indirect
@@ -100,10 +100,10 @@ require (
100100
github.com/petar/GoLLRB v0.0.0-20210522233825-ae3b015fd3e9 // indirect
101101
github.com/pion/datachannel v1.5.10 // indirect
102102
github.com/pion/dtls/v2 v2.2.12 // indirect
103-
github.com/pion/dtls/v3 v3.0.6 // indirect
103+
github.com/pion/dtls/v3 v3.1.1 // indirect
104104
github.com/pion/ice/v4 v4.0.10 // indirect
105105
github.com/pion/interceptor v0.1.40 // indirect
106-
github.com/pion/logging v0.2.3 // indirect
106+
github.com/pion/logging v0.2.4 // indirect
107107
github.com/pion/mdns/v2 v2.0.7 // indirect
108108
github.com/pion/randutil v0.1.0 // indirect
109109
github.com/pion/rtcp v1.2.15 // indirect
@@ -115,10 +115,11 @@ require (
115115
github.com/pion/stun/v3 v3.0.0 // indirect
116116
github.com/pion/transport/v2 v2.2.10 // indirect
117117
github.com/pion/transport/v3 v3.0.7 // indirect
118+
github.com/pion/transport/v4 v4.0.1 // indirect
118119
github.com/pion/turn/v4 v4.0.2 // indirect
119120
github.com/pion/webrtc/v4 v4.1.2 // indirect
120121
github.com/pmezard/go-difflib v1.0.0 // indirect
121-
github.com/polydawn/refmt v0.89.0 // indirect
122+
github.com/polydawn/refmt v0.89.1-0.20231129105047-37766d95467a // indirect
122123
github.com/prometheus/client_model v0.6.2 // indirect
123124
github.com/prometheus/common v0.66.1 // indirect
124125
github.com/prometheus/procfs v0.17.0 // indirect
@@ -153,7 +154,7 @@ require (
153154
go.uber.org/zap v1.27.1 // indirect
154155
go.yaml.in/yaml/v2 v2.4.3 // indirect
155156
golang.org/x/crypto v0.48.0 // indirect
156-
golang.org/x/exp v0.0.0-20260209203927-2842357ff358 // indirect
157+
golang.org/x/exp v0.0.0-20260212183809-81e46e3db34a // indirect
157158
golang.org/x/mod v0.33.0 // indirect
158159
golang.org/x/net v0.50.0 // indirect
159160
golang.org/x/sync v0.19.0 // indirect

0 commit comments

Comments
 (0)