Releases: digital-asset/dazl-client
dazl v6.8.2
python: Support formatting decimals that are very small.
dazl v6.8.1
python: Handle client-side cancellation of command submissions more gracefully
dazl v6.8.0
Make type string identifiers more consistent with the HTTP JSON API; in particular, support template names of the form 'PACKAGE_ID:Module.Name:Entity'.
dazl v6.7.6
Put package decoding in a background thread to improve performance of dazl apps while either synchronizing packages with a remote service or when uploading new packages.
dazl v6.7.5
Merge pull request #83 from digital-asset/python-ignore-unknown-archives python: Ignore archive events that correspond to unobserved create events
dazl v6.7.4
Merge pull request #82 from digital-asset/python-metrics-1.0 python: Remove the block offset metric, as it is no longer numeric in DAML SDK 1.0
dazl v6.7.3
Support for DAML-LF 1.8 DARs.
dazl v6.7.2
Make transaction offset parsing compatible with DAML SDK 1.0. Older versions of the DAML SDK are still supported as well.
dazl v6.7.1
- Fix pingpong startup instructions.
- Allow for a configurable maximum record time (only takes effect for DAML SDK versions before 1.0).
dazl v6.7.0
Fix a bug that caused ready() calls to perpetually hang if a connection was initially opened, but dropped before the ACS could fully be read.
There are minor breaking changes to some usages of network.aio_run(); if you do not call this method directly, it should be safe to upgrade; otherwise, there is a minor adjustment that you will need to make to your code:
network.aio_run(RunState(RunLevel.RUN_UNTIL_IDLE))becomes
network.aio_run(keep_open=False)