diff --git a/common/protos-go/VERSION b/common/protos-go/VERSION index 2eda823ff..308b6faa7 100644 --- a/common/protos-go/VERSION +++ b/common/protos-go/VERSION @@ -1 +1 @@ -1.6.1 \ No newline at end of file +1.6.2 \ No newline at end of file diff --git a/common/protos-java-kt/gradle.properties b/common/protos-java-kt/gradle.properties index f40ceb65d..a08ac2a41 100644 --- a/common/protos-java-kt/gradle.properties +++ b/common/protos-java-kt/gradle.properties @@ -1,4 +1,4 @@ name=Interop Protos group=com.weaver -version=1.6.1 +version=1.6.2 kotlin.incremental=false diff --git a/common/protos-js/package.json b/common/protos-js/package.json index b15330e6b..09ce78813 100644 --- a/common/protos-js/package.json +++ b/common/protos-js/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger-labs/weaver-protos-js", - "version": "1.6.1", + "version": "1.6.2", "description": "Interop protos for Node JS (Weaver)", "main": "index.js", "exports": { diff --git a/common/protos-rs/README.md b/common/protos-rs/README.md index 94dc1203f..2108d40ed 100644 --- a/common/protos-rs/README.md +++ b/common/protos-rs/README.md @@ -22,7 +22,7 @@ # Steps to Use 1) Add following in `Cargo.toml`, as dependency: ``` -weaver_protos_rs = "1.5.3" +weaver_protos_rs = "1.6.2" ``` 2) Now to import data structures, e.g. to import `Ack` data structure in `common/ack.proto`, use: ``` diff --git a/common/protos-rs/pkg/Cargo.toml b/common/protos-rs/pkg/Cargo.toml index bffe4379e..21b08c4a7 100644 --- a/common/protos-rs/pkg/Cargo.toml +++ b/common/protos-rs/pkg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "weaver_protos_rs" -version = "1.6.1" +version = "1.6.2" authors = ["Peter Somogyvari ", "Sandeep Nishad ", "Nick Waywood ", "Sandeep Nishad DOCKER_REGISTRY=ghcr.io/hyperledger-labs DOCKER_IMAGE_NAME=weaver-relay - DOCKER_TAG=1.6.0 + DOCKER_TAG=1.6.2 ``` - The `PATH_TO_CONFIG` variable should point to the properties file typically named `config.toml` (you can name this whatever you wish). See further below for instructions to write this file. - The `RELAY_NAME` variable specifies a unique name for this relay. It should match what's specified in the `config.toml` (more on that below). @@ -528,7 +528,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-labs/weaver-d DRIVER_RPC_PASSWORD= EXTERNAL_NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger-labs/weaver-corda-driver - DOCKER_TAG=1.6.0 + DOCKER_TAG=1.6.2 RELAY_TLS= RELAY_TLSCA_TRUST_STORE= RELAY_TLSCA_TRUST_STORE_PASSWORD= diff --git a/docs/docs/external/getting-started/enabling-weaver-network/fabric.md b/docs/docs/external/getting-started/enabling-weaver-network/fabric.md index e6de1b953..c88d1889a 100644 --- a/docs/docs/external/getting-started/enabling-weaver-network/fabric.md +++ b/docs/docs/external/getting-started/enabling-weaver-network/fabric.md @@ -79,8 +79,8 @@ Below, we list the template functions with sample code that you, as a developer, ```go require( ... - github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0 - github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.0 + github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 + github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.2 ... ) ``` @@ -172,8 +172,8 @@ Below, we list the template functions with sample code that you, as a developer, ```go require( ... - github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0 - github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.0 + github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 + github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.2 ... ) ``` @@ -322,7 +322,7 @@ Consider a scenario inspired by the [global trade use case](../../user-stories/g (In preparation, a suitable access control policy must be recorded on `tradelogisticschannel` in `trade-logistics-network`, and a suitable verification policy must be recorded on `tradefinancechannel` in `trade-finance-network`. We will see how to do this in the "Startup and Boostrap" section later.) -You will need to insert some code in the Layer-2 application that accepts a B/L and submits a `RecordBillOfLading` transaction in `trade-finance-network`. (No code changes need to be made in any application in the other network.) The logic to accept a B/L should be replaced (or you can simply add an alternative) by a call to the `interopFlow` function offered by the [weaver-fabric-interop-sdk](https://github.com/hyperledger-labs/weaver-dlt-interoperability/packages/888424) library (there's an [equivalent library in Golang](https://github.com/hyperledger-labs/weaver-dlt-interoperability/releases/tag/sdks%2Ffabric%2Fgo-sdk%2Fv1.6.0) too). The following code sample illustrates this (the Golang equivalent is left to the reader): +You will need to insert some code in the Layer-2 application that accepts a B/L and submits a `RecordBillOfLading` transaction in `trade-finance-network`. (No code changes need to be made in any application in the other network.) The logic to accept a B/L should be replaced (or you can simply add an alternative) by a call to the `interopFlow` function offered by the [weaver-fabric-interop-sdk](https://github.com/hyperledger-labs/weaver-dlt-interoperability/packages/888424) library (there's an [equivalent library in Golang](https://github.com/hyperledger-labs/weaver-dlt-interoperability/releases/tag/sdks%2Ffabric%2Fgo-sdk%2Fv1.6.2) too). The following code sample illustrates this (the Golang equivalent is left to the reader): ```js showLineNumbers const ihelper = require('@hyperledger-labs/weaver-fabric-interop-sdk').InteroperableHelper; const interopcc = ; // Use Fabric SDK functions: (new Gateway()).getNetwork(...).getContract() @@ -529,7 +529,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-labs/weaver-d EXTERNAL_NETWORK= DOCKER_REGISTRY=ghcr.io/hyperledger-labs DOCKER_IMAGE_NAME=weaver-relay - DOCKER_TAG=1.6.0 + DOCKER_TAG=1.6.2 ``` - The `PATH_TO_CONFIG` variable should point to the properties file typically named `config.toml` (you can name this whatever you wish). See further below for instructions to write this file. - The `RELAY_NAME` variable specifies a unique name for this relay. It should match what's specified in the `config.toml` (more on that below). @@ -622,7 +622,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-labs/weaver-d EXTERNAL_NETWORK= TLS_CREDENTIALS_DIR= DOCKER_IMAGE_NAME=ghcr.io/hyperledger-labs/weaver-fabric-driver - DOCKER_TAG=1.6.0 + DOCKER_TAG=1.6.2 DRIVER_TLS= DRIVER_TLS_CERT_PATH=path_to_tls_cert_pem_for_driver DRIVER_TLS_KEY_PATH=path_to_tls_key_pem_for_driver diff --git a/samples/besu/besu-cli/package.json b/samples/besu/besu-cli/package.json index 1c7a80a03..2eb6d70ee 100644 --- a/samples/besu/besu-cli/package.json +++ b/samples/besu/besu-cli/package.json @@ -31,8 +31,8 @@ ], "license": "MIT", "dependencies": { - "@hyperledger-labs/weaver-besu-interop-sdk": "1.6.1", - "@hyperledger-labs/weaver-protos-js": "1.6.1", + "@hyperledger-labs/weaver-besu-interop-sdk": "1.6.2", + "@hyperledger-labs/weaver-protos-js": "1.6.2", "@truffle/contract": "^4.2.14", "gluegun": "latest", "winston": "^3.3.3" diff --git a/samples/corda/corda-simple-application/constants.properties b/samples/corda/corda-simple-application/constants.properties index 521632dc7..155fb8db9 100644 --- a/samples/corda/corda-simple-application/constants.properties +++ b/samples/corda/corda-simple-application/constants.properties @@ -9,5 +9,5 @@ log4jVersion=2.17.1 platformVersion=10 slf4jVersion=1.7.25 nettyVersion=4.1.22.Final -weaverVersion=1.6.1 +weaverVersion=1.6.2 cliktVersion=2.7.1 diff --git a/samples/corda/fungible-house-token/constants.properties b/samples/corda/fungible-house-token/constants.properties index 25668db22..f0bde1019 100644 --- a/samples/corda/fungible-house-token/constants.properties +++ b/samples/corda/fungible-house-token/constants.properties @@ -10,4 +10,4 @@ log4jVersion=2.17.1 platformVersion=10 slf4jVersion=1.7.25 nettyVersion=4.1.22.Final -weaverVersion=1.6.1 +weaverVersion=1.6.2 diff --git a/samples/fabric/go-cli/go.mod b/samples/fabric/go-cli/go.mod index d160d0745..cb982f4f6 100644 --- a/samples/fabric/go-cli/go.mod +++ b/samples/fabric/go-cli/go.mod @@ -4,8 +4,8 @@ go 1.20 require ( github.com/cloudflare/cfssl v1.4.1 - github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 - github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.1 + github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 + github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.2 github.com/hyperledger/fabric-sdk-go v1.0.1-0.20221020141211-7af45cede6af github.com/sirupsen/logrus v1.9.3 github.com/spf13/cobra v1.2.1 diff --git a/samples/fabric/go-cli/go.sum b/samples/fabric/go-cli/go.sum index 85cc84d9c..1b0c38ba3 100644 --- a/samples/fabric/go-cli/go.sum +++ b/samples/fabric/go-cli/go.sum @@ -258,10 +258,10 @@ github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2p github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0 h1:6k9njgcIcWkNmrSeaN9SU1f7jzYu0+CMIMzHUHNWZow= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.0 h1:gJB2kIQ1JXmVNO2FQyOL+3qdQD3cjMuenG5/gs6sH5I= -github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.0/go.mod h1:8TraX5tcDzW/aCFMwdX8PQl4nQTydtB5ycqGszvkdEo= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.1 h1:5iNaX4R448Wz5E4w8gUPTiAgFUfLGPRL7lMKsKKLyWs= +github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.1/go.mod h1:sGLNpzVgfGTjmK1p6ZGzblpJtQL9hVsuePStzVzXyio= github.com/hyperledger/fabric-config v0.0.5 h1:khRkm8U9Ghdg8VmZfptgzCFlCzrka8bPfUkM+/j6Zlg= github.com/hyperledger/fabric-config v0.0.5/go.mod h1:YpITBI/+ZayA3XWY5lF302K7PAsFYjEEPM/zr3hegA8= github.com/hyperledger/fabric-lib-go v1.0.0 h1:UL1w7c9LvHZUSkIvHTDGklxFv2kTeva1QI2emOVc324= @@ -910,7 +910,7 @@ rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.1 h1:5iNaX4R448Wz5E4w8gUPTiAgFUfLGPRL7lMKsKKLyWs= -github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.1/go.mod h1:sGLNpzVgfGTjmK1p6ZGzblpJtQL9hVsuePStzVzXyio= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 h1:9jiL1Hn1o/T+Zn/8hieV/uCY5q+GzIsjvLIiDQeWloA= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.2 h1:207eAa0oRfV4yT+wg9sUqzrUZ1q8YcuaW5MJgTHe0qw= +github.com/hyperledger-labs/weaver-dlt-interoperability/sdks/fabric/go-sdk v1.6.2/go.mod h1:zhpjiF9c5HYyrQ+81jxNu18PEGoTgUCXg5qkp1KNev8= diff --git a/samples/fabric/simpleasset/go.mod b/samples/fabric/simpleasset/go.mod index adde56ce8..995973183 100644 --- a/samples/fabric/simpleasset/go.mod +++ b/samples/fabric/simpleasset/go.mod @@ -4,8 +4,8 @@ go 1.20 require ( github.com/golang/protobuf v1.5.4 - github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 - github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1 + github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 + github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.2 github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c github.com/hyperledger/fabric-contract-api-go v1.2.2 diff --git a/samples/fabric/simpleasset/go.sum b/samples/fabric/simpleasset/go.sum index a5d8f065e..8b238393b 100644 --- a/samples/fabric/simpleasset/go.sum +++ b/samples/fabric/simpleasset/go.sum @@ -38,10 +38,10 @@ github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0 h1:6k9njgcIcWkNmrSeaN9SU1f7jzYu0+CMIMzHUHNWZow= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.0 h1:FMJf69Bk3+rXldtAMtgvl/lmwe3ho1gDcqhlEEcfyxs= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.0/go.mod h1:pK+vGW86BaTmn82kLlLBfwVND9cN33iuppVyUwk4ySQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1 h1:5gmAU6O4vX1V4Aci/pLMvRPWrSXPVRBtHX0UWXUaSTc= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1/go.mod h1:p+A1mG0WQeuN+6Ov8und+qLUwS6akeAsYCKzEe0PUd0= github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa h1:J4/50UERjbx7vNxMqV4J2olJVJYe6+McJK7f85jqgLQ= github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa/go.mod h1:fF7IB0hq0l993PlAlts9BJO3QGD/rqio8R6gzfPgUTM= github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c h1:Osgjxhes49suHpKSm8nKn1n9Pif5FTg6arWAudXF0RA= @@ -158,7 +158,7 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1 h1:5gmAU6O4vX1V4Aci/pLMvRPWrSXPVRBtHX0UWXUaSTc= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1/go.mod h1:p+A1mG0WQeuN+6Ov8und+qLUwS6akeAsYCKzEe0PUd0= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 h1:9jiL1Hn1o/T+Zn/8hieV/uCY5q+GzIsjvLIiDQeWloA= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.2 h1:s5H1pdgxJruH4xoj0vDmwXs2TA2SXIbKXgEhnyUEjM0= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.2/go.mod h1:gVB3On7DnhS/fwDDH5x0nRjrFuEmxBBc/Af4SzKdNXE= diff --git a/samples/fabric/simpleassetandinterop/go.mod b/samples/fabric/simpleassetandinterop/go.mod index af71b9099..7b291b9ce 100644 --- a/samples/fabric/simpleassetandinterop/go.mod +++ b/samples/fabric/simpleassetandinterop/go.mod @@ -4,8 +4,8 @@ go 1.20 require ( github.com/golang/protobuf v1.5.4 - github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 - github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.1 + github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 + github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.2 github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c github.com/hyperledger/fabric-contract-api-go v1.2.2 diff --git a/samples/fabric/simpleassetandinterop/go.sum b/samples/fabric/simpleassetandinterop/go.sum index cf458a9d6..5fb58b62e 100644 --- a/samples/fabric/simpleassetandinterop/go.sum +++ b/samples/fabric/simpleassetandinterop/go.sum @@ -38,10 +38,10 @@ github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0 h1:6k9njgcIcWkNmrSeaN9SU1f7jzYu0+CMIMzHUHNWZow= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.0 h1:CRA16ciSV2dqogcxavqfl47OGggrzzcfgnM7I98cTuU= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.0/go.mod h1:Y02vQN1363iz6j1NXrT26+uMo4mM5Q0GTY7/YXQoslY= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.1 h1:e2HgxUrPB0PveLqU65wpcOzOp8UXp7U3AqNTYIBds30= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.1/go.mod h1:XGAX6HIuG2xBu3dAEvcpqGAVX2RCdo3n32K3acpf2YU= github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa h1:J4/50UERjbx7vNxMqV4J2olJVJYe6+McJK7f85jqgLQ= github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa/go.mod h1:fF7IB0hq0l993PlAlts9BJO3QGD/rqio8R6gzfPgUTM= github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c h1:Osgjxhes49suHpKSm8nKn1n9Pif5FTg6arWAudXF0RA= @@ -158,7 +158,7 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.1 h1:e2HgxUrPB0PveLqU65wpcOzOp8UXp7U3AqNTYIBds30= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.1/go.mod h1:XGAX6HIuG2xBu3dAEvcpqGAVX2RCdo3n32K3acpf2YU= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 h1:9jiL1Hn1o/T+Zn/8hieV/uCY5q+GzIsjvLIiDQeWloA= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.2 h1:EY9U9g68m3Jxq+9ftJUoYkPmIZmsjTfd6dWH1dJ/aOs= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/assetexchange v1.6.2/go.mod h1:mXNR4UC133x8JTgLiDAf7XIISFCf/jJyf+7RwzoG0c4= diff --git a/samples/fabric/simpleassettransfer/go.mod b/samples/fabric/simpleassettransfer/go.mod index 6f41592fd..773b5940e 100644 --- a/samples/fabric/simpleassettransfer/go.mod +++ b/samples/fabric/simpleassettransfer/go.mod @@ -4,10 +4,10 @@ go 1.20 require ( github.com/golang/protobuf v1.5.4 - github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 - github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1 + github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 + github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.2 github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa - github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1 + github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.2 github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c github.com/hyperledger/fabric-contract-api-go v1.2.2 github.com/hyperledger/fabric-protos-go v0.3.3 diff --git a/samples/fabric/simpleassettransfer/go.sum b/samples/fabric/simpleassettransfer/go.sum index 91e7504bb..b199d2351 100644 --- a/samples/fabric/simpleassettransfer/go.sum +++ b/samples/fabric/simpleassettransfer/go.sum @@ -38,14 +38,14 @@ github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0 h1:6k9njgcIcWkNmrSeaN9SU1f7jzYu0+CMIMzHUHNWZow= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.0 h1:FMJf69Bk3+rXldtAMtgvl/lmwe3ho1gDcqhlEEcfyxs= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.0/go.mod h1:pK+vGW86BaTmn82kLlLBfwVND9cN33iuppVyUwk4ySQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1 h1:5gmAU6O4vX1V4Aci/pLMvRPWrSXPVRBtHX0UWXUaSTc= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1/go.mod h1:p+A1mG0WQeuN+6Ov8und+qLUwS6akeAsYCKzEe0PUd0= github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa h1:J4/50UERjbx7vNxMqV4J2olJVJYe6+McJK7f85jqgLQ= github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa/go.mod h1:fF7IB0hq0l993PlAlts9BJO3QGD/rqio8R6gzfPgUTM= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.0 h1:Fd2IhI/8pVnhdE6cEJVataCPoCnv8PSHvJN+iIdhYt0= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.0/go.mod h1:vhscTYgVbY6vCRDxHymxcawyZFZhTo0QRvl5L8tgF8I= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1 h1:4Yf5MbV/7Ozm1xYFoKyt+5KmBqilHvYLtyB4LzBHiDo= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1/go.mod h1:2g+DD1tlxwYiDa8Ie/BpJ4kLRbGXCXDzeNpdK35PAE4= github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c h1:Osgjxhes49suHpKSm8nKn1n9Pif5FTg6arWAudXF0RA= github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c/go.mod h1:9o4N4D3/WmfPiXuAYAFDI5aZorsO1BH42Swsv3S+au4= github.com/hyperledger/fabric-contract-api-go v1.2.2 h1:zun9/BmaIWFSSOkfQXikdepK0XDb7MkJfc/lb5j3ku8= @@ -160,9 +160,9 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1 h1:5gmAU6O4vX1V4Aci/pLMvRPWrSXPVRBtHX0UWXUaSTc= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.1/go.mod h1:p+A1mG0WQeuN+6Ov8und+qLUwS6akeAsYCKzEe0PUd0= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1 h1:4Yf5MbV/7Ozm1xYFoKyt+5KmBqilHvYLtyB4LzBHiDo= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1/go.mod h1:2g+DD1tlxwYiDa8Ie/BpJ4kLRbGXCXDzeNpdK35PAE4= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 h1:9jiL1Hn1o/T+Zn/8hieV/uCY5q+GzIsjvLIiDQeWloA= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.2 h1:s5H1pdgxJruH4xoj0vDmwXs2TA2SXIbKXgEhnyUEjM0= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/interfaces/asset-mgmt v1.6.2/go.mod h1:gVB3On7DnhS/fwDDH5x0nRjrFuEmxBBc/Af4SzKdNXE= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.2 h1:oX1JrZpey7F5/91Q7syo6VXmiPbitso4y/CotnitCGA= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.2/go.mod h1:2y++5NaQ+9vg3oSi5wnh6e7a3wngoVoZ/SpYD8NQeYE= diff --git a/samples/fabric/simplestatewithacl/go.mod b/samples/fabric/simplestatewithacl/go.mod index 347cef696..18575d972 100644 --- a/samples/fabric/simplestatewithacl/go.mod +++ b/samples/fabric/simplestatewithacl/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/golang/protobuf v1.5.4 github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa - github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1 + github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.2 github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c github.com/hyperledger/fabric-contract-api-go v1.2.2 github.com/hyperledger/fabric-protos-go v0.3.3 @@ -21,7 +21,7 @@ require ( github.com/gobuffalo/envy v1.10.2 // indirect github.com/gobuffalo/packd v1.0.2 // indirect github.com/gobuffalo/packr v1.30.1 // indirect - github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 // indirect + github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 // indirect github.com/joho/godotenv v1.5.1 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/mailru/easyjson v0.7.7 // indirect diff --git a/samples/fabric/simplestatewithacl/go.sum b/samples/fabric/simplestatewithacl/go.sum index 973ba732e..eae6e3ecd 100644 --- a/samples/fabric/simplestatewithacl/go.sum +++ b/samples/fabric/simplestatewithacl/go.sum @@ -38,12 +38,12 @@ github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0 h1:6k9njgcIcWkNmrSeaN9SU1f7jzYu0+CMIMzHUHNWZow= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa h1:J4/50UERjbx7vNxMqV4J2olJVJYe6+McJK7f85jqgLQ= github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/testutils v0.0.0-20240521164517-4cb6d4e59bfa/go.mod h1:fF7IB0hq0l993PlAlts9BJO3QGD/rqio8R6gzfPgUTM= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.0 h1:Fd2IhI/8pVnhdE6cEJVataCPoCnv8PSHvJN+iIdhYt0= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.0/go.mod h1:vhscTYgVbY6vCRDxHymxcawyZFZhTo0QRvl5L8tgF8I= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1 h1:4Yf5MbV/7Ozm1xYFoKyt+5KmBqilHvYLtyB4LzBHiDo= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1/go.mod h1:2g+DD1tlxwYiDa8Ie/BpJ4kLRbGXCXDzeNpdK35PAE4= github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c h1:Osgjxhes49suHpKSm8nKn1n9Pif5FTg6arWAudXF0RA= github.com/hyperledger/fabric-chaincode-go v0.0.0-20240425200701-0431f709af2c/go.mod h1:9o4N4D3/WmfPiXuAYAFDI5aZorsO1BH42Swsv3S+au4= github.com/hyperledger/fabric-contract-api-go v1.2.2 h1:zun9/BmaIWFSSOkfQXikdepK0XDb7MkJfc/lb5j3ku8= @@ -155,7 +155,7 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1 h1:4Yf5MbV/7Ozm1xYFoKyt+5KmBqilHvYLtyB4LzBHiDo= -github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.1/go.mod h1:2g+DD1tlxwYiDa8Ie/BpJ4kLRbGXCXDzeNpdK35PAE4= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 h1:9jiL1Hn1o/T+Zn/8hieV/uCY5q+GzIsjvLIiDQeWloA= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.2 h1:oX1JrZpey7F5/91Q7syo6VXmiPbitso4y/CotnitCGA= +github.com/hyperledger-labs/weaver-dlt-interoperability/core/network/fabric-interop-cc/libs/utils v1.6.2/go.mod h1:2y++5NaQ+9vg3oSi5wnh6e7a3wngoVoZ/SpYD8NQeYE= diff --git a/sdks/besu/interoperation-node-sdk/package-local.json b/sdks/besu/interoperation-node-sdk/package-local.json index 018c5655a..5fef41fe6 100644 --- a/sdks/besu/interoperation-node-sdk/package-local.json +++ b/sdks/besu/interoperation-node-sdk/package-local.json @@ -1,7 +1,7 @@ { "name": "@hyperledger-labs/weaver-besu-interop-sdk", "description": "Supplemental library for Web3JS based Besu client applications to enable interoperability using Weaver", - "version": "1.6.1", + "version": "1.6.2", "description": "", "main": "build/index.js", "scripts": { diff --git a/sdks/besu/interoperation-node-sdk/package.json b/sdks/besu/interoperation-node-sdk/package.json index 417fae825..7a5a353cd 100644 --- a/sdks/besu/interoperation-node-sdk/package.json +++ b/sdks/besu/interoperation-node-sdk/package.json @@ -1,7 +1,7 @@ { "name": "@hyperledger-labs/weaver-besu-interop-sdk", "description": "Supplemental library for Web3JS based Besu client applications to enable interoperability using Weaver", - "version": "1.6.1", + "version": "1.6.2", "description": "", "main": "build/index.js", "scripts": { @@ -16,7 +16,7 @@ }, "license": "ISC", "dependencies": { - "@hyperledger-labs/weaver-protos-js": "1.6.1", + "@hyperledger-labs/weaver-protos-js": "1.6.2", "log4js": "^6.7.0", "web3": "^1.8.1" }, diff --git a/sdks/corda/README.md b/sdks/corda/README.md index 5756c83c1..5da7fa0ce 100644 --- a/sdks/corda/README.md +++ b/sdks/corda/README.md @@ -64,10 +64,10 @@ repositories { } } dependencies { - implementation(group: 'com.weaver.corda.sdk', name: 'weaver-corda-sdk', version: "1.6.0") - implementation(group: 'com.weaver.corda.app.interop', name: 'interop-contracts', version: "1.6.0") - implementation(group: 'com.weaver.corda.app.interop', name: 'interop-workflows', version: "1.6.0") - implementation(group: 'com.weaver', name: 'protos-java-kt', version: "1.6.0") + implementation(group: 'com.weaver.corda.sdk', name: 'weaver-corda-sdk', version: "1.6.2") + implementation(group: 'com.weaver.corda.app.interop', name: 'interop-contracts', version: "1.6.2") + implementation(group: 'com.weaver.corda.app.interop', name: 'interop-workflows', version: "1.6.2") + implementation(group: 'com.weaver', name: 'protos-java-kt', version: "1.6.2") } ``` diff --git a/sdks/corda/gradle.properties b/sdks/corda/gradle.properties index 97f3b71ba..abeca7bd7 100644 --- a/sdks/corda/gradle.properties +++ b/sdks/corda/gradle.properties @@ -1,5 +1,5 @@ kotlin.code.style=official name=weaver-corda-sdk group=com.weaver.corda.sdk -version=1.6.1 +version=1.6.2 kotlin.incremental=false diff --git a/sdks/fabric/go-sdk/VERSION b/sdks/fabric/go-sdk/VERSION index 2eda823ff..308b6faa7 100644 --- a/sdks/fabric/go-sdk/VERSION +++ b/sdks/fabric/go-sdk/VERSION @@ -1 +1 @@ -1.6.1 \ No newline at end of file +1.6.2 \ No newline at end of file diff --git a/sdks/fabric/go-sdk/go.mod b/sdks/fabric/go-sdk/go.mod index 65e486751..0bac1df41 100644 --- a/sdks/fabric/go-sdk/go.mod +++ b/sdks/fabric/go-sdk/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/golang/protobuf v1.5.4 github.com/google/uuid v1.6.0 - github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 + github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 github.com/hyperledger/fabric-protos-go v0.3.3 github.com/sirupsen/logrus v1.9.3 github.com/stretchr/testify v1.9.0 diff --git a/sdks/fabric/go-sdk/go.sum b/sdks/fabric/go-sdk/go.sum index f29d20bfc..6783ee521 100644 --- a/sdks/fabric/go-sdk/go.sum +++ b/sdks/fabric/go-sdk/go.sum @@ -6,8 +6,8 @@ github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6 github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0 h1:6k9njgcIcWkNmrSeaN9SU1f7jzYu0+CMIMzHUHNWZow= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.0/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= github.com/hyperledger/fabric-protos-go v0.3.3 h1:0nssqz8QWJNVNBVQz+IIfAd2j1ku7QPKFSM/1anKizI= github.com/hyperledger/fabric-protos-go v0.3.3/go.mod h1:BPXse9gIOQwyAePQrwQVUcc44bTW4bB5V3tujuvyArk= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= @@ -36,5 +36,5 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1 h1:wcI//dGTKjThIudRCvQB5vyptCW6ZaodhMUz9k7ow6Q= -github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.1/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2 h1:9jiL1Hn1o/T+Zn/8hieV/uCY5q+GzIsjvLIiDQeWloA= +github.com/hyperledger-labs/weaver-dlt-interoperability/common/protos-go v1.6.2/go.mod h1:HjNaNm5F7UDoLY4qsIwoAJ1tWEsmLK8yNcCjEQWyzXQ= diff --git a/sdks/fabric/interoperation-node-sdk/package-local.json b/sdks/fabric/interoperation-node-sdk/package-local.json index d480d4bfd..e8e7c4b40 100644 --- a/sdks/fabric/interoperation-node-sdk/package-local.json +++ b/sdks/fabric/interoperation-node-sdk/package-local.json @@ -6,7 +6,7 @@ "blockchain", "interoperability" ], - "version": "1.6.1", + "version": "1.6.2", "author": "V. Ramakrishna", "tag": "latest", "main": "build/index.js", diff --git a/sdks/fabric/interoperation-node-sdk/package.json b/sdks/fabric/interoperation-node-sdk/package.json index 805b31333..c6d19dbd4 100644 --- a/sdks/fabric/interoperation-node-sdk/package.json +++ b/sdks/fabric/interoperation-node-sdk/package.json @@ -6,7 +6,7 @@ "blockchain", "interoperability" ], - "version": "1.6.1", + "version": "1.6.2", "author": "V. Ramakrishna", "tag": "latest", "main": "build/index.js", @@ -29,7 +29,7 @@ "dependencies": { "@grpc/grpc-js": "^1.1.3", "@grpc/proto-loader": "^0.6.13", - "@hyperledger-labs/weaver-protos-js": "1.6.1", + "@hyperledger-labs/weaver-protos-js": "1.6.2", "elliptic": "^6.2.3", "fabric-common": "^2.2.8", "fabric-network": "^2.2.8",