Skip to content

Commit 2eea995

Browse files
rohanjrmergify[bot]
authored andcommitted
Release (#3369)
1 parent 0ae016d commit 2eea995

File tree

3 files changed

+60
-25
lines changed

3 files changed

+60
-25
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.32
1+
0.13.33

docs/source/support/release-notes.rst

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,65 @@ Release notes
66

77
This page contains release notes for the SDK.
88

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.
66+
67+
968
.. _release-0-13-32:
1069

1170
0.13.32 - 2019-10-29

unreleased.rst

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,3 @@ This page contains release notes for the SDK.
99
HEAD — ongoing
1010
--------------
1111

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>`__.
17-
- [DAML Integration Kit] Re-add :doc:`integration kit documentation </daml-integration-kit/index>` that got accidentally deleted.
18-
- [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

Comments
 (0)