Skip to content

Releases: digital-asset/dazl-client

dazl v6.8.2

29 Jul 21:07
9c8c493

Choose a tag to compare

python: Support formatting decimals that are very small.

dazl v6.8.1

20 Jul 13:17
dfe29df

Choose a tag to compare

python: Handle client-side cancellation of command submissions more gracefully

dazl v6.8.0

12 May 15:33
1f0499a

Choose a tag to compare

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

28 Apr 01:02
c0378b0

Choose a tag to compare

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

21 Apr 20:46
cf3a910

Choose a tag to compare

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

15 Apr 18:32
a735bc5

Choose a tag to compare

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

14 Apr 14:40
ba5b8a4

Choose a tag to compare

Support for DAML-LF 1.8 DARs.

dazl v6.7.2

13 Apr 12:47
829aaca

Choose a tag to compare

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

12 Apr 18:41
96e8185

Choose a tag to compare

  • 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

19 Mar 14:19
f7ba752

Choose a tag to compare

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)