You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/support/release-notes.rst
+59Lines changed: 59 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,65 @@ Release notes
6
6
7
7
This page contains release notes for the SDK.
8
8
9
+
.. _release-0-13-33:
10
+
11
+
0.13.33 - 2019-11-06
12
+
--------------------
13
+
14
+
Navigator
15
+
~~~~~~~~~
16
+
- Fixed regression in Navigator to properly respect the CLI option ``--ledger-api-inbound-message-size-max`` again. See `issue #3301 <https://github.com/digital-asset/daml/issues/3301>`__.
17
+
18
+
DAML Compiler
19
+
~~~~~~~~~~~~~
20
+
- Reduce the memory footprint of the IDE and the command line tools (ca. 18% in our experiments).
21
+
- Fix compile error caused by instantiating generic templates at ``Numeric n``.
22
+
- The compiler now accepts single-constructor enum types. For example ``data A = A`` or ``data Foo = Bar``.
23
+
24
+
DAML Triggers
25
+
~~~~~~~~~~~~~
26
+
- Add ``dedupCreate`` and ``dedupExercise`` helpers that will only send
27
+
commands if they are not already in flight.
28
+
- Remove the custom ``AbsoluteContractId`` type in favor of the regular ``ContractId`` type used in DAML templates.
29
+
30
+
Sandbox
31
+
~~~~~~~
32
+
- Fixed a bug a database migration script for Sandbox on Postgres introduced in SDK 0.13.32. See `issue #3284 <https://github.com/digital-asset/daml/issues/3284>`__.
33
+
- Timing about database operations are now exposed over JMX as well as via the logs.
34
+
- Added a missing index to the SQL schema for the Postgres Ledger.
35
+
36
+
DAML Integration Kit
37
+
~~~~~~~~~~~~~~~~~~~~
38
+
- Re-add :doc:`integration kit documentation </daml-integration-kit/index>` that got accidentally deleted.
39
+
40
+
Ledger API
41
+
~~~~~~~~~~
42
+
- Disallow empty commands. See `issue #592 <https://github.com/digital-asset/daml/issues/592>`__.
43
+
44
+
DAML Stdlib
45
+
~~~~~~~~~~~
46
+
- Add `DA.TextMap.filter` and `DA.Next.Map.filter`.
47
+
- Add `assertEq` and `assertNotEq` to `DA.Assert` as synonyms for `===` and `=/=`.
48
+
- Add ``DA.Foldable.mapA_``, ``DA.Foldable.forA_``, ``DA.Foldable.sequence_`` and ``DA.Action.replicateA_``. These functions
49
+
match the behavior of corresponding functions without the underscore suffix but ignore the result which can be more convenient and
50
+
efficient.
51
+
52
+
Extractor - Experimental
53
+
~~~~~~~~~~~~~~~~~~~~~~~~
54
+
- Extractor now stores exercise events in the single table data format. See `issue #3274 <https://github.com/digital-asset/daml/issues/3274>`__.
55
+
56
+
JSON API - Experimental
57
+
~~~~~~~~~~~~~~~~~~~~~~~
58
+
- ``workflowId`` no longer included in any responses.
59
+
- ``/contracts/search`` endpoint can optionally store searched
60
+
contracts in a Postgres-based cache, by passing the new ``--query-store-jdbc-config`` option.
61
+
See `issue #2781 <https://github.com/digital-asset/daml/issues/2781>`_.
62
+
63
+
DAML SDK
64
+
~~~~~~~~
65
+
- Display release notes in the IDE when the DAML extension is upgraded.
Copy file name to clipboardExpand all lines: unreleased.rst
-24Lines changed: 0 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -9,27 +9,3 @@ This page contains release notes for the SDK.
9
9
HEAD — ongoing
10
10
--------------
11
11
12
-
- [Navigator] Fixed regression in Navigator to properly respect the CLI option ``--ledger-api-inbound-message-size-max`` again. See `issue #3301 <https://github.com/digital-asset/daml/issues/3301>`__.
13
-
- [DAML Compiler] Reduce the memory footprint of the IDE and the command line tools (ca. 18% in our experiments).
14
-
- [DAML Triggers] Add ``dedupCreate`` and ``dedupExercise`` helpers that will only send
15
-
commands if they are not already in flight.
16
-
- [Sandbox] Fixed a bug a database migration script for Sandbox on Postgres introduced in SDK 0.13.32. See `issue #3284 <https://github.com/digital-asset/daml/issues/3284>`__.
- [Ledger API] Disallow empty commands. See `issue #592 <https://github.com/digital-asset/daml/issues/592>`__.
19
-
- [DAML Stdlib] Add `DA.TextMap.filter` and `DA.Next.Map.filter`.
20
-
- [DAML Stdlib] Add `assertEq` and `assertNotEq` to `DA.Assert` as synonyms for `===` and `=/=`.
21
-
- [Extractor - Experimental] Extractor now stores exercise events in the single table data format. See `issue #3274 <https://github.com/digital-asset/daml/issues/3274>`__.
22
-
- [DAML Compiler] Fix compile error caused by instantiating generic
23
-
templates at ``Numeric n``.
24
-
- [Sandbox] Timing about database operations are now exposed over JMX as well as via the logs.
25
-
- [JSON API - Experimental] ``workflowId`` no longer included in any responses.
26
-
- [JSON API - Experimental] ``/contracts/search`` endpoint can optionally store searched
27
-
contracts in a Postgres-based cache, by passing the new ``--query-store-jdbc-config`` option.
28
-
See `issue #2781 <https://github.com/digital-asset/daml/issues/2781>`_.
29
-
- [DAML Triggers] Remove the custom ``AbsoluteContractId`` type in favor of the regular ``ContractId`` type used in DAML templates.
30
-
- [Sandbox] Added a missing index to the SQL schema for the Postgres Ledger.
31
-
- [DAML Stdlib] Add ``DA.Foldable.mapA_``, ``DA.Foldable.forA_``, ``DA.Foldable.sequence_`` and ``DA.Action.replicateA_``. These functions
32
-
match the behavior of corresponding functions without the underscore suffix but ignore the result which can be more convenient and
33
-
efficient.
34
-
- [DAML Compiler] The compiler now accepts single-constructor enum types. For example ``data A = A`` or ``data Foo = Bar``.
35
-
- [DAML SDK] Display release notes in the IDE when the DAML extension is upgraded.
0 commit comments