From a36b64d1c681123cc1474dcf011163ea9b12885d Mon Sep 17 00:00:00 2001 From: Vasco Santos Date: Thu, 4 Apr 2024 14:00:16 +0200 Subject: [PATCH] fix: upgrade ucanto libs --- packages/access-client/package.json | 14 +- packages/capabilities/package.json | 10 +- packages/capabilities/src/ucan.js | 62 ++--- packages/filecoin-api/package.json | 16 +- .../filecoin-api/src/storefront/service.js | 2 +- packages/filecoin-client/package.json | 12 +- packages/upload-api/package.json | 14 +- packages/upload-client/package.json | 10 +- packages/w3up-client/package.json | 10 +- pnpm-lock.yaml | 226 ++++++++++-------- 10 files changed, 201 insertions(+), 175 deletions(-) diff --git a/packages/access-client/package.json b/packages/access-client/package.json index 18ef47489..8da0bc05d 100644 --- a/packages/access-client/package.json +++ b/packages/access-client/package.json @@ -99,12 +99,12 @@ "dependencies": { "@ipld/car": "^5.1.1", "@ipld/dag-ucan": "^3.4.0", - "@ucanto/client": "^9.0.0", - "@ucanto/core": "^9.0.1", - "@ucanto/interface": "^9.0.0", - "@ucanto/principal": "^9.0.0", - "@ucanto/transport": "^9.1.0", - "@ucanto/validator": "^9.0.1", + "@ucanto/client": "^9.0.1", + "@ucanto/core": "^10.0.0", + "@ucanto/interface": "^10.0.0", + "@ucanto/principal": "^9.0.1", + "@ucanto/transport": "^9.1.1", + "@ucanto/validator": "^9.0.2", "@web3-storage/capabilities": "workspace:^", "@web3-storage/did-mailto": "workspace:^", "bigint-mod-arith": "^3.1.2", @@ -125,7 +125,7 @@ "@types/sinon": "^10.0.19", "@types/varint": "^6.0.1", "@types/ws": "^8.5.4", - "@ucanto/server": "^9.0.1", + "@ucanto/server": "^10.0.0", "assert": "^2.0.0", "mocha": "^10.2.0", "playwright-test": "^12.3.4", diff --git a/packages/capabilities/package.json b/packages/capabilities/package.json index 401094816..4649e73c6 100644 --- a/packages/capabilities/package.json +++ b/packages/capabilities/package.json @@ -83,11 +83,11 @@ "dist/src/**/*.d.ts.map" ], "dependencies": { - "@ucanto/core": "^9.0.1", - "@ucanto/interface": "^9.0.0", - "@ucanto/principal": "^9.0.0", - "@ucanto/transport": "^9.1.0", - "@ucanto/validator": "^9.0.1", + "@ucanto/core": "^10.0.0", + "@ucanto/interface": "^10.0.0", + "@ucanto/principal": "^9.0.1", + "@ucanto/transport": "^9.1.1", + "@ucanto/validator": "^9.0.2", "@web3-storage/data-segment": "^3.2.0", "uint8arrays": "^5.0.3" }, diff --git a/packages/capabilities/src/ucan.js b/packages/capabilities/src/ucan.js index 83ce637fa..c703f2f97 100644 --- a/packages/capabilities/src/ucan.js +++ b/packages/capabilities/src/ucan.js @@ -91,40 +91,42 @@ export const conclude = capability({ with: Schema.did(), // TODO: Should this just have bytes? nb: Schema.struct({ - /** - * A link to the UCAN invocation that this receipt is for. - */ - ran: UCANLink, - /** - * The value output of the invocation in Result format. - */ - out: Schema.unknown(), - /** - * Tasks that the invocation would like to enqueue. - */ - next: Schema.array(UCANLink), - /** - * Additional data about the receipt - */ - meta: Schema.unknown(), - /** - * The UTC Unix timestamp at which the Receipt was issued - */ - time: Schema.integer(), + bytes: Schema.Bytes, + // /** + // * A link to the UCAN invocation that this receipt is for. + // */ + // ran: UCANLink, + // /** + // * The value output of the invocation in Result format. + // */ + // out: Schema.unknown(), + // /** + // * Tasks that the invocation would like to enqueue. + // */ + // next: Schema.array(UCANLink), + // /** + // * Additional data about the receipt + // */ + // meta: Schema.unknown(), + // /** + // * The UTC Unix timestamp at which the Receipt was issued + // */ + // time: Schema.integer(), }), derives: (claim, from) => // With field MUST be the same and(equalWith(claim, from)) ?? - // invocation MUST be the same - and(checkLink(claim.nb.ran, from.nb.ran, 'nb.ran')) ?? - // value output MUST be the same - and(equal(claim.nb.out, from.nb.out, 'nb.out')) ?? - // tasks to enqueue MUST be the same - and(equal(claim.nb.next, from.nb.next, 'nb.next')) ?? - // additional data MUST be the same - and(equal(claim.nb.meta, from.nb.meta, 'nb.meta')) ?? - // the receipt issue time MUST be the same - equal(claim.nb.time, from.nb.time, 'nb.time'), + equal(claim.nb.bytes, from.nb.bytes, 'nb.bytes'), + // // invocation MUST be the same + // and(checkLink(claim.nb.ran, from.nb.ran, 'nb.ran')) ?? + // // value output MUST be the same + // and(equal(claim.nb.out, from.nb.out, 'nb.out')) ?? + // // tasks to enqueue MUST be the same + // and(equal(claim.nb.next, from.nb.next, 'nb.next')) ?? + // // additional data MUST be the same + // and(equal(claim.nb.meta, from.nb.meta, 'nb.meta')) ?? + // // the receipt issue time MUST be the same + // equal(claim.nb.time, from.nb.time, 'nb.time'), }) /** diff --git a/packages/filecoin-api/package.json b/packages/filecoin-api/package.json index 69a413cde..eba449271 100644 --- a/packages/filecoin-api/package.json +++ b/packages/filecoin-api/package.json @@ -153,13 +153,13 @@ }, "dependencies": { "@ipld/dag-ucan": "^3.4.0", - "@ucanto/client": "^9.0.0", - "@ucanto/core": "^9.0.1", - "@ucanto/interface": "^9.0.0", - "@ucanto/server": "^9.0.1", - "@ucanto/transport": "^9.1.0", + "@ucanto/client": "^9.0.1", + "@ucanto/core": "^10.0.0", + "@ucanto/interface": "^10.0.0", + "@ucanto/server": "^10.0.0", + "@ucanto/transport": "^9.1.1", "@web3-storage/capabilities": "workspace:^", - "@web3-storage/content-claims": "^4.0.2", + "@web3-storage/content-claims": "^4.0.4", "@web3-storage/data-segment": "^4.0.0", "fr32-sha2-256-trunc254-padded-binary-tree-multihash": "^3.3.0", "p-map": "^6.0.0" @@ -167,8 +167,8 @@ "devDependencies": { "@ipld/car": "^5.1.1", "@types/mocha": "^10.0.1", - "@ucanto/client": "^9.0.0", - "@ucanto/principal": "^9.0.0", + "@ucanto/client": "^9.0.1", + "@ucanto/principal": "^9.0.1", "@web-std/blob": "^3.0.5", "@web3-storage/eslint-config-w3up": "workspace:^", "@web3-storage/filecoin-client": "workspace:^", diff --git a/packages/filecoin-api/src/storefront/service.js b/packages/filecoin-api/src/storefront/service.js index 5afd10a95..01f6b4544 100644 --- a/packages/filecoin-api/src/storefront/service.js +++ b/packages/filecoin-api/src/storefront/service.js @@ -208,7 +208,7 @@ async function findDataAggregationProof({ taskStore, receiptStore }, task) { aggregateAcceptReceipt = receiptRes.ok.out.ok } if (!receiptRes.ok.fx.join) break - task = receiptRes.ok.fx.join + task = receiptRes.ok.fx.join.link() } if (!inclusion) { return { diff --git a/packages/filecoin-client/package.json b/packages/filecoin-client/package.json index d311f30ce..5092692da 100644 --- a/packages/filecoin-client/package.json +++ b/packages/filecoin-client/package.json @@ -54,10 +54,10 @@ ], "dependencies": { "@ipld/dag-ucan": "^3.4.0", - "@ucanto/client": "^9.0.0", - "@ucanto/core": "^9.0.1", - "@ucanto/interface": "^9.0.0", - "@ucanto/transport": "^9.1.0", + "@ucanto/client": "^9.0.1", + "@ucanto/core": "^10.0.0", + "@ucanto/interface": "^10.0.0", + "@ucanto/transport": "^9.1.1", "@web3-storage/capabilities": "workspace:^" }, "devDependencies": { @@ -65,8 +65,8 @@ "@ipld/dag-json": "^10.1.4", "@types/assert": "^1.5.6", "@types/mocha": "^10.0.1", - "@ucanto/principal": "^9.0.0", - "@ucanto/server": "^9.0.1", + "@ucanto/principal": "^9.0.1", + "@ucanto/server": "^10.0.0", "@web3-storage/data-segment": "^4.0.0", "@web3-storage/eslint-config-w3up": "workspace:^", "assert": "^2.0.0", diff --git a/packages/upload-api/package.json b/packages/upload-api/package.json index 2dfb26518..e4c356039 100644 --- a/packages/upload-api/package.json +++ b/packages/upload-api/package.json @@ -171,12 +171,12 @@ "test-watch": "pnpm build && mocha --bail --timeout 10s --watch --parallel -n no-warnings -n experimental-vm-modules -n experimental-fetch --watch-files src,test" }, "dependencies": { - "@ucanto/client": "^9.0.0", - "@ucanto/interface": "^9.0.0", - "@ucanto/principal": "^9.0.0", - "@ucanto/server": "^9.0.1", - "@ucanto/transport": "^9.1.0", - "@ucanto/validator": "^9.0.1", + "@ucanto/client": "^9.0.1", + "@ucanto/interface": "^10.0.0", + "@ucanto/principal": "^9.0.1", + "@ucanto/server": "^10.0.0", + "@ucanto/transport": "^9.1.1", + "@ucanto/validator": "^9.0.2", "@web3-storage/access": "workspace:^", "@web3-storage/capabilities": "workspace:^", "@web3-storage/did-mailto": "workspace:^", @@ -189,7 +189,7 @@ "@ipld/car": "^5.1.1", "@ipld/dag-ucan": "^3.4.0", "@types/mocha": "^10.0.1", - "@ucanto/core": "^9.0.1", + "@ucanto/core": "^10.0.0", "@types/sinon": "^17.0.3", "@web-std/blob": "^3.0.5", "@web3-storage/eslint-config-w3up": "workspace:^", diff --git a/packages/upload-client/package.json b/packages/upload-client/package.json index 82182868d..6604a55be 100644 --- a/packages/upload-client/package.json +++ b/packages/upload-client/package.json @@ -71,9 +71,9 @@ "@ipld/dag-cbor": "^9.0.6", "@ipld/dag-ucan": "^3.4.0", "@ipld/unixfs": "^2.1.1", - "@ucanto/client": "^9.0.0", - "@ucanto/interface": "^9.0.0", - "@ucanto/transport": "^9.1.0", + "@ucanto/client": "^9.0.1", + "@ucanto/interface": "^10.0.0", + "@ucanto/transport": "^9.1.1", "@web3-storage/capabilities": "workspace:^", "@web3-storage/data-segment": "^5.1.0", "@web3-storage/filecoin-client": "workspace:^", @@ -86,8 +86,8 @@ "@types/assert": "^1.5.6", "@types/mocha": "^10.0.1", "@types/varint": "^6.0.1", - "@ucanto/principal": "^9.0.0", - "@ucanto/server": "^9.0.1", + "@ucanto/principal": "^9.0.1", + "@ucanto/server": "^10.0.0", "@web3-storage/eslint-config-w3up": "workspace:^", "assert": "^2.0.0", "blockstore-core": "^3.0.0", diff --git a/packages/w3up-client/package.json b/packages/w3up-client/package.json index 19f1bb57c..d11021a1c 100644 --- a/packages/w3up-client/package.json +++ b/packages/w3up-client/package.json @@ -111,10 +111,10 @@ "dependencies": { "@ipld/dag-ucan": "^3.4.0", "@ucanto/client": "^9.0.0", - "@ucanto/core": "^9.0.1", - "@ucanto/interface": "^9.0.0", - "@ucanto/principal": "^9.0.0", - "@ucanto/transport": "^9.1.0", + "@ucanto/core": "^10.0.0", + "@ucanto/interface": "^10.0.0", + "@ucanto/principal": "^9.0.1", + "@ucanto/transport": "^9.1.1", "@web3-storage/access": "workspace:^", "@web3-storage/capabilities": "workspace:^", "@web3-storage/did-mailto": "workspace:^", @@ -126,7 +126,7 @@ "@types/assert": "^1.5.6", "@types/mocha": "^10.0.1", "@types/node": "^20.8.4", - "@ucanto/server": "^9.0.1", + "@ucanto/server": "^10.0.0", "@web3-storage/data-segment": "^5.0.0", "@web3-storage/eslint-config-w3up": "workspace:^", "@web3-storage/upload-api": "workspace:^", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 65d8ae9ff..57bf76e8c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -58,23 +58,23 @@ importers: specifier: ^1.2.1 version: 1.2.1 '@ucanto/client': - specifier: ^9.0.0 - version: 9.0.0 - '@ucanto/core': specifier: ^9.0.1 version: 9.0.1 + '@ucanto/core': + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/interface': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/principal': - specifier: ^9.0.0 - version: 9.0.0 - '@ucanto/transport': - specifier: ^9.1.0 - version: 9.1.0 - '@ucanto/validator': specifier: ^9.0.1 version: 9.0.1 + '@ucanto/transport': + specifier: ^9.1.1 + version: 9.1.1 + '@ucanto/validator': + specifier: ^9.0.2 + version: 9.0.2 '@web3-storage/capabilities': specifier: workspace:^ version: link:../capabilities @@ -125,8 +125,8 @@ importers: specifier: ^8.5.4 version: 8.5.9 '@ucanto/server': - specifier: ^9.0.1 - version: 9.0.1 + specifier: ^10.0.0 + version: 10.0.0 '@web3-storage/eslint-config-w3up': specifier: workspace:^ version: link:../eslint-config-w3up @@ -152,20 +152,20 @@ importers: packages/capabilities: dependencies: '@ucanto/core': - specifier: ^9.0.1 - version: 9.0.1 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/interface': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/principal': - specifier: ^9.0.0 - version: 9.0.0 - '@ucanto/transport': - specifier: ^9.1.0 - version: 9.1.0 - '@ucanto/validator': specifier: ^9.0.1 version: 9.0.1 + '@ucanto/transport': + specifier: ^9.1.1 + version: 9.1.1 + '@ucanto/validator': + specifier: ^9.0.2 + version: 9.0.2 '@web3-storage/data-segment': specifier: ^3.2.0 version: 3.2.0 @@ -243,26 +243,26 @@ importers: specifier: ^3.4.0 version: 3.4.0 '@ucanto/client': - specifier: ^9.0.0 - version: 9.0.0 - '@ucanto/core': specifier: ^9.0.1 version: 9.0.1 + '@ucanto/core': + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/interface': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/server': - specifier: ^9.0.1 - version: 9.0.1 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/transport': - specifier: ^9.1.0 - version: 9.1.0 + specifier: ^9.1.1 + version: 9.1.1 '@web3-storage/capabilities': specifier: workspace:^ version: link:../capabilities '@web3-storage/content-claims': - specifier: ^4.0.2 - version: 4.0.2 + specifier: ^4.0.4 + version: 4.0.4 '@web3-storage/data-segment': specifier: ^4.0.0 version: 4.0.0 @@ -280,8 +280,8 @@ importers: specifier: ^10.0.1 version: 10.0.4 '@ucanto/principal': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^9.0.1 + version: 9.0.1 '@web-std/blob': specifier: ^3.0.5 version: 3.0.5 @@ -313,17 +313,17 @@ importers: specifier: ^3.4.0 version: 3.4.0 '@ucanto/client': - specifier: ^9.0.0 - version: 9.0.0 - '@ucanto/core': specifier: ^9.0.1 version: 9.0.1 + '@ucanto/core': + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/interface': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/transport': - specifier: ^9.1.0 - version: 9.1.0 + specifier: ^9.1.1 + version: 9.1.1 '@web3-storage/capabilities': specifier: workspace:^ version: link:../capabilities @@ -341,11 +341,11 @@ importers: specifier: ^10.0.1 version: 10.0.4 '@ucanto/principal': - specifier: ^9.0.0 - version: 9.0.0 - '@ucanto/server': specifier: ^9.0.1 version: 9.0.1 + '@ucanto/server': + specifier: ^10.0.0 + version: 10.0.0 '@web3-storage/data-segment': specifier: ^4.0.0 version: 4.0.0 @@ -380,23 +380,23 @@ importers: packages/upload-api: dependencies: '@ucanto/client': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^9.0.1 + version: 9.0.1 '@ucanto/interface': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/principal': - specifier: ^9.0.0 - version: 9.0.0 - '@ucanto/server': specifier: ^9.0.1 version: 9.0.1 + '@ucanto/server': + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/transport': - specifier: ^9.1.0 - version: 9.1.0 + specifier: ^9.1.1 + version: 9.1.1 '@ucanto/validator': - specifier: ^9.0.1 - version: 9.0.1 + specifier: ^9.0.2 + version: 9.0.2 '@web3-storage/access': specifier: workspace:^ version: link:../access-client @@ -432,8 +432,8 @@ importers: specifier: ^17.0.3 version: 17.0.3 '@ucanto/core': - specifier: ^9.0.1 - version: 9.0.1 + specifier: ^10.0.0 + version: 10.0.0 '@web-std/blob': specifier: ^3.0.5 version: 3.0.5 @@ -471,14 +471,14 @@ importers: specifier: ^2.1.1 version: 2.1.2 '@ucanto/client': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^9.0.1 + version: 9.0.1 '@ucanto/interface': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/transport': - specifier: ^9.1.0 - version: 9.1.0 + specifier: ^9.1.1 + version: 9.1.1 '@web3-storage/capabilities': specifier: workspace:^ version: link:../capabilities @@ -511,11 +511,11 @@ importers: specifier: ^6.0.1 version: 6.0.3 '@ucanto/principal': - specifier: ^9.0.0 - version: 9.0.0 - '@ucanto/server': specifier: ^9.0.1 version: 9.0.1 + '@ucanto/server': + specifier: ^10.0.0 + version: 10.0.0 '@web3-storage/eslint-config-w3up': specifier: workspace:^ version: link:../eslint-config-w3up @@ -556,17 +556,17 @@ importers: specifier: ^9.0.0 version: 9.0.0 '@ucanto/core': - specifier: ^9.0.1 - version: 9.0.1 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/interface': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^10.0.0 + version: 10.0.0 '@ucanto/principal': - specifier: ^9.0.0 - version: 9.0.0 + specifier: ^9.0.1 + version: 9.0.1 '@ucanto/transport': - specifier: ^9.1.0 - version: 9.1.0 + specifier: ^9.1.1 + version: 9.1.1 '@web3-storage/access': specifier: workspace:^ version: link:../access-client @@ -596,8 +596,8 @@ importers: specifier: ^20.8.4 version: 20.9.2 '@ucanto/server': - specifier: ^9.0.1 - version: 9.0.1 + specifier: ^10.0.0 + version: 10.0.0 '@web3-storage/data-segment': specifier: ^5.0.0 version: 5.0.0 @@ -4285,6 +4285,22 @@ packages: '@ucanto/interface': 9.0.0 dev: false + /@ucanto/client@9.0.1: + resolution: {integrity: sha512-cV8w3AnaZaYCdUmyFFICj8YhFckDoy2DvWgAzGDMkPz0WbUW4lw9Tjm4hEE8x5kiP47wYej/pHKWCcoELiU0qw==} + dependencies: + '@ucanto/core': 10.0.0 + '@ucanto/interface': 10.0.0 + dev: false + + /@ucanto/core@10.0.0: + resolution: {integrity: sha512-tNGkuHm3RUQLQtHInpJ4qIWFp3kptf9yuxWp60A6XFxdXxjnEcNi8hW23wB/utfKu9hKr2KxBjBdkyOg1ianSw==} + dependencies: + '@ipld/car': 5.2.4 + '@ipld/dag-cbor': 9.0.6 + '@ipld/dag-ucan': 3.4.0 + '@ucanto/interface': 10.0.0 + multiformats: 11.0.2 + /@ucanto/core@9.0.1: resolution: {integrity: sha512-SsYvKCO3FD27roTVcg8ASxnixjn+j96sPlijpVq1uBUxq7SmuNxNPYFZqpxXKj2R4gty/Oc8XTse12ebB9Kofg==} dependencies: @@ -4293,46 +4309,54 @@ packages: '@ipld/dag-ucan': 3.4.0 '@ucanto/interface': 9.0.0 multiformats: 11.0.2 + dev: false + + /@ucanto/interface@10.0.0: + resolution: {integrity: sha512-VftAU5C5eCXIjTFpit8PqS8AZ4KaeGUwSI8HfEXNOeSBGbMNqIiBrGGb0Z/6BDsQ1uQ16PgAQyYxM3cpqORCaQ==} + dependencies: + '@ipld/dag-ucan': 3.4.0 + multiformats: 11.0.2 /@ucanto/interface@9.0.0: resolution: {integrity: sha512-Y9185yj+CRNpT43EAHTe9MpskCgU9DyWvmYyLMMmF40w+ujp6EYy5JVI/gVjJAsh+2Y9ruvWHOF0M+21TnLQyg==} dependencies: '@ipld/dag-ucan': 3.4.0 multiformats: 11.0.2 + dev: false - /@ucanto/principal@9.0.0: - resolution: {integrity: sha512-3KpaZ0mNycDnDx2WJ9p5qnhTlc4YLFqmuClBpNJcGLk+begaeH7dUlzfxNtloSvZAeB67G03Y883CqiVhN6ZmA==} + /@ucanto/principal@9.0.1: + resolution: {integrity: sha512-8eAvaZHW1vyET4X90rkJv6pmW1IOdEYlZYwO3wDgTkC5m9VytBEywCvpzP57cavdYIbbPse5QS9nMEGvk87zhw==} dependencies: '@ipld/dag-ucan': 3.4.0 '@noble/curves': 1.2.0 '@noble/ed25519': 1.7.3 '@noble/hashes': 1.3.2 - '@ucanto/interface': 9.0.0 + '@ucanto/interface': 10.0.0 multiformats: 11.0.2 one-webcrypto: 1.0.3 - /@ucanto/server@9.0.1: - resolution: {integrity: sha512-EGhgKLjPgvM39j86WxSD7UoR0rr7jpTMclCOcpOEVC9r91sob8BReW2i7cm1zPvhSNFqS8rLjlGEgUIAhdAxmg==} + /@ucanto/server@10.0.0: + resolution: {integrity: sha512-JMDMT3tFRE0S1cdtx/Hhh7v9FizV6IS0fPrh6pcli7AzKvXVy8Xu6EQ/66Fax4AQM2tkGxNNxjj2wHM7P4CqAg==} dependencies: - '@ucanto/core': 9.0.1 - '@ucanto/interface': 9.0.0 - '@ucanto/principal': 9.0.0 - '@ucanto/validator': 9.0.1 + '@ucanto/core': 10.0.0 + '@ucanto/interface': 10.0.0 + '@ucanto/principal': 9.0.1 + '@ucanto/validator': 9.0.2 - /@ucanto/transport@9.1.0: - resolution: {integrity: sha512-3pLXEg9YIH0NN1faBh0Xaioxbb2JtPL+4AFtQtmO8LnRyqGnTahZwwaM8XFL5eMBAp0pYDoZaQ6wdMce0t1cAQ==} + /@ucanto/transport@9.1.1: + resolution: {integrity: sha512-3CR17nEemOVaTuMZa6waWgVL4sLxSPcxYvpaNeJ6NZo1rfsqdyRXOtbVV/RcI2BtUL0Cao6JM6P9+gdghfc5ng==} dependencies: - '@ucanto/core': 9.0.1 - '@ucanto/interface': 9.0.0 + '@ucanto/core': 10.0.0 + '@ucanto/interface': 10.0.0 dev: false - /@ucanto/validator@9.0.1: - resolution: {integrity: sha512-H9GMOXHNW3vCv36eQZN1/h8zOXHEljRV5yNZ/huyOaJLVAKxt7Va1Ww8VBf2Ho/ac6P7jwvQRT7WgxaXx1/3Hg==} + /@ucanto/validator@9.0.2: + resolution: {integrity: sha512-LxhRbDMIoLt9LYHq/Rz1WCEH8AtmdsBTS/it28Ij/A3W0zyoSwUpAUxBtXaKRh/gpbxdWmjxX+nVfFJYL//b4g==} dependencies: '@ipld/car': 5.2.4 '@ipld/dag-cbor': 9.0.6 - '@ucanto/core': 9.0.1 - '@ucanto/interface': 9.0.0 + '@ucanto/core': 10.0.0 + '@ucanto/interface': 10.0.0 multiformats: 11.0.2 /@ungap/structured-clone@1.2.0: @@ -4409,13 +4433,13 @@ packages: web-streams-polyfill: 3.2.1 dev: false - /@web3-storage/content-claims@4.0.2: - resolution: {integrity: sha512-k6tIc7YjQtdKWi01r7+5stp2lo13ztwpIz+7NQYEbu5fZEsKKes5B4FKRqPWkZYO17+rPaihOY6sICT498c9EA==} + /@web3-storage/content-claims@4.0.4: + resolution: {integrity: sha512-zt5psR3SkLbPPHzGzhFXYSJEssDl/ELYbNhEez+tNZLZiagv3Vl0RSt+x3CFFgR5ovO6Zn+pLJJcMjpMiHw0Yw==} dependencies: - '@ucanto/client': 9.0.0 - '@ucanto/interface': 9.0.0 - '@ucanto/server': 9.0.1 - '@ucanto/transport': 9.1.0 + '@ucanto/client': 9.0.1 + '@ucanto/interface': 10.0.0 + '@ucanto/server': 10.0.0 + '@ucanto/transport': 9.1.1 carstream: 1.1.1 multiformats: 12.1.3 dev: false