diff --git a/CHANGELOG.md b/CHANGELOG.md index 7af86c39..50ad4d91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added ### Fixed ### 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. ### Removed +## 2024-11-20: 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. + ## 2024-11-12: v0.19.0-dev.2 ### Added - AppWebsocket calls to interact with countersigning sessions, i.e. `GetCountersigningSessionState` as well as `AbandonCountersigningSession` and `PublishCountersigningSession` when a session could not be resolved automatically. Countersigning is an unstable feature which must explicitly be enabled in Holochain. diff --git a/docs/client.callzomerequest.md b/docs/client.callzomerequest.md index 1e8b8ddc..2e5bdd79 100644 --- a/docs/client.callzomerequest.md +++ b/docs/client.callzomerequest.md @@ -8,7 +8,7 @@ **Signature:** ```typescript -export type CallZomeRequest = CallZomeRequestGeneric; +export type CallZomeRequest = CallZomeRequestGeneric; ``` **References:** [CallZomeRequestGeneric](./client.callzomerequestgeneric.md) diff --git a/package-lock.json b/package-lock.json index c61ef000..18c562c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@holochain/client", - "version": "0.19.0-dev.2", + "version": "0.19.0-dev.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@holochain/client", - "version": "0.19.0-dev.2", + "version": "0.19.0-dev.3", "license": "CAL-1.0", "dependencies": { "@bitgo/blake2b": "^3.2.4", diff --git a/package.json b/package.json index 0dc5857b..4fbd69cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@holochain/client", - "version": "0.19.0-dev.2", + "version": "0.19.0-dev.3", "description": "A JavaScript client for the Holochain Conductor API", "author": "Holochain Foundation (https://holochain.org)", "license": "CAL-1.0",