This page contains release notes for the SDK.
- [DAML Integration Kit] The reference implementation can now spin up multiple nodes, either scaling
a single participant horizontally or adding new participants. Check the CLI
--help
option. - [DAML Integration Kit] The test tool now runs the double spend test on a shared contract in a multi-node setup (as well as single-node).
- [DAML Standard Library] BREAKING CHANGE The
(/)
operator was moved out of theFractional
typeclass into a separateDivisible
typeclass, which is now the parent class ofFractional
. TheInt
instance ofFractional
is discontinued, but there is anInt
instance ofDivisible
. This change will break projects that rely on theFractional Int
instance. To fix that, change the code to rely onDivisible Int
instead. This change will also break projects where aFractional
instance is defined. To fix that, add aDivisible
instance and move the definition of(/)
there. - [DAML Integration Kit] The test tool can now run all semantic test in a multi-node setup.
- [DAML Assistant] The HTTP JSON API is now integrated with the
assistant and distributed with the SDK. It can either be launched
via
daml json-api
or viadaml start
. You can find more information in the README.