Ledger API
- Allow non-alphanumeric characters in Ledger API server participant ids (space, colon, hash, slash, dot). Proper fix for change originally attempted in v0.13.36. See issue issue #3327.
- Add healthcheck endpoints, conforming to the GRPC Health Checking Protocol. It is always
SERVINGfor now.
Ledger API Server
- Ledger API Server and Indexer now accept an instance of
MetricRegistryas parameters. This gives implementors of ledger integrations the most flexibility to set up metrics reporting that works best for them. - Add various metrics to track gRPC requests, command submissions, and state update processing. See #3513.
Daml Ledger Integration Kit
- Add conformance test coverage for the
grpc.health.v1.Healthservice. - Add Ledger API Test Tool [--load-scale-factor]{.title-ref} option that allows dialing up or down the workload applied by scale tests (such as the
TransactionScaleITsuite). This allows improving the performance of different ledger over time. - The Ledger API Test Tool no longer shows individual test duration colored based on how long they lasted.
Sandbox
- Add support for JWT tokens that only authorize to read data, but not to act on the ledger.
- Add CLI options to start the sandbox with JWT based authentication with RSA signed tokens. See issue #3155 .
- The
--auth-jwt-hs256CLI option is renamed to--auth-jwt-hs256-unsafe: you are advised to _not use this JWT token signing way in a production environment.
Navigator
- Fixed a bug where the
--access-token-fileoption did not work correctly.
Daml Compiler
- Bugfix: The
Sdk-Versionfield in a DAR manifest file now matches the SDK version of the compiler, not thesdk-versionfield fromdaml.yaml. These are usually the same, but they could be different if you set theDaml_SDK_VERSIONenvironment variable before runningdaml initordaml build. - Make the experimental feature "generic templates" unavailable. The current implementation is at odds with other, more important language features still under development.
Daml Studio
- Notify users about new Daml Driven blog posts.
Java Bindings
- Deprecated existing constructors for
DamlLedgerClient, please use the staticnewBuildermethod to instantiate a builder and use it to create the client, starting from either aNettyChannelBuilderor a plain host/port pair. - Rename
DamlMaptoDamlTextMap. DamlCollectorsclass provides Collectors to build more easilyDamlListandDamlTextMap.- Change the recommended method to convert
DamlValuecontainers from/to Java Bindings containers. See https://docs.daml.com/0.13.38/app-dev/bindings-java/codegen.html for more details the new methodology.
Daml-LF Interface Reader
- Rename
PrimTypeMaptoPrimTypeTextMapandPrimType.MaptoPrimType.TextMap
JSON API - Experimental
- Accept a path to a file containing a token at startup for package retrieval. See issue #3627.
Daml Triggers - Experimental
- Daml Triggers now allow you to specify which templates you want to listen for. This can improve performance.
Daml Script - Experimental
- Daml Script can now run be used in distributed topologies.
- Expose the Ledger API
exerciseByKeycommand