Releases: holochain/holochain-client-js
Releases · holochain/holochain-client-js
v0.18.0-dev.11
Added
- Util function to compare two cell ids
isSameCell
.
Changed
- BREAKING: Clone cell ids have changed from accepting a
CellId
to aDnaHash
.
v0.18.0-dev.10
v0.18.0-dev.10
v0.18.0-dev.8
Changed
- Revert addition of @hc-spartan/holo-hash. Hashes were used inconsistently and lead to wrong types for return values.
v0.18.0-dev.7
Changed
- BREAKING: Use package @spartan-hc/holo-hash for managing hashes, instead of custom functions.
AgentPubKey
is a new type now instead of aUint8Array
.
v0.18.0-dev.6
Added
- New value
NotStartedAfterProvidingMemproofs
for typeDisabledAppReason
which effectively allows a new app status, corresponding to the specific state where a UI has just called AppRequest::ProvideMemproofs, but the app has not yet been enabled for the first time. - New
AppWebsocket
callEnableAfterMemproofsProvided
, which allows enabling an app only if the app is in theAppStatus::Disabled(DisabledAppReason::NotStartedAfterProvidingMemproofs)
state. Attempting to enable the app from other states (other than Running) will fail. - New field
lineage
to the DNA manifest, which declares forward compatibility for any hash in that list with this DNA. - New
AdminWebsocket
callGetCompatibleCells
, which returnsCellId
for all installed cells which use a DNA that is forward-compatible with a given DNA hash. This can be used to find a compatible cell for use with the UseExisting cell provisioning method.
v0.18.0-dev.5
Fixed
- Hash part utility functions for core hash and DHT location. Both were using an incorrect number of bytes.
v0.17.1
v0.18.0-dev.4
v0.18.0-dev.4
v0.17.0
First release of the client to be used with Holochain 0.3.1
v0.18.0-dev.3
Changed
DhtOp
was split intoChainOp
andWarrantOp
in Holochain.