Skip to content

Commit 6db4e99

Browse files
committed
chore(release): publish v2.2.0
Signed-off-by: Sandeep Nishad <sandeep.nishad1@ibm.com>
1 parent 410b3d0 commit 6db4e99

File tree

1,181 files changed

+1880
-1704
lines changed

Some content is hidden

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

1,181 files changed

+1880
-1704
lines changed

.github/workflows/weaver_deploy_node-pkgs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Check if package already exists
5555
run : |
5656
PKG_NAME=$(node -p "require('./package.json').name")
57-
PUBLISHED_VERSION=$(npm view $PKG_NAME version --workspaces=false)
57+
PUBLISHED_VERSION=$(npm view $PKG_NAME version --workspaces=false || echo no.version.found)
5858
LOCAL_VERSION=$(node -p "require('./package.json').version")
5959
if [[ "$PUBLISHED_VERSION" == "$LOCAL_VERSION" ]]; then
6060
echo "PROTOS_JS_PUBLISH=false" >> $GITHUB_ENV
@@ -101,7 +101,7 @@ jobs:
101101
- name: Check if package already exists
102102
run : |
103103
PKG_NAME=$(node -p "require('./package.json').name")
104-
PUBLISHED_VERSION=$(npm view $PKG_NAME version --workspaces=false)
104+
PUBLISHED_VERSION=$(npm view $PKG_NAME version --workspaces=false || echo no.version.found)
105105
LOCAL_VERSION=$(node -p "require('./package.json').version")
106106
if [[ "$PUBLISHED_VERSION" == "$LOCAL_VERSION" ]]; then
107107
echo "WEAVER_FABRIC_SDK_PUBLISH=false" >> $GITHUB_ENV
@@ -146,7 +146,7 @@ jobs:
146146
- name: Check if package already exists
147147
run : |
148148
PKG_NAME=$(node -p "require('./package.json').name")
149-
PUBLISHED_VERSION=$(npm view $PKG_NAME version --workspaces=false)
149+
PUBLISHED_VERSION=$(npm view $PKG_NAME version --workspaces=false || echo no.version.found)
150150
LOCAL_VERSION=$(node -p "require('./package.json').version")
151151
if [[ "$PUBLISHED_VERSION" == "$LOCAL_VERSION" ]]; then
152152
echo "WEAVER_BESU_SDK_PUBLISH=false" >> $GITHUB_ENV

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.2.0](https://github.com/hyperledger-cacti/cacti/compare/v2.1.0-alpha.1...v2.2.0) (2025-11-12)
7+
8+
**Note:** Version bump only for package @hyperledger/cactus
9+
610
# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)
711

812
### Bug Fixes

docs/docs/weaver/getting-started/enabling-weaver-network/corda.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ repositories {
121121
}
122122
}
123123
dependencies {
124-
implementation(group: 'org.hyperledger.cacti.weaver.sdk.corda', name: 'weaver-sdk-corda', version: "2.1.0")
125-
implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.1.0")
126-
implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.1.0")
127-
implementation(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.1.0")
124+
implementation(group: 'org.hyperledger.cacti.weaver.sdk.corda', name: 'weaver-sdk-corda', version: "2.2.0")
125+
implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.2.0")
126+
implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.2.0")
127+
implementation(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.2.0")
128128
}
129129
```
130130
(Or check out the [package website](https://github.com/hyperledger-cacti/cacti/packages/1856827) and select a different version.)
@@ -445,7 +445,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p
445445
RELAY_PORT=<relay-server-port/"port" in config.toml>
446446
EXTERNAL_NETWORK=<docker-bridge-network>
447447
DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server
448-
DOCKER_TAG=2.1.0
448+
DOCKER_TAG=2.2.0
449449
```
450450
- 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.
451451
- 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).
@@ -536,7 +536,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p
536536
DRIVER_RPC_PASSWORD=<driver-rpc-username>
537537
EXTERNAL_NETWORK=<docker-bridge-network>
538538
DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-corda
539-
DOCKER_TAG=2.1.0
539+
DOCKER_TAG=2.2.0
540540
RELAY_TLS=<true|false>
541541
RELAY_TLSCA_TRUST_STORE=<truststore-jks-file-path>
542542
RELAY_TLSCA_TRUST_STORE_PASSWORD=<truststore-jks-file-password>

docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p
536536
RELAY_PORT=<relay-server-port/"port" in config.toml>
537537
EXTERNAL_NETWORK=<docker-bridge-network>
538538
DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server
539-
DOCKER_TAG=2.1.0
539+
DOCKER_TAG=2.2.0
540540
```
541541
- 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.
542542
- 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).
@@ -630,7 +630,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p
630630
EXTERNAL_NETWORK=<docker-bridge-network>
631631
TLS_CREDENTIALS_DIR=<dir-with-tls-cert-and-key>
632632
DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-fabric
633-
DOCKER_TAG=2.1.0
633+
DOCKER_TAG=2.2.0
634634
DRIVER_TLS=<true|false>
635635
DRIVER_TLS_CERT_PATH=path_to_tls_cert_pem_for_driver
636636
DRIVER_TLS_KEY_PATH=path_to_tls_key_pem_for_driver

examples/cactus-common-example-server/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.2.0](https://github.com/hyperledger-cacti/cacti/compare/v2.1.0-alpha.1...v2.2.0) (2025-11-12)
7+
8+
**Note:** Version bump only for package @hyperledger/cactus-common-example-server
9+
610
# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)
711

812
**Note:** Version bump only for package @hyperledger/cactus-common-example-server

examples/cactus-common-example-server/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperledger/cactus-common-example-server",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "Allows Cactus nodes to interact with HTLC ETH contracts",
55
"keywords": [
66
"Hyperledger",
@@ -42,8 +42,8 @@
4242
"build:dev:backend:postbuild": "cp -f ../../yarn.lock ./dist/"
4343
},
4444
"dependencies": {
45-
"@hyperledger/cactus-common": "2.1.0",
46-
"@hyperledger/cactus-core-api": "2.1.0",
45+
"@hyperledger/cactus-common": "2.2.0",
46+
"@hyperledger/cactus-core-api": "2.2.0",
4747
"@types/node": "18.11.9",
4848
"body-parser": "1.20.3",
4949
"config": "3.3.7",
@@ -66,7 +66,7 @@
6666
"xmlhttprequest": "1.8.0"
6767
},
6868
"devDependencies": {
69-
"@hyperledger/cactus-test-tooling": "2.1.0",
69+
"@hyperledger/cactus-test-tooling": "2.2.0",
7070
"@types/config": "3.3.0",
7171
"@types/cookie-parser": "1.4.5",
7272
"@types/debug": "4.1.8",

examples/cactus-example-carbon-accounting-backend/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.2.0](https://github.com/hyperledger-cacti/cacti/compare/v2.1.0-alpha.1...v2.2.0) (2025-11-12)
7+
8+
**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend
9+
610
# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)
711

812
**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend

examples/cactus-example-carbon-accounting-backend/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperledger/cactus-example-carbon-accounting-backend",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "An example application showing how to use Cactus when implementing a Carbon Accounting Application where two or more blockchains are sharing data with each other to achieve a certain business outcome beneficial to multiple parties (business organizations).",
55
"keywords": [
66
"Hyperledger",
@@ -52,16 +52,16 @@
5252
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
5353
},
5454
"dependencies": {
55-
"@hyperledger/cactus-api-client": "2.1.0",
56-
"@hyperledger/cactus-cmd-api-server": "2.1.0",
57-
"@hyperledger/cactus-common": "2.1.0",
58-
"@hyperledger/cactus-core": "2.1.0",
59-
"@hyperledger/cactus-core-api": "2.1.0",
60-
"@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.1.0",
61-
"@hyperledger/cactus-plugin-keychain-memory": "2.1.0",
62-
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0",
63-
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0",
64-
"@hyperledger/cactus-test-tooling": "2.1.0",
55+
"@hyperledger/cactus-api-client": "2.2.0",
56+
"@hyperledger/cactus-cmd-api-server": "2.2.0",
57+
"@hyperledger/cactus-common": "2.2.0",
58+
"@hyperledger/cactus-core": "2.2.0",
59+
"@hyperledger/cactus-core-api": "2.2.0",
60+
"@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.2.0",
61+
"@hyperledger/cactus-plugin-keychain-memory": "2.2.0",
62+
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.2.0",
63+
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.2.0",
64+
"@hyperledger/cactus-test-tooling": "2.2.0",
6565
"@openzeppelin/contracts": "4.9.6",
6666
"@openzeppelin/contracts-upgradeable": "4.9.6",
6767
"async-exit-hook": "2.0.1",

examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.2.0](https://github.com/hyperledger-cacti/cacti/compare/v2.1.0-alpha.1...v2.2.0) (2025-11-12)
7+
8+
**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin
9+
610
# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)
711

812
**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin

examples/cactus-example-carbon-accounting-business-logic-plugin/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "An example business logic plugin implementation for Cactus",
55
"keywords": [
66
"Hyperledger",
@@ -55,14 +55,14 @@
5555
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
5656
},
5757
"dependencies": {
58-
"@hyperledger/cactus-api-client": "2.1.0",
59-
"@hyperledger/cactus-common": "2.1.0",
60-
"@hyperledger/cactus-core": "2.1.0",
61-
"@hyperledger/cactus-core-api": "2.1.0",
62-
"@hyperledger/cactus-plugin-consortium-manual": "2.1.0",
63-
"@hyperledger/cactus-plugin-keychain-memory": "2.1.0",
64-
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0",
65-
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0",
58+
"@hyperledger/cactus-api-client": "2.2.0",
59+
"@hyperledger/cactus-common": "2.2.0",
60+
"@hyperledger/cactus-core": "2.2.0",
61+
"@hyperledger/cactus-core-api": "2.2.0",
62+
"@hyperledger/cactus-plugin-consortium-manual": "2.2.0",
63+
"@hyperledger/cactus-plugin-keychain-memory": "2.2.0",
64+
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.2.0",
65+
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.2.0",
6666
"async-exit-hook": "2.0.1",
6767
"axios": "1.8.4",
6868
"express": "5.1.0",

0 commit comments

Comments
 (0)