Skip to content

Commit 4922f90

Browse files
author
Azure Pipelines Daml Build
committed
update canton to 20251028.17336.v301a9d1e
tell-slack: canton
1 parent 3011ac5 commit 4922f90

File tree

138 files changed

+1764
-587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+1764
-587
lines changed

sdk/canton/community/admin-api/src/main/protobuf/com/digitalasset/canton/admin/participant/v30/participant_repair_service.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import "google/protobuf/timestamp.proto";
1919
*/
2020
service ParticipantRepairService {
2121
// Export the ACS for the given parties from the participant
22-
// DEPRECATED: Use ExportAcs in the party_management_service.proto instead
23-
// TODO(#24610) - Remove, new ExportAcs lives in the party_management_service.proto
22+
// DEPRECATED: Use ExportAcs in this proto file
23+
// TODO(#24610) - Remove, replaced with ExportAcs below
2424
rpc ExportAcsOld(ExportAcsOldRequest) returns (stream ExportAcsOldResponse) {
2525
option deprecated = true;
2626
}

sdk/canton/community/app/src/test/daml/CantonLfDev/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
build-options:
37
- --target=2.dev
48
name: CantonLfDev

sdk/canton/community/app/src/test/daml/CantonLfV21/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
build-options:
37
- --target=2.1
48
- --enable-interfaces=yes

sdk/canton/community/app/src/test/daml/CantonTest/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
build-options:
37
- --target=2.1
48
name: CantonTests

sdk/canton/community/app/src/test/daml/CantonTestDev/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
build-options:
37
- --target=2.dev
48
name: CantonTestsDev

sdk/canton/community/app/src/test/daml/JsonApiTest/Account/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
build-options:
37
- --target=2.1
48
- --enable-interfaces=yes

sdk/canton/community/app/src/test/daml/JsonApiTest/CIou/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
build-options:
37
- --target=2.1
48
- --enable-interfaces=yes

sdk/canton/community/app/src/test/daml/JsonApiTest/Upgrades/Iface/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
name: ifoo
37
source: IFoo.daml
48
version: 0.0.1

sdk/canton/community/app/src/test/daml/JsonApiTest/Upgrades/IncompatibleV3/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
name: foo
37
data-dependencies:
48
- ../../../../scala-2.13/resource_managed/test/ifoo-0.0.1.dar

sdk/canton/community/app/src/test/daml/JsonApiTest/Upgrades/V1/daml.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
sdk-version: 3.5.0-snapshot.20251024.14367.0.v6d15c990
1+
override-components:
2+
damlc:
3+
version: $DAML_VERSION
4+
daml-script:
5+
version: $DAML_VERSION
26
name: foo
37
data-dependencies:
48
- ../../../../scala-2.13/resource_managed/test/ifoo-0.0.1.dar

0 commit comments

Comments
 (0)