From 7f09d87933fbf9f0178be915ef86584d32deb0f1 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Wed, 14 Aug 2019 10:53:04 +0200 Subject: [PATCH] Release 0.13.19 (#2525) --- VERSION | 2 +- docs/source/support/release-notes.rst | 45 +++++++++++++++++++++++++++ unreleased.rst | 16 ---------- 3 files changed, 46 insertions(+), 17 deletions(-) diff --git a/VERSION b/VERSION index 2274d48d256a..62dc2ab8985e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.13.18 +0.13.19 diff --git a/docs/source/support/release-notes.rst b/docs/source/support/release-notes.rst index dd7c07ba4434..2413bb97d639 100644 --- a/docs/source/support/release-notes.rst +++ b/docs/source/support/release-notes.rst @@ -6,6 +6,51 @@ Release notes This page contains release notes for the SDK. +.. _release-0-13-19: + +0.13.19 - 2019-08-14 +-------------------- + +Sandbox +~~~~~~~ + +- Fixed a bug that prevented the ledger from loading transactions with empty workflow ids. +- Fixed internal shutdown order to avoid dead letter warnings when + stopping Sandbox/Ledger API Server. See issue `#1886 + `__. + +DAML Studio +~~~~~~~~~~~ + +- Added a new command for visualizing a project in the IDE. +- Print stack trace when a scenario fails. +- Various memory leaks have been fixed so long-running sessions should + no longer show a significant increase in memory usage. + +DAML Compiler +~~~~~~~~~~~~~ + +- The ``--project-root`` option now works properly with relative paths + in ``daml build``. +- Support generic template declarations and instances. Documentation + for generic templates is still being worked on. +- The ``--dump-pom`` flag from ``damlc package`` has been removed as + packaging has not relied on POM files for a while. + +Navigator +~~~~~~~~~ + +- ``{"None": {}}`` and ``{"Some": value}``, where previously accepted, are no longer supported or used for DAML ``Optional`` values. + Instead, for simple cases, use the plain value for ``Some``, and ``null`` for ``None``. + See issue `#2361 `__ for other cases. + +HTTP JSON API +~~~~~~~~~~~~~ + +- A new, more intuitive JSON format for DAML values is supported. + See issue `#2361 `__. + + .. _release-0-13-18: 0.13.18 - 2019-08-07 diff --git a/unreleased.rst b/unreleased.rst index b1f735d98763..c02fc9caf09f 100644 --- a/unreleased.rst +++ b/unreleased.rst @@ -8,19 +8,3 @@ This page contains release notes for the SDK. HEAD — ongoing -------------- - -+ [Ledger] Fixed a bug that prevented the ledger from loading transactions with empty workflow ids. -+ [DAML Extension] DAML visualization from IDE -+ [DAML Compiler] The ``--project-root`` option now works properly - with relative paths in ``daml build``. -+ [Ledger] Fixed internal shutdown order to avoid dead letter warnings when stopping Sandbox/Ledger API Server. - See issue `#1886 `__. -+ [DAML Compiler] Support generic template declarations and instances. -+ [DAML Compile] The ``--dump-pom`` flag from ``damlc package`` has been removed as packaging - has not relied on POM files for a while. -+ [DAML Studio] Print stack trace when a scenario fails. -+ [Navigator] ``{"None": {}}`` and ``{"Some": value}``, where previously accepted, are no longer supported or used for DAML ``Optional`` values. - Instead, for simple cases, use the plain value for ``Some``, and ``null`` for ``None``. - See issue `#2361 `__ for other cases. -+ [Navigator] [HTTP JSON] A new, more intuitive JSON format for DAML values is supported. - See issue `#2361 `__.