File tree 9 files changed +23
-12
lines changed
examples/kubo-as-a-library
9 files changed +23
-12
lines changed Original file line number Diff line number Diff line change 24
24
steps :
25
25
# 1. Download the gateway-conformance fixtures
26
26
- name : Download gateway-conformance fixtures
27
- uses : ipfs/gateway-conformance/.github/actions/extract-fixtures@v0.3
27
+ uses : ipfs/gateway-conformance/.github/actions/extract-fixtures@261cc49391dcd2bddd7704ad28b236dc4a63c424
28
28
with :
29
29
output : fixtures
30
30
90
90
91
91
# 6. Run the gateway-conformance tests
92
92
- name : Run gateway-conformance tests
93
- uses : ipfs/gateway-conformance/.github/actions/test@v0.3
93
+ uses : ipfs/gateway-conformance/.github/actions/test@261cc49391dcd2bddd7704ad28b236dc4a63c424
94
94
with :
95
95
gateway-url : http://127.0.0.1:8080
96
96
json : output.json
Original file line number Diff line number Diff line change 7
7
- [ Overview] ( #overview )
8
8
- [ 🔦 Highlights] ( #-highlights )
9
9
- [ Mplex deprecation] ( #mplex-deprecation )
10
+ - [ Gateway: meaningful CAR responses on Not Found errors] ( #gateway-meaningful-car-responses-on-not-found-errors )
10
11
- [ 📝 Changelog] ( #-changelog )
11
12
- [ 👨👩👧👦 Contributors] ( #-contributors )
12
13
@@ -32,6 +33,16 @@ $ ipfs config --json Swarm.Transports.Multiplexers.Mplex 200
32
33
We will completely remove Mplex in v0.24 as it makes protocols very bad to implement,
33
34
if you are in this situation you need to add yamux support to your other implementation.
34
35
36
+ #### Gateway: meaningful CAR responses on Not Found errors
37
+
38
+ When requesting a CAR from the gateway, the root of the CAR might no longer be
39
+ meaningful. By default, the CAR root will be the last resolvable segment of the
40
+ path. However, in situations where the path cannot be resolved, such as when
41
+ the path does not exist, a CAR will be sent with a root of ` bafkqaaa ` (empty CID).
42
+
43
+ This CAR will contain all blocks necessary to validate that the path does not
44
+ exist without having to trust the gateway.
45
+
35
46
### 📝 Changelog
36
47
37
48
### 👨👩👧👦 Contributors
Original file line number Diff line number Diff line change 7
7
replace github.com/ipfs/kubo => ./../../..
8
8
9
9
require (
10
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f
10
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547
11
11
github.com/ipfs/kubo v0.0.0-00010101000000-000000000000
12
12
github.com/libp2p/go-libp2p v0.29.2
13
13
github.com/multiformats/go-multiaddr v0.10.1
Original file line number Diff line number Diff line change @@ -301,8 +301,8 @@ github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:
301
301
github.com/inconshreveable/mousetrap v1.0.0 /go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8 =
302
302
github.com/ipfs/bbloom v0.0.4 h1:Gi+8EGJ2y5qiD5FbsbpX/TMNcJw8gSqr7eyjHa4Fhvs =
303
303
github.com/ipfs/bbloom v0.0.4 /go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyqMG0 =
304
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f h1:sXqGLIATCsBdHse7S9n6e328NhORvVM64+4IRuFlpmI =
305
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f /go.mod h1:8IfDmp+FzFGcF4zjAgHMVPpwYw4AjN9ePEzDfkaYJ1w =
304
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547 h1:AE6pzqLUq22jKFf3648vmcCcQ6lbRhbGEQvj6TL65KA =
305
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547 /go.mod h1:8IfDmp+FzFGcF4zjAgHMVPpwYw4AjN9ePEzDfkaYJ1w =
306
306
github.com/ipfs/go-bitfield v1.1.0 h1:fh7FIo8bSwaJEh6DdTWbCeZ1eqOaOkKFI74SCnsWbGA =
307
307
github.com/ipfs/go-bitfield v1.1.0 /go.mod h1:paqf1wjq/D2BBmzfTVFlJQ9IlFOZpg422HL0HqsGWHU =
308
308
github.com/ipfs/go-block-format v0.0.2 /go.mod h1:AWR46JfpcObNfg3ok2JHDUfdiHRgWhJgCQF+KIgOPJY =
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ require (
15
15
github.com/fsnotify/fsnotify v1.6.0
16
16
github.com/google/uuid v1.3.0
17
17
github.com/hashicorp/go-multierror v1.1.1
18
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f
18
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547
19
19
github.com/ipfs/go-block-format v0.1.2
20
20
github.com/ipfs/go-cid v0.4.1
21
21
github.com/ipfs/go-cidutil v0.1.0
Original file line number Diff line number Diff line change @@ -337,8 +337,8 @@ github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:
337
337
github.com/inconshreveable/mousetrap v1.0.0 /go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8 =
338
338
github.com/ipfs/bbloom v0.0.4 h1:Gi+8EGJ2y5qiD5FbsbpX/TMNcJw8gSqr7eyjHa4Fhvs =
339
339
github.com/ipfs/bbloom v0.0.4 /go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyqMG0 =
340
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f h1:sXqGLIATCsBdHse7S9n6e328NhORvVM64+4IRuFlpmI =
341
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f /go.mod h1:8IfDmp+FzFGcF4zjAgHMVPpwYw4AjN9ePEzDfkaYJ1w =
340
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547 h1:AE6pzqLUq22jKFf3648vmcCcQ6lbRhbGEQvj6TL65KA =
341
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547 /go.mod h1:8IfDmp+FzFGcF4zjAgHMVPpwYw4AjN9ePEzDfkaYJ1w =
342
342
github.com/ipfs/go-bitfield v1.1.0 h1:fh7FIo8bSwaJEh6DdTWbCeZ1eqOaOkKFI74SCnsWbGA =
343
343
github.com/ipfs/go-bitfield v1.1.0 /go.mod h1:paqf1wjq/D2BBmzfTVFlJQ9IlFOZpg422HL0HqsGWHU =
344
344
github.com/ipfs/go-bitswap v0.11.0 h1:j1WVvhDX1yhG32NTC9xfxnqycqYIlhzEzLXG/cU1HyQ =
Original file line number Diff line number Diff line change @@ -487,7 +487,7 @@ func TestGateway(t *testing.T) {
487
487
488
488
t .Run ("not present key from node 1" , func (t * testing.T ) {
489
489
t .Parallel ()
490
- assert .Equal (t , 404 , node1 .GatewayClient ().Get ("/ipfs/" + cidFoo ).StatusCode )
490
+ assert .Equal (t , 500 , node1 .GatewayClient ().Get ("/ipfs/" + cidFoo ).StatusCode )
491
491
})
492
492
493
493
t .Run ("not present IPNS key from node 1" , func (t * testing.T ) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ replace github.com/ipfs/kubo => ../../
7
7
require (
8
8
github.com/Kubuxu/gocovmerge v0.0.0-20161216165753-7ecaa51963cd
9
9
github.com/golangci/golangci-lint v1.49.0
10
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f
10
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547
11
11
github.com/ipfs/go-cid v0.4.1
12
12
github.com/ipfs/go-cidutil v0.1.0
13
13
github.com/ipfs/go-datastore v0.6.0
Original file line number Diff line number Diff line change @@ -395,8 +395,8 @@ github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NH
395
395
github.com/inconshreveable/mousetrap v1.0.0 /go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8 =
396
396
github.com/ipfs/bbloom v0.0.4 h1:Gi+8EGJ2y5qiD5FbsbpX/TMNcJw8gSqr7eyjHa4Fhvs =
397
397
github.com/ipfs/bbloom v0.0.4 /go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyqMG0 =
398
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f h1:sXqGLIATCsBdHse7S9n6e328NhORvVM64+4IRuFlpmI =
399
- github.com/ipfs/boxo v0.11.1-0.20230817061817-1d2f5e511e9f /go.mod h1:8IfDmp+FzFGcF4zjAgHMVPpwYw4AjN9ePEzDfkaYJ1w =
398
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547 h1:AE6pzqLUq22jKFf3648vmcCcQ6lbRhbGEQvj6TL65KA =
399
+ github.com/ipfs/boxo v0.11.1-0.20230817163255-eb36550a9547 /go.mod h1:8IfDmp+FzFGcF4zjAgHMVPpwYw4AjN9ePEzDfkaYJ1w =
400
400
github.com/ipfs/go-bitfield v1.1.0 h1:fh7FIo8bSwaJEh6DdTWbCeZ1eqOaOkKFI74SCnsWbGA =
401
401
github.com/ipfs/go-bitfield v1.1.0 /go.mod h1:paqf1wjq/D2BBmzfTVFlJQ9IlFOZpg422HL0HqsGWHU =
402
402
github.com/ipfs/go-block-format v0.1.2 h1:GAjkfhVx1f4YTODS6Esrj1wt2HhrtwTnhEr+DyPUaJo =
You can’t perform that action at this time.
0 commit comments