From 5b43e41026f2b7f9af6bebf4af6ccce803522335 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 23:00:30 -0300 Subject: [PATCH] chore(main): release w3up-client 16.5.1 (#1587) :robot: I have created a release *beep* *boop* --- ## [16.5.1](https://github.com/storacha/w3up/compare/w3up-client-v16.5.0...w3up-client-v16.5.1) (2024-11-20) ### Fixes * use configured receipts endpoint ([882d1c5](https://github.com/storacha/w3up/commit/882d1c5bda412103fa7d635f4ef1b99c1782e17a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Natalie Bravo --- .github/release-please-manifest.json | 2 +- packages/w3up-client/CHANGELOG.md | 7 +++++++ packages/w3up-client/package.json | 2 +- packages/w3up-client/test/capability/blob.test.js | 4 ++-- packages/w3up-client/test/client.test.js | 10 +++++----- packages/w3up-client/test/test.js | 2 +- 6 files changed, 17 insertions(+), 10 deletions(-) diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 626fc930a..b2f987816 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -6,6 +6,6 @@ "packages/capabilities": "17.4.1", "packages/upload-api": "18.1.2", "packages/upload-client": "17.1.0", - "packages/w3up-client": "16.5.0", + "packages/w3up-client": "16.5.1", "packages/did-mailto": "2.0.2" } diff --git a/packages/w3up-client/CHANGELOG.md b/packages/w3up-client/CHANGELOG.md index c48890e39..abc6570f2 100644 --- a/packages/w3up-client/CHANGELOG.md +++ b/packages/w3up-client/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [16.5.1](https://github.com/storacha/w3up/compare/w3up-client-v16.5.0...w3up-client-v16.5.1) (2024-11-20) + + +### Fixes + +* use configured receipts endpoint ([882d1c5](https://github.com/storacha/w3up/commit/882d1c5bda412103fa7d635f4ef1b99c1782e17a)) + ## [16.5.0](https://github.com/storacha/w3up/compare/w3up-client-v16.4.1...w3up-client-v16.5.0) (2024-11-17) diff --git a/packages/w3up-client/package.json b/packages/w3up-client/package.json index efed04735..f68fcb891 100644 --- a/packages/w3up-client/package.json +++ b/packages/w3up-client/package.json @@ -1,6 +1,6 @@ { "name": "@web3-storage/w3up-client", - "version": "16.5.0", + "version": "16.5.1", "description": "Client for the web3.storage w3up api", "license": "Apache-2.0 OR MIT", "type": "module", diff --git a/packages/w3up-client/test/capability/blob.test.js b/packages/w3up-client/test/capability/blob.test.js index 564dbddcf..209d21307 100644 --- a/packages/w3up-client/test/capability/blob.test.js +++ b/packages/w3up-client/test/capability/blob.test.js @@ -16,7 +16,7 @@ export const BlobClient = Test.withContext({ access: connection, upload: connection, }, - receiptsEndpoint: new URL(receiptsEndpoint) + receiptsEndpoint: new URL(receiptsEndpoint), }) const space = await alice.createSpace('test') @@ -53,7 +53,7 @@ export const BlobClient = Test.withContext({ access: connection, upload: connection, }, - receiptsEndpoint: new URL(receiptsEndpoint) + receiptsEndpoint: new URL(receiptsEndpoint), }) const space = await alice.createSpace('test') diff --git a/packages/w3up-client/test/client.test.js b/packages/w3up-client/test/client.test.js index e10bed0e2..7869aa2f0 100644 --- a/packages/w3up-client/test/client.test.js +++ b/packages/w3up-client/test/client.test.js @@ -54,7 +54,7 @@ export const testClient = { const dataCID = await alice.uploadFile(file, { onShardStored: (meta) => { carCID = meta.cid - } + }, }) assert.deepEqual(await uploadTable.exists(space.did(), dataCID), { @@ -112,7 +112,7 @@ export const testClient = { access: connection, upload: connection, }, - receiptsEndpoint: new URL(receiptsEndpoint) + receiptsEndpoint: new URL(receiptsEndpoint), }) const space = await alice.createSpace('upload-dir-test') @@ -132,7 +132,7 @@ export const testClient = { const dataCID = await alice.uploadDirectory(files, { onShardStored: (meta) => { carCID = meta.cid - } + }, }) assert.deepEqual(await uploadTable.exists(space.did(), dataCID), { @@ -175,7 +175,7 @@ export const testClient = { const root = await alice.uploadCAR(car, { onShardStored: (meta) => { carCID = meta.cid - } + }, }) assert.deepEqual(await uploadTable.exists(space.did(), root), { @@ -205,7 +205,7 @@ export const testClient = { serviceConf: { access: connection, upload: connection, - } + }, }) const receipt = await alice.getReceipt(taskCid) // This is a real `piece/accept` receipt exported as fixture diff --git a/packages/w3up-client/test/test.js b/packages/w3up-client/test/test.js index ef87f178b..4d7347de6 100644 --- a/packages/w3up-client/test/test.js +++ b/packages/w3up-client/test/test.js @@ -84,7 +84,7 @@ export const setup = async () => { upload: context.connection, filecoin: context.connection, }, - receiptsEndpoint: new URL(receiptsEndpoint) + receiptsEndpoint: new URL(receiptsEndpoint), }) return {