Releases: holochain/holochain-client-js
Releases · holochain/holochain-client-js
v0.19.0-dev.6
Changed
- Change
InstallAppRequest
type to adhere to the new format that includes theroles_settings
field and removes
themembrane_proofs
field as membrane proofs are now specified as part of theroles_settings
.
v0.19.0-dev.5
Changed
- Simplify zome call parameters.
cap_secret
,provenance
andpayload
are optional parameters of aCallZomeRequest
. If implicit zome call signing is used, which happens when calling a zome with aCallZomeRequest
,provenance
andcap_secret
are automatically set with the authorized signing credentials. It is still possible to call a cell by its role name instead of its cell id. Alternatively to passing in aCallZomeRequest
,callZome
can be invoked with a signed requestCallZomeRequestSigned
, where the zome call parameters have already been serialized and signed.
v0.19.0-dev.4
Fixed
- Bring back optional cap_secret to zome call parameters.
v0.19.0-dev.3
Changed
- Zome call signing has been changed in Holochain to remove the requirement of imitating Holochain serialization. Signing is now a simplified process of serializing zome call parameters using MessagePack, then computing a SHA2 512-bit hash of the serialized bytes and signing the hash. The zome call payload consists of the serialized bytes and the signature.
v0.19.0-dev.2
Added
- AppWebsocket calls to interact with countersigning sessions, i.e.
GetCountersigningSessionState
as well asAbandonCountersigningSession
andPublishCountersigningSession
when a session could not be resolved automatically. Countersigning is an unstable feature which must explicitly be enabled in Holochain.
v0.18.0-rc.0
Added
- Bring back a websocket reconnection automation for Admin and App websockets. When either of them is closed and a new request made, it will attempt to reconnect using the same app authentication token that was used to initially authenticate the websocket. A specific
InvalidTokenError
is returned if that fails.
Changed
- Update to Holochain 0.4.0-rc.0
v0.19.0-dev.1
Added
- Bring back a websocket reconnection automation for Admin and App websockets. When either of them is closed and a new request made, it will attempt to reconnect using the same app authentication token that was used to initially authenticate the websocket. A specific
InvalidTokenError
is returned if that fails.
v0.19.0-dev.0
Changed
- Update to Holochain 0.5.0-dev.0
v0.18.0-dev.13
Fixed
- Type
RevokeAgentKeyResponse
, which returns an array of tuples with cell id and error message for all cells that key revocation failed for.
v0.18.0-dev.12
Added
- Admin API call
RevokeAgentKey
.