Skip to content

Commit

Permalink
chore(main): release w3up-client 16.5.1 (#1587)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


##
[16.5.1](w3up-client-v16.5.0...w3up-client-v16.5.1)
(2024-11-20)


### Fixes

* use configured receipts endpoint
([882d1c5](882d1c5))

---
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 <[email protected]>
  • Loading branch information
github-actions[bot] and BravoNatalie authored Nov 21, 2024
1 parent 882d1c5 commit 5b43e41
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
7 changes: 7 additions & 0 deletions packages/w3up-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/w3up-client/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/w3up-client/test/capability/blob.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -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')
Expand Down
10 changes: 5 additions & 5 deletions packages/w3up-client/test/client.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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), {
Expand Down Expand Up @@ -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')
Expand All @@ -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), {
Expand Down Expand Up @@ -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), {
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/w3up-client/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const setup = async () => {
upload: context.connection,
filecoin: context.connection,
},
receiptsEndpoint: new URL(receiptsEndpoint)
receiptsEndpoint: new URL(receiptsEndpoint),
})

return {
Expand Down

0 comments on commit 5b43e41

Please sign in to comment.