Commit Graph

1100 Commits

Author SHA1 Message Date
Moisés Ackerman
e3c2662ed9
Update reference docs for interfaces and interface instances (#14743)
* Update reference docs for interfaces and interface instances

  * Rename subsection on empty interface instance clauses

  * Move empty interface instance example below explanation

  * Split 'interface instance in the interface' into its own subsection

  * Add code example for interface instance in the interface

  * Rephrase docs on interface method types

  * Move docs on required interfaces to the bottom

  * Add section on interface values

  * Explain result of applying a method, highlight 'this' binding

changelog_begin
changelog_end

Co-authored-by: Stefano Baghino <43749967+stefanobaghino-da@users.noreply.github.com>
Co-authored-by: Moritz Kiefer <moritz.kiefer@purelyfunctional.org>
2022-08-19 13:54:58 +02:00
Moisés Ackerman
009c3c306b
Add interface instance syntax, including retroactive interface instances (#14715)
* Extract qualifyLocally in LFConversion

* Update ghc rev

* Add parent type argument to interface instance desugaring types

* Check interface instance parent in LFConversion

* Convert interface instances in interface declarations

* Update daml-test-files to use 'interface instance' syntax

* Update other tests to use 'interface instance' syntax

* Update interface reference docs to use 'interface instance' syntax

* Update other files to use 'interface instance' syntax

* Add todo in DA.Daml.LF.Ast.Pretty

* Add daml-test-files for retroactive interface instances

changelog_begin
changelog_end
2022-08-17 12:06:59 +00:00
cgrigis-da
9b3ec7f45f
[Doc] Fix some typos in intro docs (#14658)
* [Doc] Fix some typos in intro docs

CHANGELOG_BEGIN
CHANGELOG_END

* Update docs/source/daml/intro/9_Dependencies.rst

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>

* Apply review comments

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>
2022-08-15 15:34:59 +02:00
cgrigis-da
ad4ad64224
Fix indent that creates an unneeded subparagraph (#14605)
CHANGELOG_BEGIN
CHANGELOG_END
2022-08-11 16:01:33 +02:00
Stefano Baghino
43f2184c5a
Remove unused --wall-clock-time from daml-intro-7 template (#14689)
Apart from not being actually used in any part of the relative
chapter of "An Introduction to Daml" (https://docs.daml.com/2.3.2/daml/intro/7_Composing.html),
where the transaction view actually shows the usage of static time,
the options has been dropped when we switched to a Canton-based
sandbox as part of Daml 2.0 and causes an error when running
`daml start`, as part of the ninth chapter of "An Introduction to Daml"
(https://docs.daml.com/2.3.2/daml/intro/9_Dependencies.html#hashes-and-identifiers).

Fixes #14654

changelog_begin
changelog_end
2022-08-11 09:32:53 +00:00
dylant-da
0d37134bc2
Change placeholder unit viewtypes to empty records (#14656)
* Update views in integration-v1dev to be EmptyInterfaceView instead of ()

* Update expected desugared daml for `EmptyInterfaceView`

* Update compiler Shake / DataDependencies viewtypes to EmptyInterfaceView

* Add record viewtypes to docs, update docs

* Add empty records to daml-lf, language-support, ledger, trigger tests

* Qualify EmptyInterfaceView in ledger semantic Interface tests

* Fix imports for EmptyInterfaceView in IIou / CIou / Transferrable

* empty changelog commit

CHANGELOG_BEGIN
CHANGELOG_END

* Qualify EmptyInterfaceView import

* Fix imports of EmptyInterfaceView in TypeScript codegen tests

* Accept Interface doc changes

* Add EmptyInterfaceView to DataDependencies tests

* Remove missing interface viewtype test - all interfaces must have views

* Replace all EmptyInterfaceView with EmptyInterfaceView {}
2022-08-10 16:45:23 +00:00
Simon Maxen
9f3547fd0f
Add metrics of gRPC return status codes [DPP-1084] (#14634)
* Add metrics of gRPC return status codes

changelog_begin
changelog_end
2022-08-09 20:06:49 +01:00
dylant-da
8e8e0dabdf
Convert viewtype and view methods to LF (#14456)
* Add DA_Internal_Interface to convertTypeDef exclusion check

* Move desugared types/values for interface views into DA.Internal.Desugar

* Convert viewtype and view method declarations

* Typecheck view types and view declarations

* Add unit viewtypes to InterfaceChoiceCollision tests

* Add unit viewtypes to more compiler/damlc tests

* Modify empty interfaces/implements to have viewtypes/views

* Add unit viewtypes to remaining Interface tests

* Test for error thrown when viewtype not specified

* Fix daml-lf/ interface tests to use new syntax / unit views

* Add placeholder view of type Unit to TestInterfaces

CHANGELOG_BEGIN
CHANGELOG_END

* Fix typescript interface tests with unit viewtype

* Add unit viewtype to Java & Scala codegen

* Add unit viewtype to triggers tests interface

* Add unit viewtypes to ledger/test-common

* Add unit viewtypes to ledger-service/http-json

* Fix some damlc tests

* Use viewtype syntax in InterfaceViewNonSerializable test

* Remove HasInferfaceView instances in convertBind

* Add unit view to QualifiedInterface.daml test

* Generate HasInterfaceView instances in DataDependencies

* Add unit viewtypes and views to compiler/damlc/tests

* Document reconstruction of HasInterfaceView

* Move desugared types/values for interface views into DA.Internal.Desugar

* Add desugarable function view w/ EViewInterface desugaring

* Remove templateName and viewtype from generated EViewInterface

* Update desugared-daml

* Proof of concept: use _view -> EViewInterface prim via HasInterfaceView

* Move view, HasInterfaceView to DA.Internal.Interface

* Update desugared-daml tests

* Stop removing and re-generating HasInterfaceView instances

* Do not generate docs for generated "_view_" methods

* Report errors with interface TypeConNames prettily

* Fix InterfaceViewNotSpecified @ERROR to reflect new error text

* Don't import magic `view` method from Prelude to avoid name clash

* Update shake interface goto definition test locations

* Temp disable view spec tests, will re-implement views in speedy

* Add unit viewtype to Java code snippet docs

* Update Interface syntax docs for views

* Add unit viewtype to Transferrable.daml

* Add back "empty" interface implementation to interfaces.rst

* Re-enable view tests by having _view methods on InterfaceViews.daml file

* Remove deprecated commented-out view desugaring code
2022-08-03 16:23:38 +01:00
Stefano Baghino
c99611ec14
Clarify resolution of templates without package ID (#14601)
* Clarify resolution of templates without package ID

In particular, with regards to the HTTP JSON API service.

changelog_begin
changelog_end

* Emphasize use case for package ID resolution

Suggested by @garyverhaegen-da

Co-authored-by: Gary Verhaegen <gary.verhaegen@digitalasset.com>

* Emphasize further

* Fix RST formatting

Co-authored-by: Gary Verhaegen <gary.verhaegen@digitalasset.com>

Co-authored-by: Gary Verhaegen <gary.verhaegen@digitalasset.com>
2022-08-03 11:34:16 +00:00
Meriam Lachkar
a5bf4a1282
Improve the documentation to run Daml script on Canton (#14529)
* Improve the documentation to run Daml script on Canton

CHANGELOG_BEGIN
CHANGELOG_END

* hints to synchronize contracts

* Fixup sphinx syntax in Daml Script on Canton docs

Annoyingly sphinx links are kinda confusing made worse by the fact
that we need to reference stuff defined in the Canton repo docs.

changelog_begin
changelog_end

Co-authored-by: Moritz Kiefer <moritz.kiefer@purelyfunctional.org>
2022-07-28 09:53:05 +00:00
Gary Verhaegen
596860f4e0
docs: fix code snippets in daml/reference/functions (#14561)
A couple snippets seemed to have drifted. Rather than fix the line
numbers and risk having them drift again, this PR switches the references
to using comments instead, which should hopefully be more future-proof.

CHANGELOG_BEGIN
CHANGELOG_END
2022-07-28 09:36:17 +00:00
Stephen Compall
1a9dc020f9
overloaded choices in json-api (#14410)
CHANGELOG_BEGIN
- [JSON API] For exercise endpoints, when multiple choices with the same
  name are defined, the one directly defined on the ``templateId``,
  which may be a template or interface ID, will be selected; if a
  template ID is specified that only inherits the choices with the same
  name, the new ``choiceInterfaceId`` option must be specified to select
  the source of the choice.
CHANGELOG_END
2022-07-27 15:40:58 +00:00
Remy
88d4ff93f2
LF: remove precondition in interface (proto & scala side) (#14511)
CHANGELOG_BEGIN
CHANGELOG_END
2022-07-27 10:52:35 +02:00
shimonzerbib-da
d33370bedc
Update production-setup.rst (#14424)
* Update production-setup.rst

@carrielaben-da Minor edits

* Update docs/source/json-api/production-setup.rst

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>

* Update docs/source/json-api/production-setup.rst

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>

* Update docs/source/json-api/production-setup.rst

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>

* Update docs/source/json-api/production-setup.rst

CHANGELOG_BEGIN
CHANGELOG_END

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>

Co-authored-by: ShimonZerbib <106097817+ShimonZerbib@users.noreply.github.com>
Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>
2022-07-27 07:48:12 +02:00
Stephen Compall
8586eb68da
suggest JSON API/JavaScript users use the bindings and codegen (#14536)
CHANGELOG_BEGIN
CHANGELOG_END

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>
2022-07-26 19:48:40 +00:00
Moisés Ackerman
1798a4017f
Controller can warning docs (#14535)
* Merge code-snippets-dev/Structure.daml into code-snippets/Structure.daml

* indentation docs/source/daml/code-snippets/*.daml

* Document controller-can migration path and warning

* update comment on choice observer support

changelog_begin
changelog_end
2022-07-26 17:03:23 +00:00
Moritz Kiefer
93d9b767fd
Document audience-based token format (#14516)
* Document audience-based token format

changelog_begin
changelog_end

* Update docs/source/app-dev/authorization.rst

Co-authored-by: Sergey Kisel <98825453+skisel-da@users.noreply.github.com>

* Update docs/source/app-dev/authorization.rst

Co-authored-by: Sergey Kisel <98825453+skisel-da@users.noreply.github.com>
2022-07-26 07:03:16 +00:00
Stefano Baghino
97b8308b2d
Remove spurious reference to ledger-parties.json (#14515)
The reference to the actual file has been moved above the
paragraph I edited. Removing the reference seems to work.

I also replaces an instance of non-capitalized ID since
I was there.

changelog_begin
changelog_end
2022-07-25 12:14:08 +00:00
Rafael Guglielmetti
1e604e249c
Fix typo in documentation (#14512)
CHANGELOG_BEGIN
CHANGELOG_END
2022-07-25 12:10:42 +02:00
Stefano Baghino
8c45e9b695
Remove scale from RST source in Daml Studio page (#14472)
changelog_begin
changelog_end

It ended up causing the images to be stretched. The formatting is taken
care of in the CSS and doesn't need to be adjusted in the RST.
2022-07-19 08:57:54 +00:00
Stefano Baghino
ccc65d4da5
Bump GSON dependency in the Java quickstart template (#14462)
changelog_begin
Bumped the GSON dependency in the Java quickstart template to 2.9.0 to avoid users to be exposed to https://www.cve.org/CVERecord?id=CVE-2022-25647 by mistake
changelog_end
2022-07-18 14:19:21 +00:00
carrielaben-da
34b3913be8
Authorization.rst typo fix (#14441)
* Authorization.rst typo fix

Removed the hanging partial sentence from first section, along with miscellaneous style and grammar fixes.

[CHANGELOG_BEGIN]
[CHANGELOG_END]

* Update docs/source/app-dev/authorization.rst

Co-authored-by: Stefano Baghino <43749967+stefanobaghino-da@users.noreply.github.com>

Co-authored-by: carrie-laben <91496516+carrie-laben@users.noreply.github.com>
Co-authored-by: Stefano Baghino <43749967+stefanobaghino-da@users.noreply.github.com>
2022-07-18 10:16:40 -04:00
mziolekda
1c4010a30a
Document indexer ingestion metrics (#14362)
CHANGELOG_BEGIN
CHANGELOG_END
2022-07-06 13:56:46 +00:00
carrielaben-da
5ee1934127
Removed Canton from installation.rst (#14324)
Removed reference to installing Canton, per conversation in #product-docs on June 21.

[CHANGELOG_BEGIN]
[CHANGELOG_END]

Co-authored-by: carrie-laben <91496516+carrie-laben@users.noreply.github.com>
2022-07-05 16:30:05 -04:00
Stefano Baghino
56896ea1e5
Fix VMBC external link (#14339)
It appears we no longer have a page on digitalasset.com, so I am linking
to the official VMware docs. This also fixes a typo.

changelog_begin
changelog_end
2022-07-05 10:13:13 +02:00
Victor Peter Rouven Müller
8d21d19133
Add support for cmd deduplication & submission id for cmd submissions (#13771)
* Add completion offset to cmd submission responses

changelog_begin
- [HTTP-JSON] there is now a new meta field called deduplicationPeriod for cmd submissions with which one can specify the deduplication period. Moreover there also is another new meta field submissionId for the cmd submissions.
- [HTTP-JSON] Calls to endpoints for command submission now include the completion offset
changelog_end

Co-authored-by: Raymond Roestenburg <98821776+ray-roestenburg-da@users.noreply.github.com>
2022-06-29 16:57:05 +00:00
carrielaben-da
c2cd6141ce
Add the Parties and Users Blog Post to the docs (#14190)
* Add the Parties and Users Blog Post to the docs

[CHANGELOG_BEGIN]

Adding the blog post that addresses changes in parties and users from 1.18 to 2.0 to our permanent documentation

[CHANGELOG_END]

* Update parties-users.rst

[CHANGELOG_BEGIN]
Adjusted for @jwhyte-da's comment
[CHANGELOG_END]

* Update docs/source/app-dev/parties-users.rst

[CHANGELOG_BEGIN]
[CHANGELOG_END]

Co-authored-by: Stephen Compall <stephen.compall@daml.com>

* Update docs/source/app-dev/parties-users.rst

[CHANGELOG_BEGIN]
[CHANGELOG_END]

Co-authored-by: Stephen Compall <stephen.compall@daml.com>

* Update docs/source/app-dev/parties-users.rst

[CHANGELOG_BEGIN]

[CHANGELOG_END]

Co-authored-by: Stephen Compall <stephen.compall@daml.com>

* Update docs/source/app-dev/parties-users.rst

[CHANGELOG_BEGIN]
[CHANGELOG_END]

Co-authored-by: Stephen Compall <stephen.compall@daml.com>

* Update docs/source/app-dev/parties-users.rst

[CHANGELOG_BEGIN]
[CHANGELOG_END]

Co-authored-by: Stephen Compall <stephen.compall@daml.com>

* Update parties-users.rst

[CHANGELOG_BEGIN]
Addressing comments; removed SDK 1.8 and earlier section
[CHANGELOG_END]

* fix links

Co-authored-by: carrie-laben <91496516+carrie-laben@users.noreply.github.com>
Co-authored-by: Stephen Compall <stephen.compall@daml.com>
Co-authored-by: Gary Verhaegen <gary.verhaegen@digitalasset.com>
2022-06-22 12:58:29 -04:00
Gary Verhaegen
665411203a
docs: fix daml-types link (#14247)
As reported by @benm-da.

CHANGELOG_BEGIN
CHANGELOG_END
2022-06-22 13:54:18 +00:00
carrielaben-da
2ea1c7402f
Fix for unclear installation instructions (#14083)
* Fix for unclear installation instructions

An attempted fix to the unclear installation instructions. This is based on the most recent version of Canton installation instructions I could find from before the merge, dated Dec. 22, 2021

[CHANGELOG_BEGIN]

[CHANGELOG_END]

* Update docs/source/getting-started/installation.rst

[CHANGELOG_BEGIN]

[CHANGELOG_END]

Co-authored-by: Stephen Compall <stephen.compall@daml.com>

Co-authored-by: carrie-laben <91496516+carrie-laben@users.noreply.github.com>
Co-authored-by: Stephen Compall <stephen.compall@daml.com>
2022-06-21 15:20:49 -04:00
Moisés Ackerman
a2f2c859a8
Document explicitly transitive 'requires' for interfaces (#14236)
changelog_begin
changelog_end
2022-06-21 15:59:26 +02:00
Moisés Ackerman
d4d78fc6c4
Use rst_prolog to define typescript link targets (#14225) 2022-06-20 13:14:10 +02:00
mziolekda
9c5c72a2fd
Update metrics documentation [DPP-1078] (#14174)
Correct metrics documentation shipped with the sdk
* Remove references to obsolete metrics for participant-side de-duplication
* Correct the names of the connection pool metrics
* Add a mention about internal service metrics
* Correct the name for the string interning metric
* Remove obsolete sandbox server role

CHANGELOG_BEGIN
Correct the name for the string interning metric from daml_index_db_loadStringInterningEntries to daml_index_db_load_string_interning_entries
CHANGELOG_END
2022-06-14 18:46:56 +02:00
Gary Verhaegen
56096652e9
docs: fix two code snippets (#14123)
There seems to have been some mixup in which snippets to show for these
two cases.

CHANGELOG_BEGIN
CHANGELOG_END
2022-06-08 13:33:51 +00:00
Bernhard Elsner
c154b2f769
Add system architecture (Canton) FAQ to docs (#14088)
* Add system architecture (Canton) FAQ to docs

CHANGELOG_BEGIN
CHANGELOG_END

* Apply suggestions from code review

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: daravep <ratko@digitalasset.com>

* Incorporate feedback

Co-authored-by: carrielaben-da <91496516+carrielaben-da@users.noreply.github.com>
Co-authored-by: daravep <ratko@digitalasset.com>
2022-06-06 08:47:02 +00:00
Stephen Compall
4f7eefc8d5
two-phase create-and-exercise with unified exercise methods in Java (#14037)
* new getCompanion methods generated for contract IDs
* document new output for exercise methods
* link to #14039

CHANGELOG_BEGIN
- [Java codegen] ``createAndExercise*`` and ``exerciseByKey*`` methods
  are deprecated; instead, use the new ``createAnd().exercise*`` and
  ``byKey(key).exercise*`` methods.

  When the ledger API supports it, interface choices will be reachable
  via ``createAnd().toInterface(Ifc.INTERFACE).exercise*`` and
  ``byKey(key).toInterface(Ifc.INTERFACE).exercise*``, exactly the
  syntax supported by contract-ID exercise; see #14056.
CHANGELOG_END
2022-06-02 12:09:59 +00:00
Stephen Compall
1dbebba03a
toInterface, unsafeFromInterface overloads in Java codegen (#14004)
* InterfaceCompanion marker parent
* define INTERFACE singleton class and sole value with every interface
* don't allow instantiation of interface classes; they are never what you want
* use singleton for to<interface>, rename unsafeFrom<interface> to unsafeFromInterface
* rename to<interface> to toInterface
* document Java interface output changes

CHANGELOG_BEGIN
- [Java codegen] For interface types ``Ifc``, the template contract ID
  conversion method ``toIfc()`` has been removed and replaced with
  ``toInterface(Ifc.INTERFACE)``, and the interface contract ID
  conversion method ``unsafeFromIfc`` has been replaced with
  ``unsafeFromInterface``, always the same name.
CHANGELOG_END
2022-06-02 06:28:35 -04:00
Gary Verhaegen
cacca56833
docs: documenting this and self (#14028)
Taking a stab at #11565.

CHANGELOG_BEGIN
CHANGELOG_END
2022-05-31 16:50:53 +02:00
Gary Verhaegen
a48640e25b
docs: clarify lf <-> json spec (#14025)
Trying to summarize a discussion we had on Slack.

CHANGELOG_BEGIN
CHANGELOG_END
2022-05-31 12:53:12 +00:00
Stefano Baghino
ecb3149a6d
Update pom.xml (#13984)
Fix Java bindings Maven coordinates (see [here](https://search.maven.org/search?q=a:bindings-rxjava)).

changelog_begin
changelog_end
2022-05-25 12:54:25 +00:00
Raymond Roestenburg
f9d20e0b88
Removed reactive components from docs. (#13940)
CHANGELOG_BEGIN
CHANGELOG_END
2022-05-23 16:12:01 +02:00
Raymond Roestenburg
e3f01870a3
Added readyz endpoint. (#13902)
CHANGELOG_BEGIN
The ‘/readyz’ endpoint has been added to the trigger service to support readiness probes.
CHANGELOG_END
2022-05-19 08:34:26 +02:00
Stephen Compall
226dcc0eea
non-reflective abstractions for Java codegen Contracts (#13724)
* shift some generated Contract code to a handwritten superclass
* generate a `COMPANION` for each template
* use the companion in some ledger reading tests
* document changes in template Java codegen

CHANGELOG_BEGIN
- [daml codegen js] Generated templates have types, inherited methods,
  and a new static ``COMPANION`` that enable writing more
  template-generic utilities directly in Java.  New classes
  ``Contract``, ``ContractWithKey``, and ``ContractCompanion``, have
  been introduced; if you are importing
  ``com.daml.ledger.javaapi.data.codegen.*`` and have imported classes
  with these names from any other package, these references will stop
  working; use individual imports instead.
  See `issue #13724 <https://github.com/digital-asset/daml/pull/13724>`__.
CHANGELOG_END
2022-05-06 18:47:17 +00:00
carrielaben-da
1b4f9bb2f8
Removing the Daml Ledgers table (#13781)
* Removing the Daml Ledgers table

Removes the existing Deploying to Daml Ledgers table and moves Deploying To A Generic Daml Ledger up in the TOC

[CHANGELOG_BEGIN]

[CHANGELOG_END]

* Update index.pdf

Conforming the pdf to the rst

[CHANGELOG_BEGIN]

[CHANGELOG_END]

* Update packages.rst

Removed reference to a deleted page.

[CHANGELOG_BEGIN]

[CHANGELOG_END]

* Update authorization.rst

Removed link to deleted page

[CHANGELOG_BEGIN]

[CHANGELOG_END]

* Update authorization.rst

Corrected

[CHANGELOG_BEGIN]

[CHANGELOG_END]

* Update authorization.rst

Additional changes to try to pass the required checks.

[CHANGELOG_BEGIN]

[CHANGELOG_END]

Co-authored-by: carrie-laben <91496516+carrie-laben@users.noreply.github.com>
2022-05-06 12:51:40 -04:00
Sergey Kisel
c959812e96
Documentation for test evidence. [DPP-996] (#13545)
* Documentation for test evidence. [DPP-996]

CHANGELOG_BEGIN
CHANGELOG_END

* doc update
2022-05-05 17:28:06 +02:00
Moisés Ackerman
767442ca97
Fix snippets from code-snippets/Types.daml (#13801)
changelog_begin
changelog_end
2022-05-05 16:22:03 +02:00
matevarga-da
1b552c421b
Docs first feature links (#13787)
* Broken links in docs

Fixing broken links is docs.

CHANGELOG_BEGIN
CHANGELOG_END

* Fixing missing _ for second link
2022-05-05 10:13:54 +02:00
carrielaben-da
58c615a251
Updating Titles and Headings (#13592)
* Updating Titles and Headings

Conforming titles and headings to best practices:

- Making them descriptive and non-repetitive
- Title case for first two levels of headings on a given page, sentence case for lower levels (in keeping with DA style guide)
- Typo fixes

[CHANGELOG_BEGIN]

[CHANGELOG_END]

* Updating Titles and Headings 2

Incorporating Stefano's comments throughout.

[CHANGELOG_BEGIN]

[CHANGELOG_END]

* Update docs/source/daml/intro/10_Functional101.rst

* Update docs/source/daml/intro/10_Functional101.rst

* Update docs/source/daml/intro/10_Functional101.rst

* Update docs/source/daml/reference/contract-keys.rst

fixing the 'Specify Maintainers' link

[CHANGELOG_BEGIN]

[CHANGELOG_END]

Co-authored-by: carrie-laben <91496516+carrie-laben@users.noreply.github.com>
2022-05-02 15:22:51 -04:00
Moisés Ackerman
61cb257225
Make disclosure explicit in Daml Studio tree view (#13735)
changelog_begin
* Daml Studio: transaction tree view now differentiates between disclosed and divulged contracts
changelog_end
2022-05-02 09:18:46 +02:00
Robert Autenrieth
31015b68fc
DPP-748 Remove Java migrations (#13731)
* Remove Java migrations

changelog_begin
changelog_end

* Add test
2022-04-29 12:19:23 +02:00
Victor Peter Rouven Müller
fbead1a80d
Use correct ledger id "sandbox" in json api docs examples (#13723)
changelog_begin

- A bit of the json api documentation which still used the removed `--ledgerid` flag for starting the sandbox has been updated. This also includes updating the ledgerid to be the participant id which by default is "sandbox".

changelog_end
2022-04-28 14:19:56 +02:00