This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
Releases: web3-storage/w3up-client
Releases · web3-storage/w3up-client
v5.1.0
v5.0.0
v4.3.0
4.3.0 (2023-03-21)
Features
- add authorize to client (c9555d9)
- expose connection id did (ee1cf3a)
- use new claimDelegations "use case" (1659786)
Bug Fixes
- back to 100% test coverage (5ae7f1e)
- keep casting defaultProvider() (7b8c859)
- pass registerSpace default provider inferred from connection (224f818)
- typos (52c648a)
- typos (52c648a)
- update package-lock (6aa7c47)
- use released packages to green the build (05881fc)
- warnings about uploads being public/permanent (187228a)
v4.2.0
v4.1.0
v4.0.1
v4.0.0
4.0.0 (2022-12-14)
⚠ BREAKING CHANGES
- The client has been re-written as a wrapper around access-client and upload-client and the API has changed. Migration notes:
client.account()
has been removed, useclient.currentSpace()
client.exportDelegation()
has been removed, useclient.createDelegation()
and then callexport()
on the returned value and encode the returned blocks as a CAR file using the@ipld/car
library.client.identity()
has been removed, useclient.agent()
+client.currentSpace()
+client.delegations()
client.importDelegation()
has been removed, useclient.addProof()
(for general delegations to your agent) orclient.addSpace()
(to add a proof and also add the space to your list of spaces).client.insights()
has been removed - this was never workingclient.invoke()
has been removedclient.list()
has been removed, useclient.capability.upload.list()
client.makeDelegation()
has been renamed and signature has changed, useclient.createDelegation()
client.register()
has been removed, useclient.registerSpace()
client.remove()
has been removed, useclient.capability.store.remove()
client.removeUpload()
has been removed, useclient.capability.upload.remove()
client.stat()
has been removed, useclient.capability.store.list()
client.upload()
has been removed, useclient.capability.store.add()
client.uploadAdd()
has been removed, useclient.capability.upload.add()
client.whoami()
has been removed, useclient.capability.space.info()