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 forAppWebsocket::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 aVec<AppInterfaceInfo>
instead of aVec<u16>
. You can map the response to aVec<u16>
to get the previous result. - BREAKING: The admin call
attach_app_interface
now takes an additional parameter of typeInstalledAppId
which allows you to restrict an app interface to a single app. - BREAKING: The app call
app_info
no longer takes aninstalled_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 theAppAgentWebsocket
which has been renamed toAppWebsocket
.