Skip to content

Releases: holochain/holochain-client-rust

v0.6.0-dev.2

04 Jul 21:09
05b99c9
Compare
Choose a tag to compare
v0.6.0-dev.2 Pre-release
Pre-release
v0.6.0-dev.2

v0.5.0-rc.5

14 Jun 10:07
Compare
Choose a tag to compare
v0.5.0-rc.5 Pre-release
Pre-release
v0.5.0-rc.5

v0.6.0-dev.1

11 Jun 03:03
Compare
Choose a tag to compare
v0.6.0-dev.1 Pre-release
Pre-release

Added

  • New call AppRequest::ProvideMemproofs. An app can be installed with deferred membrane proofs, which can later be provided through this call.

Changed

  • Remove unnecessary use of &mut self in the app and admin clients. These used to be needed when the internal send mutated
    state, but it no longer does that so we can drop the requirement for the clients to be mutable.

Fixed

  • Dropping admin or app connections will now close the connection.

v0.5.0-rc.4

28 May 18:33
4a97eea
Compare
Choose a tag to compare
v0.5.0-rc.4 Pre-release
Pre-release
v0.5.0-rc.4

0.5.0-rc.3

28 May 11:56
c61df5d
Compare
Choose a tag to compare
0.5.0-rc.3 Pre-release
Pre-release
v0.5.0-rc.3

v0.5.0-rc.3

v0.5.0-rc.2

27 May 15:23
f064d89
Compare
Choose a tag to compare
v0.5.0-rc.2 Pre-release
Pre-release
v0.5.0-rc.2

v0.5.0-rc.1

22 May 18:15
Compare
Choose a tag to compare
v0.5.0-rc.1 Pre-release
Pre-release

Changed

  • Backport Conductor API serialization fix.

v0.6.0-dev.0

02 May 20:11
a3522eb
Compare
Choose a tag to compare
v0.6.0-dev.0 Pre-release
Pre-release
v0.6.0-dev.0

v0.5.0-dev.32

26 Apr 02:04
Compare
Choose a tag to compare
v0.5.0-dev.32 Pre-release
Pre-release

Added

  • New admin call issue_app_auth_token which allows you to issue an app auth token. This is now required when creating
    an app websocket connection. See the example for AppWebsocket::connect for how to use this.
  • Missing app interface function list_wasm_host_functions has been added.

Changed

  • BREAKING: The admin call list_app_interfaces now returns a Vec<AppInterfaceInfo> instead of a Vec<u16>. You can map the response to a Vec<u16> to get the previous result.
  • BREAKING: The admin call attach_app_interface now takes an additional parameter of type InstalledAppId which allows you to restrict an app interface to a single app.
  • BREAKING: The app call app_info no longer takes an installed_app_id parameter. The conductor uses the app that you have authenticated with.

Fixed

Removed

  • BREAKING: The old AppWebsocket is gone, its functionality was merged into the AppAgentWebsocket which has been renamed to AppWebsocket.

v0.4.11

17 Apr 19:07
Compare
Choose a tag to compare

Changed

  • Remove expectation of an IPv4 address and allow for IPv4 and IPv6.