From e814776b4508d825810a332b6f07697c379fd394 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Wed, 22 Jan 2020 08:21:03 +0100 Subject: [PATCH 1/2] Release 0.13.45 changelog_begin changelog_end --- VERSION | 2 +- docs/source/support/release-notes.rst | 47 +++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index fd88de07ae18..7ea1a22dcad1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.13.44 +0.13.45 diff --git a/docs/source/support/release-notes.rst b/docs/source/support/release-notes.rst index a729402b90bf..439e956b02f0 100644 --- a/docs/source/support/release-notes.rst +++ b/docs/source/support/release-notes.rst @@ -6,6 +6,53 @@ Release notes This page contains release notes for the SDK. +.. _release-0-13-45: + +0.13.45 - 2020-01-22 +-------------------- + +Sandbox +~~~~~~~ + +- Metrics are now namespaced by ``"daml"`` and their names have been + standardize to snake_case. + +DAML-LF +~~~~~~~ + +- Prohibit contract IDs in contract keys completely. Previously, creating keys containing absolute (but not relative) contract IDs was allowed, but ``lookupByKey`` on such a key would crash. + +DAML Compiler +~~~~~~~~~~~~~ + +- Added a ``--drop-orphan-instances`` flag in ``daml damlc docs``. +- The modification times in a DAR are now fixed to a + given value which makes the output of ``daml build`` deterministic + in single-threaded mode (which is the default). + +JSON API - Experimental +~~~~~~~~~~~~~~~~~~~~~~~ + +- Support Exercise by Key. See `issue #4099 `__. +- Response format in ``searchForever`` changed to be more like ``exercise``. + See `issue #4072 `__. +- In 'search' endpoint arguments, %templates is now templateIds. + Additionally, all contract query fields must occur under 'query'. + See `issue #3450 `__. + +Indexer +~~~~~~~ + +- Potentially fix a bug when recovering from failure. + +DAML Standard Library +~~~~~~~~~~~~~~~~~~~~~ + +- The ``Template``, ``Choice``, and + ``TemplateKey`` typeclasses have been split up into many small typeclasses + to improve forward compatibility of DAML models. ``Template``, + ``Choice`` and ``TemplateKey`` constraints can still be used as before. + .. _release-0-13-44: 0.13.44 - 2020-01-17 From 1a6e014d2122f50c84f3b203988c0fe75e3debc1 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Wed, 22 Jan 2020 09:26:33 +0100 Subject: [PATCH 2/2] Update docs/source/support/release-notes.rst Co-Authored-By: Stefano Baghino <43749967+stefanobaghino-da@users.noreply.github.com> --- docs/source/support/release-notes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/support/release-notes.rst b/docs/source/support/release-notes.rst index 439e956b02f0..309ba09450a1 100644 --- a/docs/source/support/release-notes.rst +++ b/docs/source/support/release-notes.rst @@ -15,7 +15,7 @@ Sandbox ~~~~~~~ - Metrics are now namespaced by ``"daml"`` and their names have been - standardize to snake_case. + standardized to snake_case. DAML-LF ~~~~~~~