diff --git a/CHANGELOG.md b/CHANGELOG.md index ae669ac4ab..9d0c77118e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +### Bug Fixes + +* mitigate CVE-2024-42461 - bump elliptic to v6.5.7 ([32c242a](https://github.com/hyperledger-cacti/cacti/commit/32c242a1a984a890aeba88073ff9805c697e5579)) +* **test-tooling:** use of hardcoded password ([63f2943](https://github.com/hyperledger-cacti/cacti/commit/63f2943d47960d2e09cd527da77f661b0f9265b2)) + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus diff --git a/docs/docs/weaver/getting-started/enabling-weaver-network/corda.md b/docs/docs/weaver/getting-started/enabling-weaver-network/corda.md index 288b585127..b30c002925 100644 --- a/docs/docs/weaver/getting-started/enabling-weaver-network/corda.md +++ b/docs/docs/weaver/getting-started/enabling-weaver-network/corda.md @@ -121,10 +121,10 @@ repositories { } } dependencies { - implementation(group: 'org.hyperledger.cacti.weaver.sdk.corda', name: 'weaver-sdk-corda', version: "2.0.0-rc.2") - implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.0.0-rc.2") - implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.0.0-rc.2") - implementation(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.0.0-rc.2") + implementation(group: 'org.hyperledger.cacti.weaver.sdk.corda', name: 'weaver-sdk-corda', version: "2.0.0") + implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.0.0") + implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.0.0") + implementation(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.0.0") } ``` (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 RELAY_PORT= EXTERNAL_NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server - DOCKER_TAG=2.0.0-rc.2 + DOCKER_TAG=2.0.0 ``` - 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). @@ -536,7 +536,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p DRIVER_RPC_PASSWORD= EXTERNAL_NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-corda - DOCKER_TAG=2.0.0-rc.2 + DOCKER_TAG=2.0.0 RELAY_TLS= RELAY_TLSCA_TRUST_STORE= RELAY_TLSCA_TRUST_STORE_PASSWORD= diff --git a/docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md b/docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md index b58f5b24f4..40b8035f9b 100644 --- a/docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md +++ b/docs/docs/weaver/getting-started/enabling-weaver-network/fabric.md @@ -83,8 +83,8 @@ Below, we list the template functions with sample code that you, as a developer, ```go require( ... - github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.2 - github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.0.0-rc.2 + github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0 + github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.0.0 ... ) ``` @@ -176,8 +176,8 @@ Below, we list the template functions with sample code that you, as a developer, ```go require( ... - github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.2 - github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/v2 v2.0.0-rc.2 + github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0 + github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/v2 v2.0.0 ... ) ``` @@ -327,7 +327,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 [cacti-weaver-sdk-fabric](https://github.com/hyperledger-cacti/cacti/pkgs/npm/cacti-weaver-sdk-fabric) library (there's an [equivalent library in Golang](https://github.com/hyperledger-cacti/cacti/releases/tag/weaver%2Fsdks%2Ffabric%2Fgo-sdk%2Fv2.0.0-rc.2) 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 [cacti-weaver-sdk-fabric](https://github.com/hyperledger-cacti/cacti/pkgs/npm/cacti-weaver-sdk-fabric) library (there's an [equivalent library in Golang](https://github.com/hyperledger-cacti/cacti/releases/tag/weaver%2Fsdks%2Ffabric%2Fgo-sdk%2Fv2.0.0) too). The following code sample illustrates this (the Golang equivalent is left to the reader): ```js const ihelper = require('@hyperledger/cacti-weaver-sdk-fabric').InteroperableHelper; const interopcc = ; // Use Fabric SDK functions: (new Gateway()).getNetwork(...).getContract() @@ -536,7 +536,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p RELAY_PORT= EXTERNAL_NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server - DOCKER_TAG=2.0.0-rc.2 + DOCKER_TAG=2.0.0 ``` - 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). @@ -630,7 +630,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p EXTERNAL_NETWORK= TLS_CREDENTIALS_DIR= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-fabric - DOCKER_TAG=2.0.0-rc.2 + DOCKER_TAG=2.0.0 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/examples/cactus-common-example-server/CHANGELOG.md b/examples/cactus-common-example-server/CHANGELOG.md index 3b6a999db9..3e0b8e7732 100644 --- a/examples/cactus-common-example-server/CHANGELOG.md +++ b/examples/cactus-common-example-server/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-common-example-server + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-common-example-server diff --git a/examples/cactus-common-example-server/package.json b/examples/cactus-common-example-server/package.json index f6b1927a9e..309a57f081 100644 --- a/examples/cactus-common-example-server/package.json +++ b/examples/cactus-common-example-server/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-common-example-server", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to interact with HTLC ETH contracts", "keywords": [ "Hyperledger", @@ -42,8 +42,8 @@ "build:dev:backend:postbuild": "cp -f ../../yarn.lock ./dist/" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "@types/node": "18.11.9", "body-parser": "1.20.3", "config": "3.3.7", @@ -66,7 +66,7 @@ "xmlhttprequest": "1.8.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/config": "3.3.0", "@types/cookie-parser": "1.4.5", "@types/debug": "4.1.8", diff --git a/examples/cactus-example-carbon-accounting-backend/CHANGELOG.md b/examples/cactus-example-carbon-accounting-backend/CHANGELOG.md index 5792f396a1..9249c5d0d1 100644 --- a/examples/cactus-example-carbon-accounting-backend/CHANGELOG.md +++ b/examples/cactus-example-carbon-accounting-backend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend diff --git a/examples/cactus-example-carbon-accounting-backend/package.json b/examples/cactus-example-carbon-accounting-backend/package.json index 74c3c19d3d..ee4b2185a9 100644 --- a/examples/cactus-example-carbon-accounting-backend/package.json +++ b/examples/cactus-example-carbon-accounting-backend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-carbon-accounting-backend", - "version": "2.0.0-rc.7", + "version": "2.0.0", "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).", "keywords": [ "Hyperledger", @@ -52,16 +52,16 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@openzeppelin/contracts": "4.9.6", "@openzeppelin/contracts-upgradeable": "4.9.6", "async-exit-hook": "2.0.1", diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md b/examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md index 17bfd7cec7..d7b4b84845 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/package.json b/examples/cactus-example-carbon-accounting-business-logic-plugin/package.json index 0088856f2f..3174aa46ce 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/package.json +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "An example business logic plugin implementation for Cactus", "keywords": [ "Hyperledger", @@ -55,14 +55,14 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", "async-exit-hook": "2.0.1", "axios": "1.7.7", "express": "4.21.0", diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.json b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.json index 7c818cde50..f3300c7480 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.json +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Example - Carbon Accounting App", "description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.tpl.json b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.tpl.json index 7c818cde50..f3300c7480 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.tpl.json +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Example - Carbon Accounting App", "description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md index 7983a265e7..1ef5cdfb23 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Demonstrates how a business use case can be satisfied with Cactus when multiple ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts index add1da6216..7138b5b95b 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts index 0da44fc4b9..482229d724 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts index 0369614858..3e9e5ae59e 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index d5a932e01b..5dbdcef5f2 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts index 908f145f01..c068864ad3 100644 --- a/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/examples/cactus-example-carbon-accounting-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Carbon Accounting App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-carbon-accounting-frontend/CHANGELOG.md b/examples/cactus-example-carbon-accounting-frontend/CHANGELOG.md index e04bff4a47..5855db57d5 100644 --- a/examples/cactus-example-carbon-accounting-frontend/CHANGELOG.md +++ b/examples/cactus-example-carbon-accounting-frontend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-frontend + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-frontend diff --git a/examples/cactus-example-carbon-accounting-frontend/package.json b/examples/cactus-example-carbon-accounting-frontend/package.json index 49c1996812..0015df2a31 100644 --- a/examples/cactus-example-carbon-accounting-frontend/package.json +++ b/examples/cactus-example-carbon-accounting-frontend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-carbon-accounting-frontend", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "The frontend component of an example project demonstrating how Cacti can be used for cross-chain dapp development.", "keywords": [ "Hyperledger", @@ -54,13 +54,13 @@ "@angular/platform-browser": "16.2.4", "@angular/platform-browser-dynamic": "16.2.4", "@angular/router": "16.2.4", - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", "@ionic-native/core": "5.36.0", "@ionic-native/splash-screen": "patch:@ionic-native/splash-screen@npm%3A5.36.0#~/.yarn/patches/@ionic-native-splash-screen-npm-5.36.0-531cbbe0f8.patch", "@ionic-native/status-bar": "patch:@ionic-native/status-bar@npm%3A5.36.0#~/.yarn/patches/@ionic-native-status-bar-npm-5.36.0-1ca86cbaad.patch", diff --git a/examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md b/examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md index 86e7f41966..f577e5bce5 100644 --- a/examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md +++ b/examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-cbdc-bridging-backend + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-cbdc-bridging-backend diff --git a/examples/cactus-example-cbdc-bridging-backend/package.json b/examples/cactus-example-cbdc-bridging-backend/package.json index c596345c51..5411fa1c73 100644 --- a/examples/cactus-example-cbdc-bridging-backend/package.json +++ b/examples/cactus-example-cbdc-bridging-backend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-cbdc-bridging-backend", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "An example application showing how to use Cacti when implementing a CBDC bridging application between Hyperledger Fabric and Hyperledger Besu.", "keywords": [ "Hyperledger", @@ -55,18 +55,18 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-object-store-ipfs": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-satp-hermes": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", + "@hyperledger/cactus-plugin-object-store-ipfs": "2.0.0", + "@hyperledger/cactus-plugin-satp-hermes": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@openzeppelin/contracts": "4.9.6", "@openzeppelin/contracts-upgradeable": "4.9.6", "async-exit-hook": "2.0.1", diff --git a/examples/cactus-example-cbdc-bridging-frontend/CHANGELOG.md b/examples/cactus-example-cbdc-bridging-frontend/CHANGELOG.md index 1f8d53c836..3c41ea4747 100644 --- a/examples/cactus-example-cbdc-bridging-frontend/CHANGELOG.md +++ b/examples/cactus-example-cbdc-bridging-frontend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cacti-example-cbdc-bridging-frontend + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cacti-example-cbdc-bridging-frontend diff --git a/examples/cactus-example-cbdc-bridging-frontend/package.json b/examples/cactus-example-cbdc-bridging-frontend/package.json index d019b5df72..98071a1deb 100644 --- a/examples/cactus-example-cbdc-bridging-frontend/package.json +++ b/examples/cactus-example-cbdc-bridging-frontend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-example-cbdc-bridging-frontend", - "version": "2.0.0-rc.7", + "version": "2.0.0", "private": true, "license": "Apache-2.0", "scripts": { diff --git a/examples/cactus-example-discounted-asset-trade-client/CHANGELOG.md b/examples/cactus-example-discounted-asset-trade-client/CHANGELOG.md index 86c3769059..e8b1bac264 100644 --- a/examples/cactus-example-discounted-asset-trade-client/CHANGELOG.md +++ b/examples/cactus-example-discounted-asset-trade-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-discounted-asset-trade-client + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-discounted-asset-trade-client diff --git a/examples/cactus-example-discounted-asset-trade-client/package.json b/examples/cactus-example-discounted-asset-trade-client/package.json index a825235942..c521e17dae 100644 --- a/examples/cactus-example-discounted-asset-trade-client/package.json +++ b/examples/cactus-example-discounted-asset-trade-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-discounted-asset-trade-client", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Client for interacting with discounted asset trade sample app and some tools for setting up indy enviroment", "keywords": [ "Hyperledger", diff --git a/examples/cactus-example-discounted-asset-trade/CHANGELOG.md b/examples/cactus-example-discounted-asset-trade/CHANGELOG.md index b84838280a..12a385b12a 100644 --- a/examples/cactus-example-discounted-asset-trade/CHANGELOG.md +++ b/examples/cactus-example-discounted-asset-trade/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-discounted-asset-trade + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-discounted-asset-trade diff --git a/examples/cactus-example-discounted-asset-trade/package.json b/examples/cactus-example-discounted-asset-trade/package.json index 20fbea3dc8..b012510a75 100644 --- a/examples/cactus-example-discounted-asset-trade/package.json +++ b/examples/cactus-example-discounted-asset-trade/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-discounted-asset-trade", - "version": "2.0.0-rc.7", + "version": "2.0.0", "private": true, "license": "Apache-2.0", "main": "dist/www.js", @@ -14,14 +14,14 @@ "start-dockerless": "node ./dist/www.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-common-example-server": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-aries": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-common-example-server": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-aries": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", "@types/node": "18.11.9", "axios": "1.7.7", "body-parser": "1.20.3", diff --git a/examples/cactus-example-electricity-trade/CHANGELOG.md b/examples/cactus-example-electricity-trade/CHANGELOG.md index 1a79d50090..cbf5fd17a5 100644 --- a/examples/cactus-example-electricity-trade/CHANGELOG.md +++ b/examples/cactus-example-electricity-trade/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-electricity-trade + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-electricity-trade diff --git a/examples/cactus-example-electricity-trade/package.json b/examples/cactus-example-electricity-trade/package.json index 222bf3a622..2898d98b6b 100644 --- a/examples/cactus-example-electricity-trade/package.json +++ b/examples/cactus-example-electricity-trade/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-electricity-trade", - "version": "2.0.0-rc.7", + "version": "2.0.0", "private": true, "license": "Apache-2.0", "main": "dist/www.js", @@ -14,13 +14,13 @@ "start-dockerless": "node ./dist/www.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-common-example-server": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-common-example-server": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.0.0", "@types/node": "18.11.9", "body-parser": "1.20.3", "cookie-parser": "1.4.6", diff --git a/examples/cactus-example-supply-chain-backend/CHANGELOG.md b/examples/cactus-example-supply-chain-backend/CHANGELOG.md index 4e0c39899b..ccca566e6b 100644 --- a/examples/cactus-example-supply-chain-backend/CHANGELOG.md +++ b/examples/cactus-example-supply-chain-backend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-backend + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-backend diff --git a/examples/cactus-example-supply-chain-backend/package.json b/examples/cactus-example-supply-chain-backend/package.json index bc1e092c9a..b61abb5848 100644 --- a/examples/cactus-example-supply-chain-backend/package.json +++ b/examples/cactus-example-supply-chain-backend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-supply-chain-backend", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "An example application showing how to use Cactus when implementing a supply chain application where two or more blockchains are sharing data with each other to achieve a certain business outcome beneficial to multiple parties (business organizations).", "keywords": [ "Hyperledger", @@ -52,19 +52,19 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.0.0-rc.7", - "@hyperledger/cactus-example-supply-chain-frontend": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.0.0", + "@hyperledger/cactus-example-supply-chain-frontend": "2.0.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "async-exit-hook": "2.0.1", "axios": "1.7.7", "dotenv": "16.0.0", diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/CHANGELOG.md b/examples/cactus-example-supply-chain-business-logic-plugin/CHANGELOG.md index 5fbb7ea07a..78dfaed79f 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/CHANGELOG.md +++ b/examples/cactus-example-supply-chain-business-logic-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-business-logic-plugin + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-business-logic-plugin diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/package.json b/examples/cactus-example-supply-chain-business-logic-plugin/package.json index 2e5ca98349..588c9ce514 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/package.json +++ b/examples/cactus-example-supply-chain-business-logic-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-supply-chain-business-logic-plugin", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "An example business logic plugin implementation for Cactus", "keywords": [ "Hyperledger", @@ -55,15 +55,15 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", "async-exit-hook": "2.0.1", "axios": "1.7.7", "express": "4.21.0", diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.json b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.json index 1496e545af..b962c8fd0b 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.json +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Example - Supply Chain App", "description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.tpl.json b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.tpl.json index 1496e545af..b962c8fd0b 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.tpl.json +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Example - Supply Chain App", "description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md index 2fc72397c1..0499a47875 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Demonstrates how a business use case can be satisfied with Cactus when multiple ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts index 87aa1f45c9..4d24f0d745 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts index cabd7ea600..6e402e50d3 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts index 2852f5e58b..84b1ea4255 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 8bf19455da..ee7065ecc7 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts index a2330b411f..49f66587a6 100644 --- a/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/examples/cactus-example-supply-chain-business-logic-plugin/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Example - Supply Chain App * Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/examples/cactus-example-supply-chain-frontend/CHANGELOG.md b/examples/cactus-example-supply-chain-frontend/CHANGELOG.md index b67f82ed32..a5f4192bfa 100644 --- a/examples/cactus-example-supply-chain-frontend/CHANGELOG.md +++ b/examples/cactus-example-supply-chain-frontend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-frontend + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-example-supply-chain-frontend diff --git a/examples/cactus-example-supply-chain-frontend/package.json b/examples/cactus-example-supply-chain-frontend/package.json index c82b23638a..a91177d6b0 100644 --- a/examples/cactus-example-supply-chain-frontend/package.json +++ b/examples/cactus-example-supply-chain-frontend/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-example-supply-chain-frontend", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "The frontend component of an example project demonstrating how Cacti can be used for cross-chain dapp development.", "keywords": [ "Hyperledger", @@ -54,14 +54,14 @@ "@angular/platform-browser": "17.3.11", "@angular/platform-browser-dynamic": "17.3.11", "@angular/router": "17.3.11", - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.0.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0", "@ionic-native/core": "5.36.0", "@ionic-native/splash-screen": "patch:@ionic-native/splash-screen@npm%3A5.36.0#~/.yarn/patches/@ionic-native-splash-screen-npm-5.36.0-531cbbe0f8.patch", "@ionic-native/status-bar": "patch:@ionic-native/status-bar@npm%3A5.36.0#~/.yarn/patches/@ionic-native-status-bar-npm-5.36.0-1ca86cbaad.patch", diff --git a/examples/cactus-workshop-examples-2022-11-14/CHANGELOG.md b/examples/cactus-workshop-examples-2022-11-14/CHANGELOG.md index edf8c44796..a86e9c7c68 100644 --- a/examples/cactus-workshop-examples-2022-11-14/CHANGELOG.md +++ b/examples/cactus-workshop-examples-2022-11-14/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-workshop-examples-2022-11-14 + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-workshop-examples-2022-11-14 diff --git a/examples/cactus-workshop-examples-2022-11-14/package.json b/examples/cactus-workshop-examples-2022-11-14/package.json index 8087926b53..6bb91f48d9 100644 --- a/examples/cactus-workshop-examples-2022-11-14/package.json +++ b/examples/cactus-workshop-examples-2022-11-14/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-workshop-examples-2022-11-14", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Cacti Workshop 2022-11-14 Examples", "keywords": [ "Hyperledger", @@ -53,11 +53,11 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "kubo-rpc-client": "3.0.1", "typescript-optional": "2.0.1", "uuid": "10.0.0" diff --git a/examples/carbon-accounting/Dockerfile b/examples/carbon-accounting/Dockerfile index 660c31d83c..bc5e7109f0 100644 --- a/examples/carbon-accounting/Dockerfile +++ b/examples/carbon-accounting/Dockerfile @@ -39,7 +39,7 @@ RUN source ~/.bashrc && \ npm install --location=global yarn && \ yarn config set nodeLinker node-modules && \ yarn set version 4.1.0 && \ - yarn add @hyperledger/cactus-example-carbon-accounting-backend@2.0.0-rc.2 + yarn add @hyperledger/cactus-example-carbon-accounting-backend@2.0.0 SHELL ["/bin/bash", "--login", "-c"] diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/CHANGELOG.md b/extensions/cactus-plugin-htlc-coordinator-besu/CHANGELOG.md index bf1a1dec4f..8e9a0b50b5 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/CHANGELOG.md +++ b/extensions/cactus-plugin-htlc-coordinator-besu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-coordinator-besu + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-coordinator-besu diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/package.json b/extensions/cactus-plugin-htlc-coordinator-besu/package.json index 322f0c27a8..d1e8997c25 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/package.json +++ b/extensions/cactus-plugin-htlc-coordinator-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-htlc-coordinator-besu", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "HTLC Coordinator to exchange tokens between networks.", "keywords": [ "Hyperledger", @@ -58,13 +58,13 @@ "webpack:prod:web": "webpack --env=prod --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-htlc-eth-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-htlc-eth-besu-erc20": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-test-plugin-htlc-eth-besu-erc20": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-htlc-eth-besu": "2.0.0", + "@hyperledger/cactus-plugin-htlc-eth-besu-erc20": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-test-plugin-htlc-eth-besu-erc20": "2.0.0", "axios": "1.7.7", "body-parser": "1.20.3", "fast-safe-stringify": "2.1.1", @@ -77,8 +77,8 @@ "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/express": "5.0.0", "@types/uuid": "10.0.0", "express": "4.21.0", diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/README.md b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/README.md index 69fadad04a..d752187b11 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/README.md +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can exchange assets between networks ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml index 07583210d9..3c56d1535c 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - HTLC Coordinator - version: 2.0.0-rc.7 + version: 2.0.0 servers: - description: Public test instance url: "https://www.cactus.stream/{basePath}" diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api_default.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api_default.go index 93535332f3..47b1652b62 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api_default.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/client.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/client.go index d405ef8f55..2db7d9e470 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/client.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC Coordinator API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC Coordinator API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/configuration.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/configuration.go index c284f4f174..0e359b1a72 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/configuration.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_counterparty_htlc_request.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_counterparty_htlc_request.go index d683dfa97d..92f4c6a2cd 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_counterparty_htlc_request.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_counterparty_htlc_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_htlc_package.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_htlc_package.go index db09962e22..901d49a40a 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_htlc_package.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_htlc_package.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_own_htlc_request.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_own_htlc_request.go index ef48eac883..cfe65a1f18 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_own_htlc_request.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_own_htlc_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 2fff1cc638..632581d3ac 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 166a5652dc..d3fa6e569d 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 3a2edefc68..bf0b8460ca 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 2689871e6a..863e397bb0 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 2cfd5bbace..b2c213a0b6 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_withdraw_counterparty_request.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_withdraw_counterparty_request.go index e43e577eae..4537d90955 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_withdraw_counterparty_request.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/model_withdraw_counterparty_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/response.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/response.go index c36640a990..0154c9333b 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/response.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/utils.go b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/utils.go index d41dccede7..9a7ac30e24 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/utils.go +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC Coordinator Can exchange assets between networks -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.json b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.json index 5f8d2b3cf3..56447a1c24 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.json +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - HTLC Coordinator", "description": "Can exchange assets between networks", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.tpl.json b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.tpl.json index 19cdc5f5d2..a9aa85e8cc 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.tpl.json +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - HTLC Coordinator", "description": "Can exchange assets between networks", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts index 3f21b7433d..6817542179 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts index 94f90c102f..040b40a505 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts index 8bdc93df8c..bcc3999837 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 73288e8680..ecea7859b5 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts index e2aa48b944..9fbab3e5d9 100644 --- a/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/extensions/cactus-plugin-htlc-coordinator-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC Coordinator * Can exchange assets between networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/CHANGELOG.md b/extensions/cactus-plugin-object-store-ipfs/CHANGELOG.md index 259ea0dd7a..2f7ad7042a 100644 --- a/extensions/cactus-plugin-object-store-ipfs/CHANGELOG.md +++ b/extensions/cactus-plugin-object-store-ipfs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-object-store-ipfs + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-object-store-ipfs diff --git a/extensions/cactus-plugin-object-store-ipfs/package.json b/extensions/cactus-plugin-object-store-ipfs/package.json index 788fce2fb7..37ae008584 100644 --- a/extensions/cactus-plugin-object-store-ipfs/package.json +++ b/extensions/cactus-plugin-object-store-ipfs/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-object-store-ipfs", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "IPFS backed object store plugin implementation for Hyperledger Cactus", "keywords": [ "Hyperledger", @@ -56,16 +56,16 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "run-time-error-cjs": "1.4.0", "typescript-optional": "2.0.1", "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@multiformats/multiaddr": "11.6.1", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/README.md b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/README.md index 4e3810dc25..aeb3bbb6e7 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/README.md +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cactus Object Store IPFS plugin. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api/openapi.yaml b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api/openapi.yaml index 3a5964c034..cd9350ffc3 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: 'Hyperledger Cactus Plugin - Object Store - IPFS ' - version: 2.0.0-rc.7 + version: 2.0.0 servers: - description: Public test instance url: "https://www.cactus.stream/{basePath}" diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api_default.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api_default.go index 6ff3bf921f..ae7b7d6f73 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api_default.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/client.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/client.go index 38b7ae84d2..8a87010888 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/client.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Object Store - IPFS API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Object Store - IPFS API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/configuration.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/configuration.go index ba791b49a5..640d03c62e 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/configuration.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go index fac77b6d81..672c6b327b 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go index 7ed29f8a62..05a3151781 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go index f96a07f61e..379ff4b157 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go index e9da528107..b992299ac1 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go index 43aabf9947..642e61f298 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go index 24072ec205..bcf6ac31d9 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/response.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/response.go index 095be16dd4..78149ee6b7 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/response.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/utils.go b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/utils.go index 5739dc1e84..8c3c55ecab 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/utils.go +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Object Store - IPFS Contains/describes the Hyperledger Cactus Object Store IPFS plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.json b/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.json index 96c99cfaa3..a6fa3b0c8a 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.json +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Object Store - IPFS ", "description": "Contains/describes the Hyperledger Cactus Object Store IPFS plugin.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.tpl.json b/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.tpl.json index 71842cb08d..91ed098ccd 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.tpl.json +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Object Store - IPFS ", "description": "Contains/describes the Hyperledger Cactus Object Store IPFS plugin.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/kotlin/generated/openapi/kotlin-client/README.md b/extensions/cactus-plugin-object-store-ipfs/src/main/kotlin/generated/openapi/kotlin-client/README.md index 56f82c13f2..50c8b8f663 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cactus Object Store IPFS plugin. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/api.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/api.ts index 13d32e7528..6c5d330b7b 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/base.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/base.ts index ac1391497c..33f8f8e64b 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/common.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/common.ts index 54d5924be2..ed521266e2 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index e312f7fac8..b7e2946156 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/index.ts b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/index.ts index 2511a6c861..01d66f9a9b 100644 --- a/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/extensions/cactus-plugin-object-store-ipfs/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Object Store - IPFS * Contains/describes the Hyperledger Cactus Object Store IPFS plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/lerna.json b/lerna.json index 420a7f7440..f7a1ed380f 100644 --- a/lerna.json +++ b/lerna.json @@ -16,7 +16,7 @@ "weaver/samples/besu/simpleasset", "weaver/samples/besu/simplestate" ], - "version": "2.0.0-rc.7", + "version": "2.0.0", "npmClient": "yarn", "useWorkspaces": "true", "command": { diff --git a/packages/cacti-ledger-browser/CHANGELOG.md b/packages/cacti-ledger-browser/CHANGELOG.md index 41610702ea..f9c1323f4c 100644 --- a/packages/cacti-ledger-browser/CHANGELOG.md +++ b/packages/cacti-ledger-browser/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cacti-ledger-browser + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cacti-ledger-browser diff --git a/packages/cacti-ledger-browser/package.json b/packages/cacti-ledger-browser/package.json index 9f2cdf2fd1..9be755f9c3 100644 --- a/packages/cacti-ledger-browser/package.json +++ b/packages/cacti-ledger-browser/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-ledger-browser", - "version": "2.0.0-rc.7", + "version": "2.0.0", "private": true, "description": "Cacti GUI for visualizing ledger data build on react.", "keywords": [ diff --git a/packages/cacti-plugin-consortium-static/CHANGELOG.md b/packages/cacti-plugin-consortium-static/CHANGELOG.md index 3d2e45e93e..014133752b 100644 --- a/packages/cacti-plugin-consortium-static/CHANGELOG.md +++ b/packages/cacti-plugin-consortium-static/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cacti-plugin-consortium-static + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cacti-plugin-consortium-static diff --git a/packages/cacti-plugin-consortium-static/package.json b/packages/cacti-plugin-consortium-static/package.json index c17e4b942b..6e46b0852e 100644 --- a/packages/cacti-plugin-consortium-static/package.json +++ b/packages/cacti-plugin-consortium-static/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-plugin-consortium-static", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "A web service plugin that provides management capabilities on a Cactus consortium as a whole for administrative purposes.", "keywords": [ "Hyperledger", @@ -55,9 +55,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "body-parser": "1.20.3", "express": "4.21.0", @@ -70,10 +70,10 @@ "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/express": "5.0.0", "@types/json-stable-stringify": "1.0.33", "@types/uuid": "10.0.0", diff --git a/packages/cacti-plugin-consortium-static/src/main/json/openapi.json b/packages/cacti-plugin-consortium-static/src/main/json/openapi.json index a11b72bac2..1abbbc9342 100644 --- a/packages/cacti-plugin-consortium-static/src/main/json/openapi.json +++ b/packages/cacti-plugin-consortium-static/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Consortium Web Service", "description": "Manage a Cactus consortium through the APIs. Needs administrative privileges.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-plugin-consortium-static/src/main/json/openapi.tpl.json b/packages/cacti-plugin-consortium-static/src/main/json/openapi.tpl.json index a11b72bac2..1abbbc9342 100644 --- a/packages/cacti-plugin-consortium-static/src/main/json/openapi.tpl.json +++ b/packages/cacti-plugin-consortium-static/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Consortium Web Service", "description": "Manage a Cactus consortium through the APIs. Needs administrative privileges.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-plugin-consortium-static/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cacti-plugin-consortium-static/src/main/kotlin/generated/openapi/kotlin-client/README.md index 88fb399a08..60881d5999 100644 --- a/packages/cacti-plugin-consortium-static/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cacti-plugin-consortium-static/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Manage a Cactus consortium through the APIs. Needs administrative privileges. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/api.ts index a13403ac68..d420a16e30 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/base.ts index 49d044e16f..613e857fa8 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/common.ts index 290c6d823f..bab611ca0b 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index b82f696c9b..01995a47cf 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/index.ts index 723fe793d5..7e96917e25 100644 --- a/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cacti-plugin-consortium-static/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/CHANGELOG.md b/packages/cacti-plugin-ledger-connector-stellar/CHANGELOG.md index 78a25ed854..d546e70f69 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/CHANGELOG.md +++ b/packages/cacti-plugin-ledger-connector-stellar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cacti-plugin-ledger-connector-stellar + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cacti-plugin-ledger-connector-stellar diff --git a/packages/cacti-plugin-ledger-connector-stellar/package.json b/packages/cacti-plugin-ledger-connector-stellar/package.json index 76969e7084..518f971979 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/package.json +++ b/packages/cacti-plugin-ledger-connector-stellar/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-plugin-ledger-connector-stellar", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cacti nodes to connect to a Stellar ledger.", "keywords": [ "Hyperledger", @@ -59,9 +59,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "express": "4.21.0", "http-errors-enhanced-cjs": "2.0.1", @@ -75,8 +75,8 @@ "typescript-optional": "2.0.1" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/http-errors": "2.0.4", diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.json b/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.json index c6e0ae1542..d86e02d274 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.json +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Stellar", "description": "Can perform basic smart contract tasks on a Stellar ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.tpl.json b/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.tpl.json index c6e0ae1542..d86e02d274 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.tpl.json +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Stellar", "description": "Can perform basic smart contract tasks on a Stellar ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/api.ts index 650890a10d..cbdf6f9527 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/base.ts index c9fe9bfa18..a243dd8caf 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/common.ts index 6c614feed8..c04e3343bb 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index a8d2d11f52..14d2cc7cc1 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/index.ts index 01d72b213e..65d5a71505 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cacti-plugin-ledger-connector-stellar/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Stellar * Can perform basic smart contract tasks on a Stellar ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/Cargo.lock b/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/Cargo.lock index ff91bef5e3..c4688bc2e2 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/Cargo.lock +++ b/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/Cargo.lock @@ -481,7 +481,7 @@ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" [[package]] name = "hello-world" -version = "2.0.0-rc.7" +version = "2.0.0" dependencies = [ "soroban-sdk", ] diff --git a/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/contracts/hello_world/Cargo.toml b/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/contracts/hello_world/Cargo.toml index 8d3b99819c..1cd5463c89 100644 --- a/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/contracts/hello_world/Cargo.toml +++ b/packages/cacti-plugin-ledger-connector-stellar/src/test/rust/demo-contract/contracts/hello_world/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world" -version = "2.0.0-rc.7" +version = "2.0.0" edition = "2021" publish = false diff --git a/packages/cacti-plugin-weaver-driver-fabric/CHANGELOG.md b/packages/cacti-plugin-weaver-driver-fabric/CHANGELOG.md index 8aada66498..44fbcf6b46 100644 --- a/packages/cacti-plugin-weaver-driver-fabric/CHANGELOG.md +++ b/packages/cacti-plugin-weaver-driver-fabric/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cacti-plugin-weaver-driver-fabric + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cacti-plugin-weaver-driver-fabric diff --git a/packages/cacti-plugin-weaver-driver-fabric/package.json b/packages/cacti-plugin-weaver-driver-fabric/package.json index d1e05a39c2..c365cf17b6 100644 --- a/packages/cacti-plugin-weaver-driver-fabric/package.json +++ b/packages/cacti-plugin-weaver-driver-fabric/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-plugin-weaver-driver-fabric", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Driver Server for communication with a Fabric Network as part of weaver data sharing protocol", "keywords": [ "Hyperledger", diff --git a/packages/cactus-api-client/CHANGELOG.md b/packages/cactus-api-client/CHANGELOG.md index 253aa7457d..82a92fa57c 100644 --- a/packages/cactus-api-client/CHANGELOG.md +++ b/packages/cactus-api-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-api-client + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-api-client diff --git a/packages/cactus-api-client/package.json b/packages/cactus-api-client/package.json index 7fb2aef034..039c301802 100644 --- a/packages/cactus-api-client/package.json +++ b/packages/cactus-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-api-client", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Universal library used by both front end and back end components of Cactus. Aims to be a developer swiss army knife.", "keywords": [ "Hyperledger", @@ -50,16 +50,16 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", "jsonwebtoken": "9.0.0", "rxjs": "7.8.1", "socket.io-client-fixed-types": "4.5.4" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/jsonwebtoken": "9.0.0", "@types/lodash": "4.14.195", "@types/node": "18.11.9", diff --git a/packages/cactus-cmd-api-server/CHANGELOG.md b/packages/cactus-cmd-api-server/CHANGELOG.md index 4f523a926a..8ed022f137 100644 --- a/packages/cactus-cmd-api-server/CHANGELOG.md +++ b/packages/cactus-cmd-api-server/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-cmd-api-server + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-cmd-api-server diff --git a/packages/cactus-cmd-api-server/package.json b/packages/cactus-cmd-api-server/package.json index f09bb30fb9..bc904396d8 100644 --- a/packages/cactus-cmd-api-server/package.json +++ b/packages/cactus-cmd-api-server/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-cmd-api-server", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "API server that combines and exposes all the functionality of a Cactus deployment through a unified REST API interface.", "keywords": [ "Hyperledger", @@ -69,9 +69,9 @@ "@connectrpc/connect-node": "1.4.0", "@grpc/grpc-js": "1.11.3", "@grpc/proto-loader": "0.7.13", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "@thream/socketio-jwt": "2.1.1", "async-exit-hook": "2.0.1", "axios": "1.7.7", @@ -107,8 +107,8 @@ "@bufbuild/buf": "1.30.0", "@bufbuild/protoc-gen-es": "1.8.0", "@connectrpc/protoc-gen-connect-es": "1.4.0", - "@hyperledger/cactus-plugin-keychain-vault": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-vault": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@openapitools/openapi-generator-cli": "2.7.0", "@types/async-exit-hook": "2.0.2", "@types/benchmark": "2.1.5", diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/README.md index a79cc0d9be..548fe6c56c 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Interact with a Cactus deployment through HTTP. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api/openapi.yaml index 8ff5b5f26b..b25ac93cc3 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus API - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api_default.go index 411aa8d96b..27da765c0c 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/client.go index 70a4452d68..a3b0f19744 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus API API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus API API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/configuration.go index 7e319b7cbf..c69a1313a5 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_health_check_response.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_health_check_response.go index 38b980c4e9..8aca3bede0 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_health_check_response.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_health_check_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_memory_usage.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_memory_usage.go index 631beec2dc..00a5c59098 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_memory_usage.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_memory_usage.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_watch_healthcheck_v1.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_watch_healthcheck_v1.go index 80a8d98993..99f5cd9653 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_watch_healthcheck_v1.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/model_watch_healthcheck_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/response.go index 302fed115b..1eaedeef3f 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/utils.go index 400e69ebb8..92e93e50d6 100644 --- a/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-cmd-api-server/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus API Interact with a Cactus deployment through HTTP. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-cmd-api-server/src/main/json/openapi.json b/packages/cactus-cmd-api-server/src/main/json/openapi.json index 8e52321f09..a9c63cf9d2 100644 --- a/packages/cactus-cmd-api-server/src/main/json/openapi.json +++ b/packages/cactus-cmd-api-server/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus API", "description": "Interact with a Cactus deployment through HTTP.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-cmd-api-server/src/main/json/openapi.tpl.json b/packages/cactus-cmd-api-server/src/main/json/openapi.tpl.json index 8e52321f09..a9c63cf9d2 100644 --- a/packages/cactus-cmd-api-server/src/main/json/openapi.tpl.json +++ b/packages/cactus-cmd-api-server/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus API", "description": "Interact with a Cactus deployment through HTTP.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-cmd-api-server/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-cmd-api-server/src/main/kotlin/generated/openapi/kotlin-client/README.md index 849797d584..a9770d9c2e 100644 --- a/packages/cactus-cmd-api-server/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-cmd-api-server/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Interact with a Cactus deployment through HTTP. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/README.md b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/README.md index c201e83d3a..a3c8389200 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/README.md +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/README.md @@ -5,7 +5,7 @@ Interact with a Cactus deployment through HTTP. ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/health_check_response_pb.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/health_check_response_pb.proto index af685cb526..0b05842296 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/health_check_response_pb.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/health_check_response_pb.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/memory_usage_pb.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/memory_usage_pb.proto index ab3b4e16af..119eb46f36 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/memory_usage_pb.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/memory_usage_pb.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/watch_healthcheck_v1_pb.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/watch_healthcheck_v1_pb.proto index 4805bd26eb..bdeb89bddf 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/watch_healthcheck_v1_pb.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/models/watch_healthcheck_v1_pb.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/services/default_service.proto b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/services/default_service.proto index ffd555dec4..e1d50cfded 100644 --- a/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/services/default_service.proto +++ b/packages/cactus-cmd-api-server/src/main/proto/generated/openapi/services/default_service.proto @@ -3,7 +3,7 @@ Interact with a Cactus deployment through HTTP. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/api.ts index 159894ea96..6610e56b53 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/base.ts index a730241ae6..2a3b997aff 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/common.ts index bcbe26290e..de476edf95 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index b6385692d8..69b7f36de4 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/index.ts index 32cb00a532..442bfad8da 100644 --- a/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-cmd-api-server/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus API * Interact with a Cactus deployment through HTTP. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-cmd-api-server/src/test/resources/cactus-dummy-package/package.json b/packages/cactus-cmd-api-server/src/test/resources/cactus-dummy-package/package.json index d6b0f37781..01fff24dd4 100644 --- a/packages/cactus-cmd-api-server/src/test/resources/cactus-dummy-package/package.json +++ b/packages/cactus-cmd-api-server/src/test/resources/cactus-dummy-package/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-dummy-package", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": "Apache-2.0", "description": "Dummy package for testing.", "main": "index.js" diff --git a/packages/cactus-common/CHANGELOG.md b/packages/cactus-common/CHANGELOG.md index ca7d8d9100..38b53b6db2 100644 --- a/packages/cactus-common/CHANGELOG.md +++ b/packages/cactus-common/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-common + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-common diff --git a/packages/cactus-common/package.json b/packages/cactus-common/package.json index 4fca562d91..65a37a54af 100644 --- a/packages/cactus-common/package.json +++ b/packages/cactus-common/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-common", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Universal library used by both front end and back end components of Cactus. Aims to be a developer swiss army knife.", "keywords": [ "Hyperledger", diff --git a/packages/cactus-core-api/CHANGELOG.md b/packages/cactus-core-api/CHANGELOG.md index 6fdaafc4a1..6936e3e173 100644 --- a/packages/cactus-core-api/CHANGELOG.md +++ b/packages/cactus-core-api/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-core-api + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-core-api diff --git a/packages/cactus-core-api/Cargo.lock b/packages/cactus-core-api/Cargo.lock index 752fda8e53..e08045f122 100644 --- a/packages/cactus-core-api/Cargo.lock +++ b/packages/cactus-core-api/Cargo.lock @@ -691,7 +691,7 @@ checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" [[package]] name = "relay" -version = "2.0.0-rc.7" +version = "2.0.0" dependencies = [ "prost", "serde", diff --git a/packages/cactus-core-api/Cargo.toml b/packages/cactus-core-api/Cargo.toml index 95f830e552..02c73bb023 100644 --- a/packages/cactus-core-api/Cargo.toml +++ b/packages/cactus-core-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "relay" -version = "2.0.0-rc.7" +version = "2.0.0" authors = ["Antony Targett ", "Nick Waywood "] edition = "2021" diff --git a/packages/cactus-core-api/package.json b/packages/cactus-core-api/package.json index 78ba79bd7e..2fb01bf346 100644 --- a/packages/cactus-core-api/package.json +++ b/packages/cactus-core-api/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-core-api", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Contains type definitions/interfaces for the kernel of the codebase. Kept separate from the implementation so that it is easier to use it as a dependency.", "keywords": [ "Hyperledger", @@ -61,7 +61,7 @@ }, "dependencies": { "@grpc/grpc-js": "1.11.3", - "@hyperledger/cactus-common": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", "ajv": "8.17.1", "ajv-draft-04": "1.0.0", "ajv-formats": "3.0.1", diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/README.md index b02ac97fe0..83352834fe 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the core API types for Cactus. Does not describe actual endpo ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/api/openapi.yaml index 2f0b55894a..37d70a72de 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -9,7 +9,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Core API - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: {} diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/client.go index daa9d5b7dc..4ffc6767bd 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Core API API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Core API API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/configuration.go index d66607bacf..3540631df7 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node.go index b07b9406c6..ff5fc42c58 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_all_of.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_all_of.go index ad58035db0..71ee376c97 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_all_of.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_all_of.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_meta.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_meta.go index 6f06c13bd5..f702dd6c56 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_meta.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_cactus_node_meta.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_out_tx_finality.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_out_tx_finality.go index cab520d4d8..3bfa034f77 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_out_tx_finality.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_out_tx_finality.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_tx_finality.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_tx_finality.go index 4fa41914db..90776cb6e5 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_tx_finality.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_families_with_tx_finality.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_family.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_family.go index 01517a3815..196588303f 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_family.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consensus_algorithm_family.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium.go index aa5bc54ae1..675b38d670 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_database.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_database.go index f71ca84901..3c37870158 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_database.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_database.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_member.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_member.go index 9da5a0c517..21d56a9f61 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_member.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_consortium_member.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_constants.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_constants.go index 086eb7c53e..076f0485fa 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_constants.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_constants.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 4584905c2e..e1446cc451 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 29ebaa14f9..20ed0a4240 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index 11fe692045..6e3b0a1827 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 867d849664..374e732485 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go index b18aea2781..2a78fc89b2 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go index 4ad0091565..cb1400869c 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_get_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index a1317c5846..ea7ec0856b 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index 7d3497b2dc..1fb1a09293 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go index c6337827a9..1c28cc09c7 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go index fea235be2e..86ad65829f 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_has_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_general.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_general.go index 901523c89a..9bdc2e10e4 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_general.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_general.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_recipient.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_recipient.go index 6e5326ef7f..fe7cb1967c 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_recipient.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_jws_recipient.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger.go index c82e9a004a..3f5448e0a1 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go index 4eb124c92f..e493a1ec32 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import.go index 2b64d66a11..39c176d1a0 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_action.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_action.go index 30212e15a6..545388d4a5 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_action.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_action.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_type.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_type.go index ca17d6cffa..ca8a8f50d5 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_type.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_import_type.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_instance.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_instance.go index 2d60be0801..51f74e91be 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_instance.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_plugin_instance.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 9220f46dc4..0f43d9fb8e 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index 247e10c59f..6f62043e80 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go index b46d24f8fa..2764695969 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go index 2f50ed2f80..c11652947d 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_set_object_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/response.go index e739da5ca6..ae581966be 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/utils.go index 250007d783..549c02232e 100644 --- a/packages/cactus-core-api/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-core-api/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Core API Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-core-api/src/main/json/openapi.json b/packages/cactus-core-api/src/main/json/openapi.json index 710533405b..f6972c48ec 100644 --- a/packages/cactus-core-api/src/main/json/openapi.json +++ b/packages/cactus-core-api/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Core API", "description": "Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc..", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-core-api/src/main/json/openapi.tpl.json b/packages/cactus-core-api/src/main/json/openapi.tpl.json index 710533405b..f6972c48ec 100644 --- a/packages/cactus-core-api/src/main/json/openapi.tpl.json +++ b/packages/cactus-core-api/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Core API", "description": "Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc..", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-core-api/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-core-api/src/main/kotlin/generated/openapi/kotlin-client/README.md index cc398ecc0d..08c8fc3737 100644 --- a/packages/cactus-core-api/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-core-api/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the core API types for Cactus. Does not describe actual endpo ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/api.ts index 08ddb5d573..fece1ca1f0 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/base.ts index ed1eee2429..11f8c6de2c 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/common.ts index 2f1c3c7540..c23cc1afb6 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 2eeedc31bb..7a898bfc25 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/index.ts index ad71bc1afa..8c35e9cdff 100644 --- a/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-core-api/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Core API * Contains/describes the core API types for Cactus. Does not describe actual endpoints on its own as this is left to the implementing plugins who can import and re-use commonly needed type definitions from this specification. One example of said commonly used type definitions would be the types related to consortium management, cactus nodes, ledgers, etc.. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-core/CHANGELOG.md b/packages/cactus-core/CHANGELOG.md index 8e250ad925..aea45b906e 100644 --- a/packages/cactus-core/CHANGELOG.md +++ b/packages/cactus-core/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-core + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-core diff --git a/packages/cactus-core/package.json b/packages/cactus-core/package.json index 5224b9a85b..f25cafe187 100644 --- a/packages/cactus-core/package.json +++ b/packages/cactus-core/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-core", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Contains lower level abstractions/implementation that is to be shared by multiple other, higher level packages of the project.", "keywords": [ "Hyperledger", @@ -50,8 +50,8 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "body-parser": "1.20.3", "express": "4.21.0", "express-jwt-authz": "2.4.1", diff --git a/packages/cactus-plugin-bungee-hermes/CHANGELOG.md b/packages/cactus-plugin-bungee-hermes/CHANGELOG.md index c0e9595a35..85c205cb8a 100644 --- a/packages/cactus-plugin-bungee-hermes/CHANGELOG.md +++ b/packages/cactus-plugin-bungee-hermes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-bungee-hermes + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-bungee-hermes diff --git a/packages/cactus-plugin-bungee-hermes/package.json b/packages/cactus-plugin-bungee-hermes/package.json index a16775cda3..f23f5f03ae 100644 --- a/packages/cactus-plugin-bungee-hermes/package.json +++ b/packages/cactus-plugin-bungee-hermes/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-bungee-hermes", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to create DLT views using Cactus connectors", "keywords": [ "Hyperledger", @@ -58,14 +58,14 @@ "watch": "npm-watch" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", "axios": "1.7.7", "body-parser": "1.20.3", "fs-extra": "11.2.0", @@ -78,8 +78,8 @@ "web3-core": "1.6.1" }, "devDependencies": { - "@hyperledger/cactus-test-geth-ledger": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-geth-ledger": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/crypto-js": "4.0.1", "@types/express": "5.0.0", diff --git a/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.json b/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.json index 5aa7fdba14..4cc0d3870c 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.json +++ b/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.json @@ -17,7 +17,7 @@ "info": { "title": "Hyperledger Cactus Plugin - BUNGEE-Hermes", "description": "Can create blockchain views of different networks", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.tpl.json b/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.tpl.json index 5aa7fdba14..4cc0d3870c 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-bungee-hermes/src/main/json/openapi.tpl.json @@ -17,7 +17,7 @@ "info": { "title": "Hyperledger Cactus Plugin - BUNGEE-Hermes", "description": "Can create blockchain views of different networks", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts index 2123924cf3..7a3d524e57 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts index a32092ed27..734449dc54 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts index 3f1f42ae10..b97c2e50f4 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 1ec3aaf75d..70015980b6 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts index 9f3a0e9dbc..bfd7e680ec 100644 --- a/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-bungee-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - BUNGEE-Hermes * Can create blockchain views of different networks * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/CHANGELOG.md b/packages/cactus-plugin-consortium-manual/CHANGELOG.md index c952920318..f8362d3422 100644 --- a/packages/cactus-plugin-consortium-manual/CHANGELOG.md +++ b/packages/cactus-plugin-consortium-manual/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-consortium-manual + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-consortium-manual diff --git a/packages/cactus-plugin-consortium-manual/package.json b/packages/cactus-plugin-consortium-manual/package.json index 7c61150d06..af9441e8c5 100644 --- a/packages/cactus-plugin-consortium-manual/package.json +++ b/packages/cactus-plugin-consortium-manual/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-consortium-manual", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "A web service plugin that provides management capabilities on a Cactus consortium as a whole for administrative purposes.", "keywords": [ "Hyperledger", @@ -56,9 +56,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "body-parser": "1.20.3", "express": "4.21.0", diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/README.md index 5b3a7f8c73..5e229720a4 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Manage a Cactus consortium through the APIs. Needs administrative privileges. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api/openapi.yaml index ff1942b24f..56cabe1eb4 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Consortium Web Service - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api_default.go index 7ff03d2d80..b15b867b26 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/client.go index cc83f9be0c..31894fad7a 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Consortium Web Service API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Consortium Web Service API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/configuration.go index 2abc0a961f..0c1ced4f4f 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_consortium_jws_response.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_consortium_jws_response.go index 5354b30612..855a435ba8 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_consortium_jws_response.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_consortium_jws_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_node_jws_response.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_node_jws_response.go index fdabed03b1..899c530036 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_node_jws_response.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_get_node_jws_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_general.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_general.go index e6d071ab04..0faf0e27a2 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_general.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_general.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_recipient.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_recipient.go index 6fe09ea553..f79bd7820f 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_recipient.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/model_jws_recipient.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/response.go index 6a81383764..124ee93cec 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/utils.go index d08fee0528..10df6d7842 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-consortium-manual/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Consortium Web Service Manage a Cactus consortium through the APIs. Needs administrative privileges. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-consortium-manual/src/main/json/openapi.json b/packages/cactus-plugin-consortium-manual/src/main/json/openapi.json index 174fc42556..4d664c6e01 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/json/openapi.json +++ b/packages/cactus-plugin-consortium-manual/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Consortium Web Service", "description": "Manage a Cactus consortium through the APIs. Needs administrative privileges.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-consortium-manual/src/main/json/openapi.tpl.json b/packages/cactus-plugin-consortium-manual/src/main/json/openapi.tpl.json index 3b788f7a65..847f742570 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-consortium-manual/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Consortium Web Service", "description": "Manage a Cactus consortium through the APIs. Needs administrative privileges.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-consortium-manual/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-consortium-manual/src/main/kotlin/generated/openapi/kotlin-client/README.md index ba4fceaaa4..562dbaa95b 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-consortium-manual/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Manage a Cactus consortium through the APIs. Needs administrative privileges. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/api.ts index d609015ee8..95ec1b160e 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/base.ts index 49d044e16f..613e857fa8 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/common.ts index 290c6d823f..bab611ca0b 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index b82f696c9b..01995a47cf 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/index.ts index 723fe793d5..7e96917e25 100644 --- a/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-consortium-manual/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Consortium Web Service * Manage a Cactus consortium through the APIs. Needs administrative privileges. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/CHANGELOG.md b/packages/cactus-plugin-htlc-eth-besu-erc20/CHANGELOG.md index b8087e51bc..d887b98f3f 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/CHANGELOG.md +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-eth-besu-erc20 + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-eth-besu-erc20 diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/package.json b/packages/cactus-plugin-htlc-eth-besu-erc20/package.json index 50997d2277..95a76e7bea 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/package.json +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-htlc-eth-besu-erc20", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens", "keywords": [ "Hyperledger", @@ -61,10 +61,10 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", "axios": "1.7.7", "express": "4.21.0", "joi": "17.13.3", diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/README.md index 5244dd4e6d..95714dbf93 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api/openapi.yaml index 72c2901847..80221579be 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api_default.go index cc753f7bb9..6f48ab3fbf 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/client.go index 339bbe03f3..3dbb799594 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/configuration.go index ba18308a9d..17e033cc91 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_single_status_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_single_status_request.go index 58ee3f4175..9163d539a2 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_single_status_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_single_status_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_status_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_status_request.go index e160b76560..e56631613d 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_status_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_get_status_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_initialize_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_initialize_request.go index ef0c2ea38c..ebfe9466ab 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_initialize_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_initialize_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 055de8fab5..618cc769b2 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request.go index 94b782b555..04bbb14712 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request_gas.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request_gas.go index 36c5b7314f..524a257843 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request_gas.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_new_contract_request_gas.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_refund_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_refund_request.go index b69e79a580..aa7adb4b17 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_refund_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_refund_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 79bb4a7f83..a348f27b72 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index e51b97fe90..d6511f99b1 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 81b10be12c..a3cae7e397 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 17ebb156ce..01c33a52e1 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index e34b1c7b04..c1d23c99c3 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 19a1fbe79c..af7bf63c5e 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index 7972fe0d31..b650a80ebc 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_withdraw_request.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_withdraw_request.go index f370a4e776..3bfa19ecf9 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_withdraw_request.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/model_withdraw_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/response.go index 97ae79d563..9750ae0248 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/utils.go index 5bf5e03d31..7897cfb605 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.json b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.json index fb384186e6..8b127b1c9d 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.json +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - HTLC ETH BESU ERC20", "description": "Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.tpl.json b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.tpl.json index d3914a09f7..f3fcde65f2 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - HTLC ETH BESU ERC20", "description": "Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/kotlin/generated/openapi/kotlin-client/README.md index 390663b85a..7aef4bee44 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/api.ts index e2a8a45507..fd21b0f439 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/base.ts index 67bece680f..f6bf492efb 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/common.ts index 8aa9708e6e..a6116b42a0 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index f9a13f2e0c..1d45a6b0c7 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/index.ts index 0a92c6552d..ec13f0cb50 100644 --- a/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-htlc-eth-besu-erc20/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC ETH BESU ERC20 * Allows Cactus nodes to interact with HTLC contracts with ERC-20 Tokens * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/CHANGELOG.md b/packages/cactus-plugin-htlc-eth-besu/CHANGELOG.md index 0ee21d850f..d66b7322b9 100644 --- a/packages/cactus-plugin-htlc-eth-besu/CHANGELOG.md +++ b/packages/cactus-plugin-htlc-eth-besu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-eth-besu + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-htlc-eth-besu diff --git a/packages/cactus-plugin-htlc-eth-besu/package.json b/packages/cactus-plugin-htlc-eth-besu/package.json index 5b6af2a38c..0e90b4b8e6 100644 --- a/packages/cactus-plugin-htlc-eth-besu/package.json +++ b/packages/cactus-plugin-htlc-eth-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-htlc-eth-besu", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to interact with HTLC ETH contracts", "keywords": [ "Hyperledger", @@ -67,12 +67,12 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "axios": "1.7.7", "bn.js": "5.2.1", "dotenv": "16.0.3", @@ -84,8 +84,8 @@ "web3js-quorum": "22.4.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/express": "5.0.0", "ds-test": "https://github.com/dapphub/ds-test.git#e282159d5170298eb2455a6c05280ab5a73a4ef0", "forge-std": "https://github.com/foundry-rs/forge-std.git#66bf4e2c92cf507531599845e8d5a08cc2e3b5bb" diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/README.md index a6ff0c0e0e..350810b733 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml index f9acaba478..804b0f0ab9 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -4,7 +4,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - HTLC-ETH Besu - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api_default.go index 8da19ca084..c52cda8e7f 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/client.go index 948715a80d..834cce4292 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC-ETH Besu API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - HTLC-ETH Besu API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/configuration.go index 9c4fc9532d..8c3ed42585 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_single_status_request.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_single_status_request.go index 4244a8fb8e..6248e87399 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_single_status_request.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_single_status_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_status_request.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_status_request.go index 4c2a99b155..352a1cb0f8 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_status_request.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_get_status_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_initialize_request.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_initialize_request.go index dd2aa0026d..7ed2607381 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_initialize_request.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_initialize_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 38dc726e51..35719c3348 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj.go index 04a61f09cf..f12efbf930 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj_gas.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj_gas.go index d1bbbfc03c..fa6d7ef8dd 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj_gas.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_new_contract_obj_gas.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_refund_req.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_refund_req.go index 1f01e57ea5..b2ab789445 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_refund_req.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_refund_req.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 0d056ab710..32a62f9472 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 2d53da04ba..434239483c 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 810d89be8f..2e85bf153d 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 68e62f53e6..8caa7833de 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 0a72f5de5e..91efe5ad93 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 234354debb..734ca49d67 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index 92d2158175..35789eb59f 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_withdraw_req.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_withdraw_req.go index 2150416435..22d03135e4 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_withdraw_req.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/model_withdraw_req.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/response.go index 6e703a8308..608629dd70 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/utils.go index 252da4098f..5567db4a98 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - HTLC-ETH Besu No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.json b/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.json index 910352721e..459817ddfb 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.json +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.0.3", "info": { "title": "Hyperledger Cactus Plugin - HTLC-ETH Besu", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.tpl.json b/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.tpl.json index 3498ea0f78..a0f61f3318 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/json/openapi.tpl.json @@ -2,7 +2,7 @@ "openapi": "3.0.3", "info": { "title": "Hyperledger Cactus Plugin - HTLC-ETH Besu", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts index 868bf3e2c5..04a8530a2f 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts index 31f153fbb7..5fe7764693 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts index b9bfe57f30..d1ca0b15b9 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index d39eb1ded5..a95e131f86 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts index f19e7f3f94..cacc31ce7d 100644 --- a/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-htlc-eth-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - HTLC-ETH Besu * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/CHANGELOG.md b/packages/cactus-plugin-keychain-aws-sm/CHANGELOG.md index 3594baf275..899589f94c 100644 --- a/packages/cactus-plugin-keychain-aws-sm/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-aws-sm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-aws-sm + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-aws-sm diff --git a/packages/cactus-plugin-keychain-aws-sm/package.json b/packages/cactus-plugin-keychain-aws-sm/package.json index 887ec553ef..6e6e5b4653 100644 --- a/packages/cactus-plugin-keychain-aws-sm/package.json +++ b/packages/cactus-plugin-keychain-aws-sm/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-aws-sm", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "A keychain implementation storing its entries in AWS Secret Manger.", "keywords": [ "Hyperledger", @@ -56,9 +56,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "aws-sdk": "2.965.0", "axios": "1.7.7", "http-status-codes": "2.1.4", @@ -66,7 +66,7 @@ "typescript-optional": "2.0.1" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/request": "2.48.7", diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/README.md index 575e4a5c26..e48d700f9b 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml index 2d38e43ec8..635f03b82d 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus - Keychain API - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api_default.go index 95b8b153df..4720d476d1 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/client.go index d6df3c4592..e508c4fafa 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/configuration.go index 012ec82a0c..a8ebc91719 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index cdc5c849b5..22a61bf5c3 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 05b090e144..b5d6edae47 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index b09d23b0b7..66a8131e8a 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index c29d475a65..f3d2a3c3e6 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index ed74fea4ce..8d9a7df364 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index ebc64863ef..ebc272374a 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 51c97ef64e..151597d8cc 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index a740528fb3..93a1afa1be 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/response.go index bd41a807fa..a926467baa 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/utils.go index 0ef6f65095..a104770226 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.json b/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.json index 32620f24d9..00b0291d61 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.tpl.json index 3c027326b5..f6dc002a9d 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-aws-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md index f4270f93bb..2b9d7bdf7b 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts index bc58985991..8c5e916afc 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts index ed9fb65b46..e494b76932 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts index ffc5540116..61ef9f2a15 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index fa5064c6e1..d36cc56c83 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts index 1dd84184e6..434478c164 100644 --- a/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-aws-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/CHANGELOG.md b/packages/cactus-plugin-keychain-azure-kv/CHANGELOG.md index e55f5c70f2..2a217ca5b2 100644 --- a/packages/cactus-plugin-keychain-azure-kv/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-azure-kv/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-azure-kv + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-azure-kv diff --git a/packages/cactus-plugin-keychain-azure-kv/package.json b/packages/cactus-plugin-keychain-azure-kv/package.json index 9688020209..272e066667 100644 --- a/packages/cactus-plugin-keychain-azure-kv/package.json +++ b/packages/cactus-plugin-keychain-azure-kv/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-azure-kv", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "A keychain implementation storing its entries in Azure key vault.", "keywords": [ "Hyperledger", @@ -63,15 +63,15 @@ "dependencies": { "@azure/identity": "4.2.1", "@azure/keyvault-secrets": "4.3.0", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "http-status-codes": "2.1.4", "typescript-optional": "2.0.1" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/request": "2.48.7", diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/README.md index 1a3c5eeca4..3418eaa2d1 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api/openapi.yaml index b2e8fee48b..fe513e72d6 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus - Keychain API - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api_default.go index b5248b3163..dc0a3d684c 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/client.go index 007ab72143..b0b1cca4de 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/configuration.go index a0a8e112f0..008b59eb77 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 6f96fc0388..81fe33a4a3 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 95b90323a9..e109661cbf 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index 0b2da65d5c..ef31c7b97d 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 88dcdfce50..818920d6e3 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index 86d6c8f2b2..94c230cede 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index 5633eb52f6..b8db0a23d7 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 5feb86ffed..512339208d 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index 007b13a9a8..bfbc2d1a1f 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/response.go index 2774a2965c..626bd2891e 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/utils.go index 4314fb4f1b..c5d73582fb 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.json b/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.json index 7d14308113..92adfe407d 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.tpl.json index fbd9aa1633..e51d0c93e1 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-azure-kv/src/main/kotlin/generated/openapi/kotlin-client/README.md index eac34c6aab..72bf6eacf4 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/api.ts index 0213ca7b0b..7a00e4e1f1 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/base.ts index ed9fb65b46..e494b76932 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/common.ts index ffc5540116..61ef9f2a15 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index fa5064c6e1..d36cc56c83 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/index.ts index 1dd84184e6..434478c164 100644 --- a/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-azure-kv/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/CHANGELOG.md b/packages/cactus-plugin-keychain-google-sm/CHANGELOG.md index 25965c72d5..660a39411d 100644 --- a/packages/cactus-plugin-keychain-google-sm/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-google-sm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-google-sm + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-google-sm diff --git a/packages/cactus-plugin-keychain-google-sm/package.json b/packages/cactus-plugin-keychain-google-sm/package.json index a3b6ce60ff..78b899198f 100644 --- a/packages/cactus-plugin-keychain-google-sm/package.json +++ b/packages/cactus-plugin-keychain-google-sm/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-google-sm", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "A keychain implementation storing its entries in Azure key vault.", "keywords": [ "Hyperledger", @@ -57,16 +57,16 @@ }, "dependencies": { "@google-cloud/secret-manager": "5.0.1", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "http-status-codes": "2.1.4", "typescript-optional": "2.0.1", "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/request": "2.48.7", diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/README.md index eb5a4d1c5f..b4aa329cf3 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml index 96f9f4b618..6bb146205d 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus - Keychain API - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api_default.go index 90253ed424..0a30fe6fae 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/client.go index bdcb89e8f0..f46a2d094d 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/configuration.go index 7bf4cdcd68..6a88dac5ba 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 1dcb59786f..81b4d99bf6 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 78ae049db7..0d86a264e9 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index dd8d2bad94..e6044a10a4 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index c6fedccb62..97b529e389 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index ec689e8917..c56f015de7 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index 211d93355d..8b9947c9ba 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 49cc345ea6..32aa3ee859 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index 8625de2c12..b525a3515f 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/response.go index 7677a40e0a..998f9671c6 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/utils.go index 6217c0c1ec..1eed08cc93 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-google-sm/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.json b/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.json index eb89e7fb75..f3978f9202 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.tpl.json index 3d60acec33..ed454e7df0 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-google-sm/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-google-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md index 0130713d1e..0f65cbda95 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-google-sm/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts index 1c928e8051..ca17a0c49c 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts index ed9fb65b46..e494b76932 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts index ffc5540116..61ef9f2a15 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index fa5064c6e1..d36cc56c83 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts index 1dd84184e6..434478c164 100644 --- a/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-google-sm/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/CHANGELOG.md b/packages/cactus-plugin-keychain-memory-wasm/CHANGELOG.md index aaec3c00ac..def52ecc34 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-memory-wasm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-memory-wasm + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-memory-wasm diff --git a/packages/cactus-plugin-keychain-memory-wasm/package.json b/packages/cactus-plugin-keychain-memory-wasm/package.json index ec4315cc01..e5104b35d6 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/package.json +++ b/packages/cactus-plugin-keychain-memory-wasm/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-memory-wasm", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Dummy keychain implementation doing NO encryption and storing everything in-memory. Only suitable for development and testing. Same as the non-wasm version but this one has the backing implementation written in Rust and compiled down to WebAssembly.", "keywords": [ "Hyperledger", @@ -61,9 +61,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "express": "4.21.0", "prom-client": "15.1.3", diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/README.md index 26bbd93249..649fa49aa9 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is d ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api/openapi.yaml index b0a658e7b2..abd92f7c33 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -7,7 +7,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Keychain Memory WASM - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api_default.go index 298510ba35..adacedd67e 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/client.go index c89a323539..2b09e57381 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Keychain Memory WASM API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Keychain Memory WASM API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/configuration.go index 2e4f39b61b..7cb4ee80b3 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index ec0119c6c7..eee66a4b31 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 38303b0c78..7e65660386 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index 5823cdad0c..444613c9d2 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 92e9e67248..0ddabedf89 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index 98cbb9d6a7..f61968744e 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index 22ff2fa49f..5d997c0be6 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index f32ea22a22..083f6a8800 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index f0c5983ae7..539873a2ca 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/response.go index 5ee8571520..c08d1d09b7 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/utils.go index f9beb3c8f0..0ccb2efaca 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory WASM Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.json b/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.json index 4c93a9127c..158a7b8fac 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Keychain Memory WASM", "description": "Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.tpl.json index fb37650077..6c003e8b4b 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Keychain Memory WASM", "description": "Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-memory-wasm/src/main/kotlin/generated/openapi/kotlin-client/README.md index c321293bb4..bbc2c39e06 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is d ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/cactus-plugin-keychain-memory-wasm/Cargo.toml b/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/cactus-plugin-keychain-memory-wasm/Cargo.toml index bf02f1a251..d55ea866a0 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/cactus-plugin-keychain-memory-wasm/Cargo.toml +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/cactus-plugin-keychain-memory-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cactus-plugin-keychain-memory-wasm" -version = "2.0.0-rc.7" +version = "2.0.0" authors = ["Peter Somogyvari "] edition = "2018" diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/generated/openapi/rust-server/Cargo.toml b/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/generated/openapi/rust-server/Cargo.toml index 95c2d40c4f..697d4a44e5 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/generated/openapi/rust-server/Cargo.toml +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/rust/generated/openapi/rust-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openapi_client" -version = "2.0.0-rc.7" +version = "2.0.0" authors = [] description = "Contains/describes the Keychain API types/paths for Hyperledger Cactus." license = "Unlicense" diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/api.ts index 40298e13f2..84cd58b4e1 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/base.ts index e907a36e22..fecd34dedc 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/common.ts index 2d905ba34e..c01eab8580 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index c902c62037..1a3bfd0837 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/index.ts index ce928f7ba9..3cd2080805 100644 --- a/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-memory-wasm/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory WASM * Contains/describes the Hyperledger Cactus Keychain Memory WASM plugin which is designed to help with testing and development and is implemented in Rust instead of Typescript. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/CHANGELOG.md b/packages/cactus-plugin-keychain-memory/CHANGELOG.md index 2a4a3b6f14..36e4a7da26 100644 --- a/packages/cactus-plugin-keychain-memory/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-memory/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-memory + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-memory diff --git a/packages/cactus-plugin-keychain-memory/package.json b/packages/cactus-plugin-keychain-memory/package.json index c57bcef77b..175afa9996 100644 --- a/packages/cactus-plugin-keychain-memory/package.json +++ b/packages/cactus-plugin-keychain-memory/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-memory", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Dummy keychain implementation doing NO encryption and storing everything in-memory. Only suitable for development and testing.", "keywords": [ "Hyperledger", @@ -61,9 +61,9 @@ "dependencies": { "@bufbuild/protobuf": "1.10.0", "@connectrpc/connect": "1.4.0", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "express": "4.21.0", "prom-client": "15.1.3", diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/README.md index cb7b73d67f..966ef5364a 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api/openapi.yaml index 5d958d9c47..56b49f0547 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: 'Hyperledger Cactus Plugin - Keychain Memory ' - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api_default.go index 64ab0032b0..4d2287bc80 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/client.go index 516e14cba2..5db2ce2e2f 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Keychain Memory API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Keychain Memory API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/configuration.go index 3f9cffc727..335715ae82 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index e42c8ad013..655da6e627 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index 824d6e937d..482f97f7b0 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index 8ef17828cd..259172aaa1 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 6a2ae88c27..d54d9d47e2 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index 9f8a96c0c5..a509a526e8 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index d667eb6784..6827435ade 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 8b5427d98f..ca2a910aa1 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index a541fb776e..5fb9d55d3f 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/response.go index e547658e69..e8ac28e861 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/utils.go index d4e621c392..ddb6f82b2d 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-memory/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Keychain Memory Contains/describes the Hyperledger Cacti Keychain Memory plugin. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-memory/src/main/json/openapi.json b/packages/cactus-plugin-keychain-memory/src/main/json/openapi.json index a365a540a1..0c82886a4b 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-memory/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Keychain Memory ", "description": "Contains/describes the Hyperledger Cacti Keychain Memory plugin.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-memory/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-memory/src/main/json/openapi.tpl.json index 63e61e9d65..943a5f9843 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-memory/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Keychain Memory ", "description": "Contains/describes the Hyperledger Cacti Keychain Memory plugin.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-memory/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-memory/src/main/kotlin/generated/openapi/kotlin-client/README.md index 80436d44c9..1aed89212f 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-memory/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/README.md b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/README.md index 85a709b9e5..9399195450 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/README.md +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/README.md @@ -5,7 +5,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_request_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_request_v1_pb.proto index c4244fa177..c81f014ff6 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_request_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_request_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_response_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_response_v1_pb.proto index 2e66ac8f23..511a5ad80e 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_response_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/delete_keychain_entry_response_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_request_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_request_v1_pb.proto index 7f0c91dcdc..1b1421282f 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_request_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_request_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_response_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_response_v1_pb.proto index b991104f7e..772516c70b 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_response_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/get_keychain_entry_response_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_request_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_request_v1_pb.proto index 912f11e431..b869f511fb 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_request_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_request_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_response_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_response_v1_pb.proto index 5f93668f34..7b79bd1d3a 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_response_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/has_keychain_entry_response_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_request_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_request_v1_pb.proto index 43ace8008a..fdf08bb37b 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_request_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_request_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_response_v1_pb.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_response_v1_pb.proto index c4840932f3..09a0ef37c8 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_response_v1_pb.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/models/set_keychain_entry_response_v1_pb.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/services/default_service.proto b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/services/default_service.proto index 0866817d4c..a64171930a 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/services/default_service.proto +++ b/packages/cactus-plugin-keychain-memory/src/main/proto/generated/openapi/services/default_service.proto @@ -3,7 +3,7 @@ Contains/describes the Hyperledger Cacti Keychain Memory plugin. - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_request_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_request_v1_pb_pb.ts index 4592874763..cdb1b6c7d7 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_request_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_request_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_response_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_response_v1_pb_pb.ts index 4d40d48aa5..7a5b815fa4 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_response_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/delete_keychain_entry_response_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_request_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_request_v1_pb_pb.ts index eb9efe84d8..a537b074f3 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_request_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_request_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_response_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_response_v1_pb_pb.ts index c9189ccb8a..4dde5ee5b8 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_response_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/get_keychain_entry_response_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_request_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_request_v1_pb_pb.ts index 582307d689..23aebf715a 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_request_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_request_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_response_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_response_v1_pb_pb.ts index bbdca75768..b24c210c1a 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_response_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/has_keychain_entry_response_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_request_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_request_v1_pb_pb.ts index 46de4798dc..b265118d81 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_request_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_request_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_response_v1_pb_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_response_v1_pb_pb.ts index 133f9fe0d1..ac283fdc2f 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_response_v1_pb_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/models/set_keychain_entry_response_v1_pb_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_connect.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_connect.ts index bbf671da85..2e518890a6 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_connect.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_connect.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_pb.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_pb.ts index dad0c3e780..9a069b85cf 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_pb.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/crpc/services/default_service_pb.ts @@ -3,7 +3,7 @@ // //Contains/describes the Hyperledger Cacti Keychain Memory plugin. // -//The version of the OpenAPI document: 2.0.0-rc.7 +//The version of the OpenAPI document: 2.0.0 // //Generated by OpenAPI Generator: https://openapi-generator.tech diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/api.ts index 3713267a0d..86ab0581ca 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/base.ts index 5947bfeaa6..7aa00c0139 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/common.ts index 060030212b..8f76d8de81 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index ff957e0c6c..319c3d8360 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/index.ts index d841ae84e7..c421b43b56 100644 --- a/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-memory/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Keychain Memory * Contains/describes the Hyperledger Cacti Keychain Memory plugin. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/CHANGELOG.md b/packages/cactus-plugin-keychain-vault/CHANGELOG.md index de441518e6..2c3ff7214c 100644 --- a/packages/cactus-plugin-keychain-vault/CHANGELOG.md +++ b/packages/cactus-plugin-keychain-vault/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-vault + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-keychain-vault diff --git a/packages/cactus-plugin-keychain-vault/package.json b/packages/cactus-plugin-keychain-vault/package.json index 2d9ce28032..05e2611a9b 100644 --- a/packages/cactus-plugin-keychain-vault/package.json +++ b/packages/cactus-plugin-keychain-vault/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-keychain-vault", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "A keychain implementation storing its entries in Hashicorp Vault. Actual logic is implemented in Rust.", "keywords": [ "Hyperledger", @@ -56,9 +56,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "http-status-codes": "2.1.4", "node-vault": "0.9.22", @@ -66,7 +66,7 @@ "typescript-optional": "2.0.1" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.3", "@types/express": "5.0.0", "@types/internal-ip": "4.1.0", diff --git a/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.lock b/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.lock index 35e93ea5a4..23fa93210b 100644 --- a/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.lock +++ b/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.lock @@ -1013,7 +1013,7 @@ checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" [[package]] name = "openapi_client" -version = "2.0.0-rc.7" +version = "2.0.0" dependencies = [ "async-trait", "chrono", diff --git a/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.toml b/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.toml index b6a527a8e0..c4df6c407e 100644 --- a/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.toml +++ b/packages/cactus-plugin-keychain-vault/src/cactus-keychain-vault-server/rust/gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openapi_client" -version = "2.0.0-rc.7" +version = "2.0.0" authors = [] description = "Contains/describes the Keychain API types/paths for Hyperledger Cactus." license = "Unlicense" diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/README.md index 8492aa4adb..5bf0b205a5 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api/openapi.yaml index 5a12a2484a..04c39d1675 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus - Keychain API - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api_default.go index 9f2739d9e3..a95a9ed171 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/client.go index 4fb5cdfbb0..5123b7c8f3 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus - Keychain API API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/configuration.go index a424a2afa3..0005c7dfab 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go index 9fd4a856b7..407306d3b7 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go index c438078439..a92b38ea83 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_delete_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go index b1e7a094c8..bb2104b40a 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go index 5cbc93a4c6..d18cad7db4 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_get_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go index d9c8d7aa9a..6656755324 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go index da184de198..babe8dfa70 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_has_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go index 5fe0afe46c..c30648c4e6 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go index c28afc0d3b..7a0df00846 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/model_set_keychain_entry_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/response.go index ec9872580a..99032fc9f7 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/utils.go index e1b792413e..635313d72e 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-keychain-vault/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus - Keychain API Contains/describes the Keychain API types/paths for Hyperledger Cactus. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-keychain-vault/src/main/json/openapi.json b/packages/cactus-plugin-keychain-vault/src/main/json/openapi.json index 6d854f24b1..ffa891158d 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/json/openapi.json +++ b/packages/cactus-plugin-keychain-vault/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-vault/src/main/json/openapi.tpl.json b/packages/cactus-plugin-keychain-vault/src/main/json/openapi.tpl.json index 928c0ba749..2cf795862c 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-keychain-vault/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus - Keychain API", "description": "Contains/describes the Keychain API types/paths for Hyperledger Cactus.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-keychain-vault/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-keychain-vault/src/main/kotlin/generated/openapi/kotlin-client/README.md index 7c428f5274..eb733ea3b4 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-keychain-vault/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Contains/describes the Keychain API types/paths for Hyperledger Cactus. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/api.ts index a0f791cd22..3a5a22963f 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/base.ts index ed9fb65b46..e494b76932 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/common.ts index ffc5540116..61ef9f2a15 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index fa5064c6e1..d36cc56c83 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/index.ts index 1dd84184e6..434478c164 100644 --- a/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-keychain-vault/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus - Keychain API * Contains/describes the Keychain API types/paths for Hyperledger Cactus. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-aries/CHANGELOG.md index aa02b26dd9..3df45a3897 100644 --- a/packages/cactus-plugin-ledger-connector-aries/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-aries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-aries + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-aries diff --git a/packages/cactus-plugin-ledger-connector-aries/package.json b/packages/cactus-plugin-ledger-connector-aries/package.json index d9718c1b03..35cce6c99f 100644 --- a/packages/cactus-plugin-ledger-connector-aries/package.json +++ b/packages/cactus-plugin-ledger-connector-aries/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-aries", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to an Indy ledger and Aries agents.", "keywords": [ "Hyperledger", @@ -64,16 +64,16 @@ "@aries-framework/node": "0.5.0-alpha.71", "@hyperledger/anoncreds-nodejs": "0.2.0", "@hyperledger/aries-askar-nodejs": "0.2.0", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "@hyperledger/indy-vdr-nodejs": "0.2.0", "axios": "1.7.7", "rxjs": "7.8.1", "socket.io-client-fixed-types": "4.5.4" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/uuid": "10.0.0", diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/README.md index 46b0852f66..7f56c642b7 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can communicate with other Aries agents and Cacti Aries connectors ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api/openapi.yaml index f4a518489c..d328a89bcf 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector Aries - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api_default.go index 7d9955a0c0..70e73465d3 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/client.go index b563e53985..c23e2b614a 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Aries API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Aries API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/configuration.go index ea5235f514..1bcb0b6de8 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_request.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_request.go index 40755e7366..351a062253 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_response.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_response.go index 82e822567a..ef82d022e5 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_accept_invitation_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connection_record_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connection_record_v1.go index 9b8def906e..8587cee739 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connection_record_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connection_record_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connections_filter_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connections_filter_v1.go index 9de2efbf76..7d89b9f48d 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connections_filter_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_agent_connections_filter_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_config_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_config_v1.go index c77d16a994..5d8c3c65a0 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_config_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_config_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1.go index 7ef380b196..ca57f03aa6 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1_wallet_config.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1_wallet_config.go index c01a04176d..d7ea47936c 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1_wallet_config.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_agent_summary_v1_wallet_config.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_indy_vdr_pool_config_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_indy_vdr_pool_config_v1.go index cdb1d5eb4c..20338a0194 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_indy_vdr_pool_config_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_indy_vdr_pool_config_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_proof_exchange_record_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_proof_exchange_record_v1.go index 3e1797e940..102301fddf 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_proof_exchange_record_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_aries_proof_exchange_record_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_accept_policy_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_accept_policy_v1.go index 0216ad4f29..e158fc3de9 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_accept_policy_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_accept_policy_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_proof_request_attribute_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_proof_request_attribute_v1.go index c2da32e4ce..103a0d0342 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_proof_request_attribute_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_cacti_proof_request_attribute_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_request.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_request.go index e6295cd8ef..2ff2dee62d 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_response.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_response.go index 05a5d398b6..d548557f31 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_create_new_connection_invitation_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_error_exception_v1_response.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_error_exception_v1_response.go index 2d4a97e815..23e7e73de2 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_error_exception_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_error_exception_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_get_connections_v1_request.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_get_connections_v1_request.go index ab1790e477..5d53af7c75 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_get_connections_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_get_connections_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_request_proof_v1_request.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_request_proof_v1_request.go index 706f740806..76c3dce38f 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_request_proof_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_request_proof_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_options_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_options_v1.go index 3a27509498..ef5ed11fde 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_progress_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_progress_v1.go index 8d86b6940c..ea6927fa23 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_progress_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_progress_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_v1.go index afb3a5ad20..a8c795ca6f 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_connection_state_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_options_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_options_v1.go index 09dcbb71cf..1ddd0e1423 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_progress_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_progress_v1.go index 71696e4383..19238bd81c 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_progress_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_progress_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_v1.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_v1.go index 06640e6d02..79bbb65237 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_v1.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/model_watch_proof_state_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/response.go index d90c57d8dc..e6b7f7ca60 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/utils.go index acefcdfd96..bbd5cc7bcf 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Aries Can communicate with other Aries agents and Cacti Aries connectors -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.json index 55955d8448..a0dce24b94 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Aries", "description": "Can communicate with other Aries agents and Cacti Aries connectors", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.tpl.json index 55955d8448..a0dce24b94 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Aries", "description": "Can communicate with other Aries agents and Cacti Aries connectors", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/api.ts index 4cb6e7f702..f3bea71196 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/base.ts index 110f17d55c..f21b4cd6cb 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/common.ts index 2da37510a7..1a9fa58445 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 3713e5ea98..92dbe5e8ef 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/index.ts index 8bef978a7d..ac22566a76 100644 --- a/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-aries/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Aries * Can communicate with other Aries agents and Cacti Aries connectors * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-besu/CHANGELOG.md index 5fb86ac387..7aa9cf59b4 100644 --- a/packages/cactus-plugin-ledger-connector-besu/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-besu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-besu + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-besu diff --git a/packages/cactus-plugin-ledger-connector-besu/package.json b/packages/cactus-plugin-ledger-connector-besu/package.json index 60f2d5d847..432992f5c7 100644 --- a/packages/cactus-plugin-ledger-connector-besu/package.json +++ b/packages/cactus-plugin-ledger-connector-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-besu", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to a Besu ledger.", "keywords": [ "Hyperledger", @@ -60,9 +60,9 @@ }, "dependencies": { "@grpc/grpc-js": "1.11.3", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "express": "4.21.0", "google-protobuf": "3.21.4", @@ -83,8 +83,8 @@ "web3js-quorum": "22.4.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@openapitools/openapi-generator-cli": "2.7.0", "@types/benchmark": "2.1.5", "@types/body-parser": "1.19.4", diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/README.md index d057fe28e5..b251cc4c7d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Besu ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml index 9a85d2576f..d03386aefd 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Besu - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api_default.go index cb1ef69e37..fc28f440ca 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/client.go index 7246721c38..4ca816dfc2 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Besu API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Besu API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/configuration.go index c8a9310b49..4215ffb7fc 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_private_transaction_config.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_private_transaction_config.go index ea211060a1..05ed0fda11 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_private_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_private_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config.go index 912adde706..54aa540c08 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config_to.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config_to.go index 7a37def6f2..720ee5d532 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config_to.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_besu_transaction_config_to.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_consistency_strategy.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_consistency_strategy.go index fe04753c59..7f9e2f4169 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_consistency_strategy.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_consistency_strategy.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_no_keychain_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_no_keychain_v1_request.go index cf44108e60..f53c7825c4 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_no_keychain_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_no_keychain_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_request.go index 0bb61cc61a..72087f01d6 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_response.go index a845336b90..96b34a7f9c 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_deploy_contract_solidity_bytecode_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go index b12bbbbafd..d11b662a4d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_block.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_block.go index dc46807dbf..e6a8903f7b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_block.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_block.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_log.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_log.go index f1a9edbbcd..f6cde55ecc 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_log.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_log.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_transaction.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_transaction.go index 734ef3ba34..84bd4f1a1b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_transaction.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_evm_transaction.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_request.go index 0057368796..d7f01c3de9 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_response.go index 232e1f1f58..2bd334e575 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_balance_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_request.go index 3aefcf2560..7d6b793cd1 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_response.go index dd9188c302..255c2037c9 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_besu_record_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_request.go index 3b22fb0c2c..52286368e3 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_response.go index 8cccf45368..2226921398 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_block_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_request.go index 3a8f27b8ff..9056636330 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_response.go index 79a6c9ab50..5f5e352359 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_past_logs_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_request.go index f85deee782..d4e818955d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_response.go index 6011ed2fd6..792ab10155 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_get_transaction_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go index 63ee2e0657..ce38203b5b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index a18d0cb914..068af36056 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_receipt_type.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_receipt_type.go index 178565d8a7..217457db12 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_receipt_type.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_receipt_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_request.go index b03a9a2015..c4155ef08b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 36a7350231..77caa76749 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_request.go index e7cf6c1371..e67ab4ca40 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_response.go index 04becdf0a0..0624911e42 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_sign_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go index 8774dd2cdb..910937984b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go index 9d4bc0ed10..9447cbd801 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go index 8cfb1947a7..6db1cb0eb8 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go index df245c1594..6a4ad4f235 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index e85ac4fa4f..5a9381e73e 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go index 99bf8719d6..df071773a4 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_request.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_request.go index 7a220b9899..aa70fd6250 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header.go index 9be4fcd2a5..210b70846f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header_timestamp.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header_timestamp.go index d5e28ab5eb..f9fc7a8ea7 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header_timestamp.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_block_header_timestamp.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 3612900dc4..38054adfcb 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index eae01ef363..0b1dd9c930 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index e4d80a33fe..1abe727538 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 3fdcd65ac8..968632274e 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 725222354b..4ed8458935 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index cfd0e256b2..2677bcb983 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/response.go index 99b8fc01f9..76c8e41a0f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/utils.go index 5d8763eb64..675939c802 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Besu Can perform basic tasks on a Besu ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.json index ba517831a4..c33949faef 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Besu", "description": "Can perform basic tasks on a Besu ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.tpl.json index ba517831a4..c33949faef 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Besu", "description": "Can perform basic tasks on a Besu ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/README.md b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/README.md index ae14de7ec6..e38495bf47 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/README.md +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Besu ledger ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_private_transaction_config_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_private_transaction_config_pb.proto index ed8d50eae5..2f1aa44a82 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_private_transaction_config_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_private_transaction_config_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_pb.proto index 03d3ec5a5f..f344e70f58 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_to_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_to_pb.proto index 43b3060894..a524674a6b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_to_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/besu_transaction_config_to_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/consistency_strategy_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/consistency_strategy_pb.proto index 6d43bf26f0..b097341592 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/consistency_strategy_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/consistency_strategy_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_no_keychain_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_no_keychain_v1_request_pb.proto index f5c163fe21..76b1407497 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_no_keychain_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_no_keychain_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_request_pb.proto index 3e3673da3d..7d02655c1d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_response_pb.proto index 8a263c1cc0..a7a6a01b1d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/deploy_contract_solidity_bytecode_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/eth_contract_invocation_type_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/eth_contract_invocation_type_pb.proto index 89de7c9fe7..a347426425 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/eth_contract_invocation_type_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/eth_contract_invocation_type_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_block_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_block_pb.proto index 8fe33cddb3..964dd5f80f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_block_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_block_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_log_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_log_pb.proto index 59a626fb1a..e435c4983c 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_log_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_log_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_transaction_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_transaction_pb.proto index db41f61dcc..ce446aa45f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_transaction_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/evm_transaction_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_request_pb.proto index aa53651852..43b4f40df8 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_response_pb.proto index d2893ecb26..2fd88d70a6 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_balance_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_request_pb.proto index 9ea4b51f54..bb91d66ae2 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_response_pb.proto index 1fe301c422..de2d7d8957 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_besu_record_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_request_pb.proto index 860ca25bed..1dbd081e9d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_response_pb.proto index 8b05a1a051..c7f06b14ba 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_block_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_request_pb.proto index b2e7804d13..b672c4fb50 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_response_pb.proto index a58be67fb5..812290f318 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_past_logs_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_request_pb.proto index 3e081eabc1..f589371e8e 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_response_pb.proto index da04b4c4aa..3a7d228d49 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/get_transaction_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_request_pb.proto index 51def0f20f..48ae5f55c5 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_response_pb.proto index c7f61f1dbe..22c88f6326 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/invoke_contract_v1_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/receipt_type_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/receipt_type_pb.proto index f2821886b6..26c0a392d9 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/receipt_type_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/receipt_type_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_request_pb.proto index 555a336531..89e19e17d6 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_response_pb.proto index 96322d1aa3..60b79b217b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/run_transaction_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_request_pb.proto index 3a7fc6b405..683024811d 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_response_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_response_pb.proto index f3fb6bbe35..b00c411d46 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_response_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/sign_transaction_response_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_compiler_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_compiler_pb.proto index 73dc9406a3..e447cecaac 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_compiler_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_compiler_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_creation_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_creation_pb.proto index af8a6e0f36..b5073addd8 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_creation_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_creation_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_pb.proto index 1a7cdb1b27..bf93685737 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_gas_estimates_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_pb.proto index b4fb15178d..dac8dc88b2 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/solidity_contract_json_artifact_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_pb.proto index cf8537bdc0..62c4c17e5b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_progress_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_progress_pb.proto index eef1b5c45c..af3cdf8c2b 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_progress_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_progress_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_request_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_request_pb.proto index 09282c8873..d95346c7bd 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_request_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/watch_blocks_v1_request_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_pb.proto index f78765d0bd..dd2d55351f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_timestamp_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_timestamp_pb.proto index a511758e84..e4782e4d67 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_timestamp_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_block_header_timestamp_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_cactus_keychain_ref_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_cactus_keychain_ref_pb.proto index 375108d341..de6ae7a1e7 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_cactus_keychain_ref_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_cactus_keychain_ref_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_none_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_none_pb.proto index 7194b20cd8..0b1a400338 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_none_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_none_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_pb.proto index b9d18b7a5c..3ecf095691 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_private_key_hex_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_private_key_hex_pb.proto index b5d5023fa7..43649b5e91 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_private_key_hex_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_private_key_hex_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_type_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_type_pb.proto index c370c3d924..b3e6c468eb 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_type_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_signing_credential_type_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_transaction_receipt_pb.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_transaction_receipt_pb.proto index cd533ac843..b3e7692d10 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_transaction_receipt_pb.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/models/web3_transaction_receipt_pb.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/services/default_service.proto b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/services/default_service.proto index 40d15dbd57..65405d44e2 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/services/default_service.proto +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/proto/generated/openapi/services/default_service.proto @@ -3,7 +3,7 @@ Can perform basic tasks on a Besu ledger - The version of the OpenAPI document: 2.0.0-rc.7 + The version of the OpenAPI document: 2.0.0 Generated by OpenAPI Generator: https://openapi-generator.tech */ diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts index 153dbdca46..3befbde4ca 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts index 65d1195890..296ff3bc90 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts index c85b5986d5..15911e772f 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 8166b99fa4..3954e5b8dd 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts index ae57cb693b..05d45af6ea 100644 --- a/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-besu/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Besu * Can perform basic tasks on a Besu ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-cdl/CHANGELOG.md index 6d6d60db92..a829523264 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-cdl/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-cdl + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-cdl diff --git a/packages/cactus-plugin-ledger-connector-cdl/package.json b/packages/cactus-plugin-ledger-connector-cdl/package.json index 244318ff7e..0c7cb6520d 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/package.json +++ b/packages/cactus-plugin-ledger-connector-cdl/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-cdl", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cacti nodes to connect to Fujitsu CDL.", "keywords": [ "Hyperledger", @@ -55,9 +55,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "sanitize-html": "2.12.1" }, diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/README.md index be7f9e12c8..1392c70841 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on Fujitsu CDL service. ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api/openapi.yaml index 5951de8948..c26aa8e2ac 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector CDL - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api_default.go index bda5d53d8b..0ef4d22754 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/client.go index ef140bc21e..18091a1dd4 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector CDL API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector CDL API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/configuration.go index e0c1ff44a5..3f1ff1bfb1 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_access_token_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_access_token_v1.go index 2d285695ca..af3cac4a0f 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_access_token_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_access_token_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_subscription_key_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_subscription_key_v1.go index 6503dee494..9a827232bf 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_subscription_key_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_subscription_key_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_v1.go index f33b6972ad..0e138490f0 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_auth_info_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_cdl_common_response_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_cdl_common_response_v1.go index a44ac9764f..8962a6576f 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_cdl_common_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_cdl_common_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 6cd1360f6f..57b409209d 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_event_lineage_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_event_lineage_v1.go index 98af63fc7f..cfe62669f2 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_event_lineage_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_event_lineage_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_gateway_configuration_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_gateway_configuration_v1.go index 6588425d38..24d1062c63 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_gateway_configuration_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_gateway_configuration_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_option_direction_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_option_direction_v1.go index d59bd5caf8..05095f66fd 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_option_direction_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_option_direction_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_request_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_request_v1.go index a70725b9f3..74841a6097 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_response_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_response_v1.go index cdcc180b75..ed045ce587 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_get_lineage_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_request_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_request_v1.go index bcca762788..8ce4cc3b2d 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_v1_response.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_v1_response.go index 80d563547f..55deba89ff 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_register_history_data_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_request_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_request_v1.go index 8adafb60b0..f1d2168274 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_response_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_response_v1.go index 2d4408b0ef..8c22e09717 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_type_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_type_v1.go index da79ec50cb..4b60266125 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_type_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_search_lineage_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_trail_event_details_v1.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_trail_event_details_v1.go index ae3da420b0..6c5f886bed 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_trail_event_details_v1.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/model_trail_event_details_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/response.go index aefd59afbe..958b632a41 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/utils.go index e940cbd622..3a1b7b9cb8 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector CDL Can perform basic tasks on Fujitsu CDL service. -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.json index 2ca29f0e13..b5bbfae404 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector CDL", "description": "Can perform basic tasks on Fujitsu CDL service.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.tpl.json index 2ca29f0e13..b5bbfae404 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector CDL", "description": "Can perform basic tasks on Fujitsu CDL service.", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/api.ts index a6ed3e9447..dd659e302d 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/base.ts index c609610d94..ec44266b87 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/common.ts index 846d81060e..254b42f09e 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index a61e614298..0acd10ee1c 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/index.ts index a33e9e21c2..465bfb346f 100644 --- a/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-cdl/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector CDL * Can perform basic tasks on Fujitsu CDL service. * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-corda/CHANGELOG.md index 3d53425a99..e0edb80114 100644 --- a/packages/cactus-plugin-ledger-connector-corda/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-corda/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-corda + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-corda diff --git a/packages/cactus-plugin-ledger-connector-corda/package.json b/packages/cactus-plugin-ledger-connector-corda/package.json index 9388a6e350..4f819810df 100644 --- a/packages/cactus-plugin-ledger-connector-corda/package.json +++ b/packages/cactus-plugin-ledger-connector-corda/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-corda", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to a Corda ledger.", "keywords": [ "Hyperledger", @@ -57,9 +57,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "express": "4.21.0", "express-openapi-validator": "5.2.0", @@ -75,7 +75,7 @@ "urlcat": "3.1.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/multer": "1.4.7", diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/README.md b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/README.md index 21f46459ac..54438b2bac 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/README.md +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/README.md @@ -10,12 +10,12 @@ By default a [`pom.xml`](pom.xml) file will be generated. If you specified `grad To build the project using maven, run: ```bash -mvn package && java -jar target/cactus-connector-corda-server-2.0.0-rc.7.jar +mvn package && java -jar target/cactus-connector-corda-server-2.0.0.jar ``` To build the project using gradle, run: ```bash -gradle build && java -jar build/libs/cactus-connector-corda-server-2.0.0-rc.7.jar +gradle build && java -jar build/libs/cactus-connector-corda-server-2.0.0.jar ``` If all builds successfully, the server should run on [http://localhost:8080/](http://localhost:8080/) diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/gradle.properties b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/gradle.properties index 75b185d2d1..f1859671a1 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/gradle.properties +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/gradle.properties @@ -1 +1 @@ -version = 2.0.0-rc.7 +version = 2.0.0 diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/src/main/resources/openapi.yaml b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/src/main/resources/openapi.yaml index b528e28193..41948d4a55 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/src/main/resources/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/src/main/resources/openapi.yaml @@ -4,8 +4,8 @@ info: license: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html - title: Hyperledger Cactus Plugin - Connector Corda - version: v2.0.0-alpha.2 + title: Hyperledger Cacti Plugin - Connector Corda + version: v2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/openapi-generator-config.yaml b/packages/cactus-plugin-ledger-connector-corda/src/main-server/openapi-generator-config.yaml index 0625878544..b15803ccf9 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/openapi-generator-config.yaml +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/openapi-generator-config.yaml @@ -6,7 +6,7 @@ additionalProperties: artifactId: cactus-connector-corda-server # TODO: Make sure this automatically gets bumped during releases so that it # remains in sync with the package.json version number. - artifactVersion: 2.0.0-rc.7 + artifactVersion: 2.0.0 apiSuffix: PluginLedgerConnectorCorda basePackage: org.hyperledger.cactus.plugin.ledger.connector.corda.server packageName: org.hyperledger.cactus.plugin.ledger.connector.corda.server diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main-server/start-app.sh b/packages/cactus-plugin-ledger-connector-corda/src/main-server/start-app.sh index 6f2c3c14bf..11cf1d4a1f 100755 --- a/packages/cactus-plugin-ledger-connector-corda/src/main-server/start-app.sh +++ b/packages/cactus-plugin-ledger-connector-corda/src/main-server/start-app.sh @@ -13,4 +13,4 @@ EXTRA_JVM_ARGS="--add-opens java.base/java.util=ALL-UNNAMED ${EXTRA_JVM_ARGS}" EXTRA_JVM_ARGS="--add-opens java.base/java.time=ALL-UNNAMED ${EXTRA_JVM_ARGS}" EXTRA_JVM_ARGS="--add-opens java.base/java.io=ALL-UNNAMED ${EXTRA_JVM_ARGS}" -for i in 1 2 3; do java $EXTRA_JVM_ARGS -jar ${APP}/kotlin-spring/build/libs/cactus-connector-corda-server-2.0.0-rc.7.jar && break || sleep 5; done +for i in 1 2 3; do java $EXTRA_JVM_ARGS -jar ${APP}/kotlin-spring/build/libs/cactus-connector-corda-server-2.0.0.jar && break || sleep 5; done diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/README.md index f89365225d..3098f7a864 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Corda ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api/openapi.yaml index 31e3afc49f..7454312251 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector Corda - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api_default.go index fc8b4e50e3..f9461f232b 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/client.go index b76502e91a..1af87214ec 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Corda API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Corda API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/configuration.go index 7206271804..1826de4bb5 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_request.go index df7a373316..de5a31ce65 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_response.go index 2a98ef8536..7afed0f8d6 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_clear_monitor_transactions_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_node_ssh_credentials.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_node_ssh_credentials.go index a13529b7dd..fac71d9912 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_node_ssh_credentials.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_node_ssh_credentials.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_rpc_credentials.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_rpc_credentials.go index 48be880adb..bd3a6ff357 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_rpc_credentials.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_rpc_credentials.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_x500_name.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_x500_name.go index 306cc4ee22..9e996a773f 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_x500_name.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_corda_x500_name.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_deployment_config.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_deployment_config.go index 881c4d2916..0aa8f03c1c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_deployment_config.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_deployment_config.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_info.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_info.go index d60159aff2..0109948bc5 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_info.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cordapp_info.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cpiidv1.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cpiidv1.go index bb6ac3f21e..c86b864433 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cpiidv1.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_cpiidv1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_bad_request_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_bad_request_v1_response.go index 928a991b17..de2f2a4421 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_bad_request_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_bad_request_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_success_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_success_v1_response.go index d5287fb619..fa3879280f 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_success_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_success_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_v1_request.go index ea20abdfb6..63f8287028 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_deploy_contract_jars_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_request.go index 85cb733562..506b24ffb2 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_response.go index 03ae9e2e99..53041ac7c1 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_diagnose_node_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_invocation_type.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_invocation_type.go index a26f9bf73e..f7c5250aff 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses.go index 33931a09be..98fe3fd575 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses_flow_status_responses_inner.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses_flow_status_responses_inner.go index 9aa2344405..71cb992f4d 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses_flow_status_responses_inner.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_status_v1_responses_flow_status_responses_inner.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_v1_error.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_v1_error.go index d124b0b689..7515d556be 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_v1_error.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_flow_v1_error.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_request.go index ec003ee05c..4d0badd975 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_response.go index fd413a0d6f..419bdb1cc2 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_flow_cid_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_request.go index 95529144fe..3bd4235098 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response.go index 49671cfa74..77029cb2ec 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response_tx_inner.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response_tx_inner.go index 1db2ead1cf..6b729b133c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response_tx_inner.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_get_monitor_transactions_v1_response_tx_inner.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go index cf89b240fa..54a5de9f32 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 62ec41fae8..aa84a6cad9 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jar_file.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jar_file.go index e1f7f80450..f543137f70 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jar_file.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jar_file.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_object.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_object.go index 6c98dd4d2f..e1fb00ea7b 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_object.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_object.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type.go index 11d01ecd53..03441a4a7d 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type_kind.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type_kind.go index bca7d3cf92..d26dbe6d3c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type_kind.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_jvm_type_kind.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_request.go index 751a917ee6..5bb9051ea9 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response.go index 50a3dd41a6..1bf3df3546 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner.go index 8d11f87e6c..0ecd1424ea 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner_cpks_inner.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner_cpks_inner.go index 091cca8b02..73c65995fd 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner_cpks_inner.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_cpi_v1_response_cpis_inner_cpks_inner.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_request.go index 8102c84099..be3694c05d 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_response.go index e88b73eecf..76a46fded8 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_list_flows_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_network_host_and_port.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_network_host_and_port.go index 83aa18081e..f08b35301b 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_network_host_and_port.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_network_host_and_port.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_diagnostic_info.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_diagnostic_info.go index 93be84390e..469ca11e4a 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_diagnostic_info.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_diagnostic_info.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_info.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_info.go index 8d785192c5..b50af1940e 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_info.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_node_info.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_party.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_party.go index 9a4a5c556d..b965654ddf 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_party.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_party.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_public_key.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_public_key.go index 6dabffc7df..7b051a3f47 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_public_key.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_public_key.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_sha256.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_sha256.go index 204e2ca4a1..4ad814c83e 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_sha256.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_sha256.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request.go index 879c49a83b..046e28a60e 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request_request_body.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request_request_body.go index d8dd56e652..8fe0b48559 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request_request_body.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_request_request_body.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_response.go index da8933dcc5..c528c5c7ff 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_flow_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_request.go index 95ed21c920..607261c8bc 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_response.go index a76ee3b16a..e393166ed7 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_start_monitor_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_request.go index 38067cfed2..cfad93d523 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_response.go index fb68a18211..b2dd5b0cb4 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_stop_monitor_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_vault_query_v1_request.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_vault_query_v1_request.go index 0045f8e602..78f50f55ab 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_vault_query_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_vault_query_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_x500_principal.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_x500_principal.go index 7131431c54..f9d5f423da 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_x500_principal.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/model_x500_principal.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/response.go index 958b2a29ff..ba91bdfe9d 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/utils.go index a336aa9925..b326463cf7 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Corda Can perform basic tasks on a Corda ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.json index 7c6194239d..15887a7d37 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Corda", "description": "Can perform basic tasks on a Corda ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.tpl.json index 7c6194239d..15887a7d37 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Corda", "description": "Can perform basic tasks on a Corda ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-ledger-connector-corda/src/main/kotlin/generated/openapi/kotlin-client/README.md index f6d266c2f3..669b9777fb 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Corda ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/api.ts index 5d8ed6731d..4757235f2c 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/base.ts index 23279ce261..ff21ac88e8 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/common.ts index 4a510ad851..2bdfd744d4 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 06ba2135f3..f7e84ee975 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/index.ts index f8aeebfbfc..c73ebc377b 100644 --- a/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-corda/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Corda * Can perform basic tasks on a Corda ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-ethereum/CHANGELOG.md index 69d2c78955..44d3e80a4d 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-ethereum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-ethereum + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-ethereum diff --git a/packages/cactus-plugin-ledger-connector-ethereum/package.json b/packages/cactus-plugin-ledger-connector-ethereum/package.json index 38546e7d0b..4c1b066f4f 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/package.json +++ b/packages/cactus-plugin-ledger-connector-ethereum/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-ethereum", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to a Ethereum ledger.", "keywords": [ "Hyperledger", @@ -68,9 +68,9 @@ "dependencies": { "@ethereumjs/common": "4.0.0", "@ethereumjs/tx": "5.0.0", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "ethers": "6.8.1", "express": "4.21.0", @@ -87,9 +87,9 @@ "web3-eth-contract": "4.2.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-geth-ledger": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-geth-ledger": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "@types/js-yaml": "4.0.5", diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/README.md index 03f2743c69..76144559bf 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Ethereum ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml index c1c3ad39d3..71b75f6713 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector Ethereum - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api_default.go index 632dcf73ed..1b81b80a0f 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/client.go index bab36e683d..965bbfdeb1 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Ethereum API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Ethereum API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/configuration.go index b42db6bb9d..2850edb5b3 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json.go index 4a0e138792..ce98ea8062 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json_definition.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json_definition.go index 8619cea464..0205dd4915 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json_definition.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_json_definition.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_keychain_definition.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_keychain_definition.go index aa81b937b1..9500551e31 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_keychain_definition.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_contract_keychain_definition.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go index 91735f88b2..36d0aa4333 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request_contract.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request_contract.go index b342ba1bd2..bcad0e3fba 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request_contract.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request_contract.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deployed_contract_json_definition.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deployed_contract_json_definition.go index 6fa05f27a3..2c02e57866 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deployed_contract_json_definition.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_deployed_contract_json_definition.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index bd52a24678..0eb8c12243 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go index 59fcb4cf32..0656e89d13 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_web3_method.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_web3_method.go index e1134cda3a..e2c87b632a 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_web3_method.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_web3_method.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_ethereum_transaction_config.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_ethereum_transaction_config.go index 098faa1702..f486c18162 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_ethereum_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_ethereum_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config.go index 6b042f1957..c552497ee9 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_eip1559.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_eip1559.go index e3feee4fe8..688c0e1c50 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_eip1559.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_eip1559.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_legacy.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_legacy.go index 97b8ee30cb..db8f0f74b1 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_legacy.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_gas_transaction_config_legacy.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go index a987fe1c0f..04e988d601 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request_contract.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request_contract.go index 73a15cecb0..4567300205 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request_contract.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request_contract.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 49a1923cb3..7bdeeb8b7a 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_request.go index 69a304e4bc..e491e14883 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_response.go index 2951b59f95..210460657b 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_request.go index d0b709dfa0..f93a6b035b 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_response.go index bbc941bdae..1761d270cf 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_invoke_raw_web3_eth_method_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_request.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_request.go index 00a8be1750..817a36aa93 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index cbd6ebfb78..20139e59c9 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index 2ef9bdf67e..6f5c051d7b 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data.go index adf97bc04f..85cb4965cd 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data_timestamp.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data_timestamp.go index 6a2c9ec3f7..0f25021724 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data_timestamp.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_block_data_timestamp.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go index 0b26ebdc16..680623e540 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go index e5e48edca2..c13c238c2f 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_block_header.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_block_header.go index 7914a945d5..2c73f005e2 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_block_header.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_block_header.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 8944afaf17..6c05c581ef 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cacti_keychain_ref.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cacti_keychain_ref.go index c00d454308..6b1fe58120 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cacti_keychain_ref.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cacti_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_geth_keychain_password.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_geth_keychain_password.go index 2192b49b66..1c0cc635d7 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_geth_keychain_password.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_geth_keychain_password.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 512d29e64a..b2980892fa 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index 5bec0015f8..8c16b9c519 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 382c7bbf29..59e7925113 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction.go index 78b211b048..f36a6e399a 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index b9593bdd11..1f28165b25 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/response.go index 4389d39552..989dfb23db 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/utils.go index 3612a03319..e743778a46 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Ethereum Can perform basic tasks on a Ethereum ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.json index 4e78302713..a514e73364 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Ethereum", "description": "Can perform basic tasks on a Ethereum ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.tpl.json index 4e78302713..a514e73364 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Ethereum", "description": "Can perform basic tasks on a Ethereum ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts index 752408e2b7..b2b07765ec 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts index 5c718c7f51..2acd0fa120 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts index 6783b95296..1564e9a48f 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index ff613322f0..74f961d1d5 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts index 065c5cf098..36fb8b40a4 100644 --- a/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Ethereum * Can perform basic tasks on a Ethereum ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-fabric/CHANGELOG.md index bf9a1813e4..c96e637050 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-fabric/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-fabric + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-fabric diff --git a/packages/cactus-plugin-ledger-connector-fabric/package.json b/packages/cactus-plugin-ledger-connector-fabric/package.json index ce0f387942..d991b50033 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/package.json +++ b/packages/cactus-plugin-ledger-connector-fabric/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-fabric", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to a Fabric ledger.", "keywords": [ "Hyperledger", @@ -57,9 +57,9 @@ }, "dependencies": { "@fidm/x509": "1.2.1", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "bl": "6.0.16", "bn.js": "4.12.0", @@ -92,8 +92,8 @@ "ws-identity-client": "1.0.2" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/bn.js": "5.1.0", "@types/body-parser": "1.19.4", "@types/elliptic": "6.4.16", diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/README.md index 4f8196b946..cb335cd9c6 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a fabric ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml index 741142de44..1f6abb3855 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Fabric - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api_default.go index d43bae834b..2b8bdb2e4b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/client.go index e5760e449d..ad595f5be7 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Fabric API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Fabric API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/configuration.go index 074ff8f891..77272bb122 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_event_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_event_v1.go index 92678fdd63..27bb5e699b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_event_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_event_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_response_v1.go index 66a370c602..aed93ffd47 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_full_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transaction_event_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transaction_event_v1.go index 09a411ea0a..940233337e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transaction_event_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transaction_event_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transactions_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transactions_response_v1.go index b2d6a7ca3c..731b6ede57 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transactions_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_cacti_block_transactions_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_language_runtime.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_language_runtime.go index a273be55c7..a690306442 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_language_runtime.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_language_runtime.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_life_cycle_command_responses.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_life_cycle_command_responses.go index deae8b1d70..eee183d77c 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_life_cycle_command_responses.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_life_cycle_command_responses.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_programming_language.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_programming_language.go index 4bc179fd25..210aabd469 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_programming_language.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_chain_code_programming_language.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile.go index c69a4311ce..aeea5b0376 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile_client.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile_client.go index 2b84680696..e83d27388e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile_client.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_connection_profile_client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_default_event_handler_strategy.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_default_event_handler_strategy.go index f8dc625bf5..b92399345c 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_default_event_handler_strategy.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_default_event_handler_strategy.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_501_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_501_response.go index b070c2b6d0..07884fff01 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_501_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_501_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request.go index 58587ddb14..dc212f9132 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request_constructor_args.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request_constructor_args.go index 63775696e9..71719ff9d8 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request_constructor_args.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_request_constructor_args.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_response.go index 5d3a99d4ce..9ace48270b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_go_source_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go index 2c3217c8a9..106c6ae254 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go index 606b0293a6..da8396c88e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_org_fabric2x.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_org_fabric2x.go index bbaa919323..08606d8417 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_org_fabric2x.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_org_fabric2x.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_organization.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_organization.go index c53e912664..e193d1cfa8 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_organization.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_deployment_target_organization.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 4751b02c50..613a346aa4 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_certificate_identity_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_certificate_identity_v1.go index 2e87b96d07..93ba43f152 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_certificate_identity_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_certificate_identity_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_contract_invocation_type.go index e705e9ba71..ac8a13206c 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential.go index 0cbe2b5f58..4d39ed5aa6 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential_type.go index 6fdf940f5e..95bdc1d348 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_x509_certificate_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_x509_certificate_v1.go index f443376bd0..f23d35549e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_x509_certificate_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_fabric_x509_certificate_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_file_base64.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_file_base64.go index 72cb0216e5..2cb412df8d 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_file_base64.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_file_base64.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_action_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_action_v1.go index 6340281f9b..6119458028 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_action_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_action_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_endorsement_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_endorsement_v1.go index 499d7df5a7..394fe21984 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_endorsement_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_endorsement_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_event_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_event_v1.go index 17c01901a3..0b0a0a6036 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_event_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_full_block_transaction_event_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_discovery_options.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_discovery_options.go index 216efa3e35..23e15029b8 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_discovery_options.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_discovery_options.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_event_handler_options.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_event_handler_options.go index 67d6653862..0020cd3db0 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_event_handler_options.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_event_handler_options.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options.go index f9469a22f1..e069d10f7c 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options_wallet.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options_wallet.go index 7c28dd2d17..0f0c1cc370 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options_wallet.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_gateway_options_wallet.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1.go index f31d8c4e4f..97e3c586dc 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query.go index ce275cfb1f..0ab0c3702d 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query_block_hash.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query_block_hash.go index 3c6bb3f12d..fb89fc4da9 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query_block_hash.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_request_v1_query_block_hash.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_decoded_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_decoded_v1.go index 567de4324f..0f2b630f06 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_decoded_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_decoded_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_encoded_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_encoded_v1.go index afa8329db5..8165d71426 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_encoded_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_encoded_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_type_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_type_v1.go index c858044326..75bbdd213b 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_type_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_v1.go index 01e764e6d0..8b1650cd0e 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_block_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_request_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_request_v1.go index 7cd3d32298..a541db55aa 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_response_v1.go index c4e39ad1ca..753305dfb3 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_chain_info_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_transaction_receipt_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_transaction_receipt_response.go index 2f25a729a9..75ba91d72f 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_transaction_receipt_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_get_transaction_receipt_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_delegated_sign_transaction_request.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_delegated_sign_transaction_request.go index bead8b730c..95065d0e99 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_delegated_sign_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_delegated_sign_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_request.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_request.go index 0878639b59..1d1ad1e674 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 9da1f7d69b..0b48e91d61 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response_type.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response_type.go index 791abc1e1e..6b77a36ce6 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response_type.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_run_transaction_response_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_ssh_exec_command_response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_ssh_exec_command_response.go index b83d98584b..db495b5e95 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_ssh_exec_command_response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_ssh_exec_command_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_block_meta_data.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_block_meta_data.go index f735dbf2e8..1fac5c8bbd 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_block_meta_data.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_block_meta_data.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_creator.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_creator.go index 524572a396..3588d9cc44 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_creator.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_creator.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_endorsement.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_endorsement.go index d14fb754d6..3e5d15b349 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_endorsement.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_transact_receipt_transaction_endorsement.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_vault_transit_key.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_vault_transit_key.go index b3f3121c25..e5c3d410de 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_vault_transit_key.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_vault_transit_key.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_error_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_error_response_v1.go index c2bd9bedf0..98f1c1f14d 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_error_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_error_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_transactions_event_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_transactions_event_v1.go index 7d95db94a1..53eff24efe 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_transactions_event_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_transactions_event_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.1 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_transactions_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_transactions_response_v1.go index 3e8dcf79ec..2f02988591 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_transactions_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_cactus_transactions_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.1 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_delegated_sign_options_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_delegated_sign_options_v1.go index 3eb16ba3fa..bccc4557e3 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_delegated_sign_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_delegated_sign_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_filtered_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_filtered_response_v1.go index 11cb98ed15..b165ba2251 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_filtered_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_filtered_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_full_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_full_response_v1.go index 2b22f60daf..fcee751af7 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_full_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_full_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_listener_type_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_listener_type_v1.go index 37af2dc9b7..bf4fa4409d 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_listener_type_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_listener_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go index 31a2d04db9..fcf9d33b19 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_private_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_private_response_v1.go index 5898342be9..8fd1306920 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_private_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_private_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go index 46595816e6..f83b4a7359 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index 5f0ddd81b2..75978d4a60 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_web_socket_key.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_web_socket_key.go index 9698b6bf25..8128fa19e9 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_web_socket_key.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/model_web_socket_key.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/response.go index 837c0df680..51116b07d9 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/utils.go index e5888f2935..cc6a626d58 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Fabric Can perform basic tasks on a fabric ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.json index d890a781b4..ca384261e4 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Fabric", "description": "Can perform basic tasks on a fabric ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.tpl.json index d890a781b4..ca384261e4 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Fabric", "description": "Can perform basic tasks on a fabric ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-ledger-connector-fabric/src/main/kotlin/generated/openapi/kotlin-client/README.md index 5156755e25..35464629d2 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a fabric ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts index 720a6edd34..4ba11dde84 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts index 350a35c1ca..2c86ce5b52 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts index 7a2d0ca3fc..0aaa3ee091 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 32d193d21a..257d2b2e09 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts index fa8f72a18c..957a193ca4 100644 --- a/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Fabric * Can perform basic tasks on a fabric ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-iroha2/CHANGELOG.md index 95e505fbf9..6f16540a0a 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-iroha2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-iroha2 + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-iroha2 diff --git a/packages/cactus-plugin-ledger-connector-iroha2/package.json b/packages/cactus-plugin-ledger-connector-iroha2/package.json index 8417f675d7..3e032ecdea 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/package.json +++ b/packages/cactus-plugin-ledger-connector-iroha2/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-iroha2", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to an Iroha V2 ledger.", "keywords": [ "Hyperledger", @@ -47,9 +47,9 @@ "generate-sdk:typescript-axios": "openapi-generator-cli generate -i ./src/main/json/openapi.json -g typescript-axios -o ./src/main/typescript/generated/openapi/typescript-axios/ --reserved-words-mappings protected=protected --ignore-file-override ../../openapi-generator-ignore" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "@iroha2/client": "4.0.0", "@iroha2/crypto-core": "0.1.1", "@iroha2/crypto-target-node": "0.4.0", @@ -65,8 +65,8 @@ "undici": "6.19.8" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/express": "5.0.0", "@types/sanitize-html": "2.9.5", "body-parser": "1.20.3", diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/README.md index dde915b65d..cd74baa21b 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Iroha V2 ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api/openapi.yaml index 9a95c2861c..0ed071e3aa 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Iroha V2 - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api_default.go index 9d51fe3428..108500ef37 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/client.go index 70b31b8aa3..334060fa51 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Iroha V2 API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Iroha V2 API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/configuration.go index dc200f027f..f4900aea61 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_block_type_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_block_type_v1.go index 9849585440..0af2ff9950 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_block_type_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_block_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 99cae6e11b..974e910f7b 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1.go index 4c5de4f910..65d1c7f897 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1_request.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1_request.go index 0d3b69d86d..6c34d142fc 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_generate_transaction_request_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_account_id.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_account_id.go index 9f1959777d..b5c885479f 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_account_id.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_account_id.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config.go index a48cef2463..4db75183da 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_signing_credential.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_signing_credential.go index 0e831e0f7a..794b7ff345 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_torii.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_torii.go index 8d233059a0..ea84fd1472 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_torii.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_base_config_torii.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_json.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_json.go index 4eb8f534c9..6237a56d4c 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_json.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_json.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_pair.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_pair.go index 6b6d51a07c..5eeb95aa63 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_pair.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha2_key_pair.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction.go index 41663a586f..e8e3a6ebf7 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction_request_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction_request_v1.go index 4606007789..ec6f004db1 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_instruction_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query.go index d325ccdd20..3834094a7e 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query_definition_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query_definition_v1.go index bfce507735..4c11e016f3 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query_definition_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_query_definition_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_signed_query_definition_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_signed_query_definition_v1.go index c052007e04..e21eced95d 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_signed_query_definition_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_signed_query_definition_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1.go index 9434c6ca66..6a781acdf7 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1_instruction.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1_instruction.go index 09a818afc4..6ef59b2692 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1_instruction.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_definition_v1_instruction.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_parameters_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_parameters_v1.go index 3cacc0fc77..351389397a 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_parameters_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_iroha_transaction_parameters_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_keychain_reference.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_keychain_reference.go index 333c7d579b..e27d5dec6f 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_keychain_reference.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_keychain_reference.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_request_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_request_v1.go index 37284c28fd..e4f0a45b33 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_response_v1.go index f0205a0fbf..777eb86b30 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_query_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_request_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_request_v1.go index 47054b4e71..c9c248765c 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_request_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_request_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_response_v1.go index f258219d68..87a1a9d0af 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transact_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transaction_status_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transaction_status_v1.go index 1d97183db4..880e04650b 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transaction_status_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_transaction_status_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_binary_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_binary_response_v1.go index 198c0196f1..962e7aaabf 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_binary_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_binary_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go index 98912ab3cc..2ba634ed76 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_options_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_raw_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_raw_response_v1.go index f316a96270..f479bc283a 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_raw_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_raw_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go index 85701a2a68..3a02d2925e 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index fa30dfbda0..f91f6d7144 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/response.go index f06e6ae0a0..a0e507de98 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/utils.go index 54bf2b2cd1..eb77df8980 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Iroha V2 Can perform basic tasks on a Iroha V2 ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.json index 82e75c7b2b..fa139c35fd 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Iroha V2", "description": "Can perform basic tasks on a Iroha V2 ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.tpl.json index 82e75c7b2b..fa139c35fd 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Iroha V2", "description": "Can perform basic tasks on a Iroha V2 ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/api.ts index cea917c1cd..b7d803f2c7 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/base.ts index b74681da43..a1496aee98 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/common.ts index 3518beb9fa..16816b22a9 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 92c5a5f79d..2230207df2 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/index.ts index 0d07246cd1..135272844c 100644 --- a/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-iroha2/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Iroha V2 * Can perform basic tasks on a Iroha V2 ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-polkadot/CHANGELOG.md index 7ac9d64661..42821cf0c2 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-polkadot/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-polkadot + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-polkadot diff --git a/packages/cactus-plugin-ledger-connector-polkadot/package.json b/packages/cactus-plugin-ledger-connector-polkadot/package.json index ff1cfa0f36..1af45eac80 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/package.json +++ b/packages/cactus-plugin-ledger-connector-polkadot/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-polkadot", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to a Substrate ledger.", "keywords": [ "Hyperledger", @@ -65,9 +65,9 @@ "webpack:prod:web": "webpack --env=prod --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "@polkadot/api": "10.9.1", "@polkadot/api-contract": "10.9.1", "@polkadot/rpc-provider": "10.9.1", @@ -93,8 +93,8 @@ "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/express": "5.0.0", "@types/joi": "17.2.3", "@types/multer": "1.4.7", diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/README.md index 6b2e0ac6fd..137d3b68e3 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Polkadot parachain ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api/openapi.yaml index 86c28715b8..b18122cfed 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Polkadot - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api_default.go index e13b3da902..7655791e4d 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/client.go index 5f9bc38429..befeb3c2b7 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Polkadot API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Polkadot API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/configuration.go index 2d69d138b5..e73762267a 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request.go index bfe60e1c14..1f5178dae1 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_balance.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_balance.go index d6228f1f28..7f46a68c6c 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_balance.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_balance.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_gas_limit.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_gas_limit.go index e9389098e0..189a9e6748 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_gas_limit.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_gas_limit.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_salt.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_salt.go index eac21e4626..e31c6cb992 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_salt.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_salt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_storage_deposit_limit.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_storage_deposit_limit.go index 3526dfde0b..b62ecad786 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_storage_deposit_limit.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_request_storage_deposit_limit.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_response.go index 9b3583f355..dcda6401e3 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_deploy_contract_ink_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_error_exception_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_error_exception_response.go index 4fc15ab4ab..19faabf94c 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_error_exception_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_error_exception_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_request.go index 8bcfc21458..25289eab14 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_response.go index c036698071..a9bb4cbb96 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_invoke_contract_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_contract_invocation_type.go index 50f470fd3b..7ab74672c8 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config.go index cf5739d8c0..ecaa3246ce 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_transfer_submittable.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_transfer_submittable.go index 01e3c69f98..9f4bbc66f4 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_transfer_submittable.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_transfer_submittable.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_value.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_value.go index b29d8213d3..27832112a5 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_value.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_polkadot_transaction_config_value.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_request.go index 6e452f4983..2fdae1e1ef 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response.go index 440dccf1d8..8097ded529 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_data.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_data.go index 2f58c79349..ac316cf145 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_data.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_data.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_response_container.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_response_container.go index 13676f9e35..8ae72f0537 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_response_container.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_raw_transaction_response_response_container.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_request.go index bc966c9920..be417ca3cf 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_response.go index 82a2b2f411..453f1558f7 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_run_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_request.go index ea999e1438..a8c33e0110 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_response.go index 7d8f339e36..406b770e6e 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_sign_raw_transaction_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_request.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_request.go index 579fa67151..2bed45a98b 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_request.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response.go index 0519c47083..dc65331b21 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_data.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_data.go index d2a19210d0..23fb12524c 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_data.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_data.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_response_container.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_response_container.go index c0c014d670..0e047e8d6e 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_response_container.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_transaction_info_response_response_container.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 7dba776262..84193084f3 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 996a51f679..7e6860968e 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_mnemonic_string.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_mnemonic_string.go index 58be6fadef..be58b326ef 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_mnemonic_string.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_mnemonic_string.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index f90737fe11..e56b8bdda0 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index f840b03f5f..8e3ea5fac4 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/response.go index 2e86f3ff0e..5809aff25c 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/utils.go index 74a6b86f4f..fffe7d44a9 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Polkadot Can perform basic tasks on a Polkadot parachain -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.json index bebe919bd9..cc540c9bf9 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Polkadot", "description": "Can perform basic tasks on a Polkadot parachain", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.tpl.json index bebe919bd9..cc540c9bf9 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Polkadot", "description": "Can perform basic tasks on a Polkadot parachain", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/api.ts index ddc8e2ecc8..45c43dd11d 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/base.ts index bdd81eb2f5..dc0a06aeeb 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/common.ts index b75c95607a..f55f40d035 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 3fa3a0eb17..6d6c7c5b9f 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/index.ts index 9bbd1a953a..c01d5b111e 100644 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Polkadot * Can perform basic tasks on a Polkadot parachain * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-polkadot/src/test/rust/ink/flipper/Cargo.toml b/packages/cactus-plugin-ledger-connector-polkadot/src/test/rust/ink/flipper/Cargo.toml index b50ace5b39..f69e0b0ac5 100755 --- a/packages/cactus-plugin-ledger-connector-polkadot/src/test/rust/ink/flipper/Cargo.toml +++ b/packages/cactus-plugin-ledger-connector-polkadot/src/test/rust/ink/flipper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipper" -version = "2.0.0-rc.7" +version = "2.0.0" authors = ["[your_name] <[your_email]>"] edition = "2021" diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-sawtooth/CHANGELOG.md index 6756da7abf..4e204326ef 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-sawtooth/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-sawtooth + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-sawtooth diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/package.json b/packages/cactus-plugin-ledger-connector-sawtooth/package.json index 7f5ee6bcfd..6ab2944826 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/package.json +++ b/packages/cactus-plugin-ledger-connector-sawtooth/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-sawtooth", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to a Sawtooth ledger.", "keywords": [ "Hyperledger", @@ -56,16 +56,16 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "cbor": "9.0.1", "rxjs": "7.8.1", "socket.io-client-fixed-types": "4.5.4" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/express": "5.0.0", "@types/uuid": "10.0.0", "body-parser": "1.20.3", diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/README.md index 811edfc0e1..06b4fc5c0a 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Sawtooth ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api/openapi.yaml index 5b81ee8ac2..bf905d28d8 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cacti Plugin - Connector Sawtooth - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api_default.go index 6e3fd447dc..66b0e173c7 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/client.go index 8d7bf56d8f..9ddcb54e76 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Sawtooth API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cacti Plugin - Connector Sawtooth API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/configuration.go index 9651272024..66c7ded92a 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1.go index a3061e7cf8..c324476071 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1_all_of.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1_all_of.go index 0d1b93447c..fa3260e37b 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1_all_of.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_cacti_transaction_v1_all_of.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 4e2be516ed..702ea339cf 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_header_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_header_v1.go index 000a785a00..954a9ba319 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_header_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_header_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_v1.go index fb230c88b0..4034f3457b 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_batch_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_header_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_header_v1.go index f50afdf1cf..8efd1d54c8 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_header_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_header_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_v1.go index 6e2aaf99b4..031c0fe563 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_block_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_header_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_header_v1.go index 39bbfa3ad5..86f4c5fd02 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_header_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_header_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_v1.go index 954276debc..f5de1ba438 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_sawtooth_transaction_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_status_response_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_status_response_v1.go index ca8d810478..00303209f8 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_status_response_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_status_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go index 0fcf72d3db..ddee5ae093 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_cacti_transactions_response.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_cacti_transactions_response.go index 008fe37067..991d4df160 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_cacti_transactions_response.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_cacti_transactions_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_full_response.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_full_response.go index 563b1975c3..042a810fc8 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_full_response.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_full_response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_listener_type.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_listener_type.go index a519190075..63cfc18120 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_listener_type.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_listener_type.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go index 27cc5a5fce..462e8e9e06 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_options.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go index ea4f09c25e..b3625aecad 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_progress.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_transaction_filter.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_transaction_filter.go index c65b09f69e..daa1ee495c 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_transaction_filter.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/model_watch_blocks_v1_transaction_filter.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/response.go index 1e051f7032..1dd4efd660 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/utils.go index 16342ade08..3e0a55cf90 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cacti Plugin - Connector Sawtooth Can perform basic tasks on a Sawtooth ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.json index 58be07f179..bb5e99fa46 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Sawtooth", "description": "Can perform basic tasks on a Sawtooth ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.tpl.json index 58be07f179..bb5e99fa46 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cacti Plugin - Connector Sawtooth", "description": "Can perform basic tasks on a Sawtooth ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/api.ts index 49caf3259b..07172ad877 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/base.ts index d2a7baafc0..43361ffdf6 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/common.ts index a1ac44bce5..f05c0b66bf 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 7b90768dcf..c7b196d992 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/index.ts index 12b66caf8d..7cc5b0bcda 100644 --- a/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-sawtooth/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cacti Plugin - Connector Sawtooth * Can perform basic tasks on a Sawtooth ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/CHANGELOG.md b/packages/cactus-plugin-ledger-connector-xdai/CHANGELOG.md index a08df49b11..b37212db32 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/CHANGELOG.md +++ b/packages/cactus-plugin-ledger-connector-xdai/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-xdai + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-ledger-connector-xdai diff --git a/packages/cactus-plugin-ledger-connector-xdai/package.json b/packages/cactus-plugin-ledger-connector-xdai/package.json index 747a237e6d..54dd614639 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/package.json +++ b/packages/cactus-plugin-ledger-connector-xdai/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-ledger-connector-xdai", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Allows Cactus nodes to connect to a Xdai ledger.", "keywords": [ "Hyperledger", @@ -55,9 +55,9 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", "axios": "1.7.7", "express": "4.21.0", "joi": "17.13.3", @@ -71,8 +71,8 @@ "web3-utils": "1.6.1" }, "devDependencies": { - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/body-parser": "1.19.4", "@types/express": "5.0.0", "body-parser": "1.20.3", diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/README.md index 8f2886d367..99a70473c6 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Can perform basic tasks on a Xdai ledger ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api/openapi.yaml index 0b844ed98b..4a5d657d81 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Connector Xdai - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api_default.go index 57ca18bf33..d5b72b2476 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/client.go index 11e9fc0dc3..19e07729ba 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Xdai API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Connector Xdai API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/configuration.go index 4de7320e01..e4a842bc30 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_consistency_strategy.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_consistency_strategy.go index e21179c4e1..c564ef4291 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_consistency_strategy.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_consistency_strategy.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_contract_json.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_contract_json.go index f3bf9bdfc6..5b8652d295 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_contract_json.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_contract_json.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_json_object_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_json_object_v1_request.go index 11ef221603..386fcca71c 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_json_object_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_json_object_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go index 3e1e7c03ef..04707d93d2 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go index 5bc8c95d22..cbf0888de0 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_request_base_v1.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_request_base_v1.go index 25612cc4a4..4f1152f06d 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_request_base_v1.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_deploy_request_base_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go index d0e9341faa..e5dd9c3216 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_eth_contract_invocation_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_json_object_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_json_object_v1_request.go index 68223c9253..e48b435737 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_json_object_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_json_object_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go index 801a7a0b5b..de11a44ee0 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go index 13240902f4..164dbbc3ce 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_contract_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_request_base_v1.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_request_base_v1.go index 7a3a49fc95..dfaee9a5a1 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_request_base_v1.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_invoke_request_base_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_receipt_type.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_receipt_type.go index b964605a1c..db019be391 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_receipt_type.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_receipt_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_request.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_request.go index df4319a05b..05188e5e60 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_request.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_response.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_response.go index 65f8f53044..1a12833e47 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_response.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_run_transaction_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go index 8bf8761839..a67e5d0001 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go index 2c3bc8b0a8..438f9fc848 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_compiler.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go index 4f92311488..f5568ecfe5 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go index 97cd01af53..f49df7ead9 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_solidity_contract_json_artifact_gas_estimates_creation.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go index 6b4401514c..347aabe392 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go index 88faba4874..91c7acfa8b 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_cactus_keychain_ref.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go index 5a7c4eb9d3..384d222879 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_none.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go index f64642d420..0f65a7af22 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_private_key_hex.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go index 6cbb7074f9..d82774876d 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_signing_credential_type.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go index eab1aecc63..6ddc31f02d 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_web3_transaction_receipt.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config.go index a3a2bf6b80..9c84d6a934 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_from.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_from.go index b43d6ead90..8015b73dde 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_from.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_from.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_to.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_to.go index aa67f96976..e861a31151 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_to.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/model_xdai_transaction_config_to.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/response.go index 3f1d50ef98..95aeeb80f1 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/utils.go index 72b4c56ccf..f186094695 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Connector Xdai Can perform basic tasks on a Xdai ledger -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.json b/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.json index 426a503c13..a582896548 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.json +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Xdai", "description": "Can perform basic tasks on a Xdai ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.tpl.json b/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.tpl.json index 426a503c13..a582896548 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Connector Xdai", "description": "Can perform basic tasks on a Xdai ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/api.ts index 8ced9c6046..9f262fc58f 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/base.ts index 14b95260f4..342fe57a37 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/common.ts index f5f48926c8..ccd2b5c4cb 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index bb300857bc..092f2f8517 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/index.ts index 69d2d14c41..6c7c640093 100644 --- a/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-ledger-connector-xdai/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Connector Xdai * Can perform basic tasks on a Xdai ledger * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/CHANGELOG.md b/packages/cactus-plugin-persistence-ethereum/CHANGELOG.md index 5ab0122cd0..bad177eec0 100644 --- a/packages/cactus-plugin-persistence-ethereum/CHANGELOG.md +++ b/packages/cactus-plugin-persistence-ethereum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-ethereum + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-ethereum diff --git a/packages/cactus-plugin-persistence-ethereum/package.json b/packages/cactus-plugin-persistence-ethereum/package.json index a3d26e63e2..638aefd49b 100644 --- a/packages/cactus-plugin-persistence-ethereum/package.json +++ b/packages/cactus-plugin-persistence-ethereum/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-persistence-ethereum", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Persistence plugin for Ethereum ledgers to store data into a database.", "keywords": [ "Hyperledger", @@ -62,10 +62,10 @@ }, "dependencies": { "@ethersproject/abi": "5.7.0", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", "async-mutex": "0.4.0", "axios": "1.7.7", "pg": "8.8.0", @@ -75,10 +75,10 @@ "web3-validator": "2.0.2" }, "devDependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-geth-ledger": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-geth-ledger": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@openapitools/openapi-generator-cli": "2.7.0", "@types/express": "5.0.0", "@types/pg": "8.6.5", diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/README.md index e5918f44d3..864b8f2954 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Synchronizes state of an ethereum ledger into a DB that can later be viewed in G ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml index 26c0f52ebc..48dcafc376 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -6,7 +6,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Persistence Ethereum - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api_default.go index 6e01004c82..52c6c3c318 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/client.go index 038d0a890c..74f6f6649c 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Persistence Ethereum API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Persistence Ethereum API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/configuration.go index de7b64b1df..b74af4bcee 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 358f9e6f59..a9dd34a24d 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_monitored_token.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_monitored_token.go index f112a2bd44..057e2e1c2a 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_monitored_token.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_monitored_token.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_status_response_v1.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_status_response_v1.go index ad6e528ff6..beeea27206 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_status_response_v1.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_status_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_token_type_v1.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_token_type_v1.go index 9c044f7baf..4a55785a30 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_token_type_v1.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_token_type_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go index dd234ab65f..2969d32a8d 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/response.go index b6aa1079fd..67e58a71fa 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/utils.go index c8b79bc889..9cf5a966fd 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-persistence-ethereum/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Ethereum Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.json b/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.json index fce7c8d6cd..4b1bc3d68c 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.json +++ b/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Persistence Ethereum", "description": "Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.tpl.json b/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.tpl.json index fce7c8d6cd..4b1bc3d68c 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-persistence-ethereum/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Persistence Ethereum", "description": "Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts index ab483a1b95..f9d1fce802 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts index e039c48fe7..75e763ac59 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts index 8d2b3b43d5..61e52720d0 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 554922e4e5..44f78a1af4 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts index 71a9bea2d9..b9f0c8b2b2 100644 --- a/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-persistence-ethereum/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Ethereum * Synchronizes state of an ethereum ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/CHANGELOG.md b/packages/cactus-plugin-persistence-fabric/CHANGELOG.md index 0fe40b96bc..9086cab28d 100644 --- a/packages/cactus-plugin-persistence-fabric/CHANGELOG.md +++ b/packages/cactus-plugin-persistence-fabric/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-fabric + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-persistence-fabric diff --git a/packages/cactus-plugin-persistence-fabric/package.json b/packages/cactus-plugin-persistence-fabric/package.json index e7277cd907..4482a0e6ce 100644 --- a/packages/cactus-plugin-persistence-fabric/package.json +++ b/packages/cactus-plugin-persistence-fabric/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-persistence-fabric", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Persistence plugin for Fabric ledgers to store data into a database.", "keywords": [ "Hyperledger", @@ -62,10 +62,10 @@ "watch": "npm-watch" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", "async-mutex": "0.4.0", "axios": "1.7.7", "pg": "8.8.0", @@ -73,9 +73,9 @@ "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@openapitools/openapi-generator-cli": "2.7.0", "@types/express": "5.0.0", "@types/pg": "8.6.5", diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/README.md index c16ce0eacb..2948d62b2d 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml index 017cf6d8d8..d189229fb3 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -6,7 +6,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Persistence Fabric - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api_default.go index 8356080f89..669cc86e74 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/client.go index f8ca9660ec..c3485ebd6f 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Persistence Fabric API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Persistence Fabric API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/configuration.go index 58b13b614b..035095c4b7 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go index 838eb56b2d..d3a0e47d39 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_error_exception_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_status_response_v1.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_status_response_v1.go index 727a25befe..41b1569200 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_status_response_v1.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_status_response_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go index 1691466537..dbec934be8 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/model_tracked_operation_v1.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/response.go index 83c912eed3..b29ebed98c 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/utils.go index cd48e3668a..cd4ed96520 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-persistence-fabric/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Persistence Fabric Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json index 62d0066c91..5b996f0b3a 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json +++ b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Persistence Fabric", "description": "Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json index 62d0066c91..5b996f0b3a 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-persistence-fabric/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Persistence Fabric", "description": "Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts index 9bb042b9fb..801baa74fc 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts index 9c423361d8..96fed85330 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts index fbaa256efa..58a04f2ed7 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index 80510599f4..27ea164448 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts index 60b962aea8..04463a122d 100644 --- a/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-persistence-fabric/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Persistence Fabric * Synchronizes state of an fabric ledger into a DB that can later be viewed in GUI * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/CHANGELOG.md b/packages/cactus-plugin-satp-hermes/CHANGELOG.md index 70f6ae2616..deeb2d09b6 100644 --- a/packages/cactus-plugin-satp-hermes/CHANGELOG.md +++ b/packages/cactus-plugin-satp-hermes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-plugin-satp-hermes + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-plugin-satp-hermes diff --git a/packages/cactus-plugin-satp-hermes/package.json b/packages/cactus-plugin-satp-hermes/package.json index 780f5f6246..1f6333ffe6 100644 --- a/packages/cactus-plugin-satp-hermes/package.json +++ b/packages/cactus-plugin-satp-hermes/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-plugin-satp-hermes", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Proof of concept of ODAP", "keywords": [ "Hyperledger", @@ -50,15 +50,15 @@ "watch": "npm-watch" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-object-store-ipfs": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-plugin-object-store-ipfs": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "axios": "1.7.7", "crypto-js": "4.2.0", "fs-extra": "11.2.0", diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/README.md b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/README.md index 9217acb078..01a3ac2b43 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/README.md +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/README.md @@ -5,7 +5,7 @@ Implementation for Odap and Hermes ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api/openapi.yaml b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api/openapi.yaml index b3b2afde1a..a16486900a 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api/openapi.yaml +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api/openapi.yaml @@ -5,7 +5,7 @@ info: name: Apache-2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: Hyperledger Cactus Plugin - Odap Hermes - version: 2.0.0-rc.7 + version: 2.0.0 servers: - url: / paths: diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api_default.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api_default.go index 333738a5bd..1805964564 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api_default.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/api_default.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/client.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/client.go index e706a95090..e2adcc5c7f 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/client.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/client.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer( "%5B", "[", "%5D", "]" ) ) -// APIClient manages communication with the Hyperledger Cactus Plugin - Odap Hermes API v2.0.0-rc.7 +// APIClient manages communication with the Hyperledger Cactus Plugin - Odap Hermes API v2.0.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/configuration.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/configuration.go index 3727195d4b..d5b165fd8e 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/configuration.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_asset_profile.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_asset_profile.go index cafa14fb45..4501cb7c8f 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_asset_profile.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_asset_profile.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request.go index 04b36c9b16..feb8bd7eba 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request_client_gateway_configuration.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request_client_gateway_configuration.go index 6e20d281fb..070d49e9bc 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request_client_gateway_configuration.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_client_v1_request_client_gateway_configuration.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_request.go index dd3dbfbcaf..960770ecbe 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_response.go index 90dd9df510..b9d1583a95 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_final_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_request.go index 9e8bbf5378..04ca5d6e14 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_response.go index c9e2326822..0cc74e0df7 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_commit_preparation_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_credential_profile.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_credential_profile.go index b8ef8e66d7..a28279990c 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_credential_profile.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_credential_profile.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_history.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_history.go index e53a3f0ff1..a119e0a93a 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_history.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_history.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_local_log.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_local_log.go index 01942f8df6..6b6c8d5f41 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_local_log.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_local_log.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_request.go index 2991758b3e..642a21891d 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_response.go index 352ba1be74..f0af1b4fda 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_lock_evidence_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_payload_profile.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_payload_profile.go index 229c325ca1..3deff32bd2 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_payload_profile.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_payload_profile.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_success_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_success_v1_message.go index 6c9f1900c8..bd42614a80 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_success_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_success_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_ack_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_ack_v1_message.go index db52fe6adc..dc7fda9c3a 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_ack_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_ack_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_v1_message.go index 5566cf59c6..587da6482e 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_update_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_v1_message.go index f1768938da..e1e06a7c03 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_recover_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_ack_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_ack_v1_message.go index 4eb3db632d..2d7782bb6a 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_ack_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_ack_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_v1_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_v1_message.go index 1a6c024e98..f18f272542 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_v1_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_rollback_v1_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message.go index a4f8c83507..8274e45c98 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message_action_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message_action_response.go index 19bdbdc7ea..dd7f0fc611 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message_action_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_satp_message_action_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_session_data.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_session_data.go index d7a8369920..d82664b431 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_session_data.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_session_data.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_request.go index af71912e2b..5ddf2dab22 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_response.go index 9de70949a3..13ecb2ee0d 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_commence_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_complete_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_complete_v1_request.go index acd744c626..a183fe3479 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_complete_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_complete_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_request.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_request.go index ce073fb242..3690c31ed2 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_request.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_request.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_response.go index d5440bf655..0fc1dd8548 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/model_transfer_initialization_v1_response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/response.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/response.go index d68c3dcc36..ca470973bd 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/response.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/response.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/utils.go b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/utils.go index 6959f1876a..b83a09e0e6 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/utils.go +++ b/packages/cactus-plugin-satp-hermes/src/main/go/generated/openapi/go-client/utils.go @@ -3,7 +3,7 @@ Hyperledger Cactus Plugin - Odap Hermes Implementation for Odap and Hermes -API version: 2.0.0-rc.7 +API version: 2.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/packages/cactus-plugin-satp-hermes/src/main/json/openapi.json b/packages/cactus-plugin-satp-hermes/src/main/json/openapi.json index 331a217860..ed0fdbe78b 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/json/openapi.json +++ b/packages/cactus-plugin-satp-hermes/src/main/json/openapi.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Odap Hermes", "description": "Implementation for Odap and Hermes", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-satp-hermes/src/main/json/openapi.tpl.json b/packages/cactus-plugin-satp-hermes/src/main/json/openapi.tpl.json index 331a217860..ed0fdbe78b 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/json/openapi.tpl.json +++ b/packages/cactus-plugin-satp-hermes/src/main/json/openapi.tpl.json @@ -3,7 +3,7 @@ "info": { "title": "Hyperledger Cactus Plugin - Odap Hermes", "description": "Implementation for Odap and Hermes", - "version": "2.0.0-rc.7", + "version": "2.0.0", "license": { "name": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" diff --git a/packages/cactus-plugin-satp-hermes/src/main/kotlin/generated/openapi/kotlin-client/README.md b/packages/cactus-plugin-satp-hermes/src/main/kotlin/generated/openapi/kotlin-client/README.md index 74125e8632..b2679aa1bb 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/kotlin/generated/openapi/kotlin-client/README.md +++ b/packages/cactus-plugin-satp-hermes/src/main/kotlin/generated/openapi/kotlin-client/README.md @@ -5,7 +5,7 @@ Implementation for Odap and Hermes ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client. -- API version: 2.0.0-rc.7 +- API version: 2.0.0 - Package version: - Build package: org.openapitools.codegen.languages.KotlinClientCodegen diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts index 40d29e10a5..d83286b979 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/api.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts index a6767e6dda..0e72a3c2f0 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/base.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts index ba78cb5588..165771e4c1 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/common.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts index cc6659457b..17eef2df4b 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/configuration.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts index 625a94f25c..c3bcfed9ec 100644 --- a/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts +++ b/packages/cactus-plugin-satp-hermes/src/main/typescript/generated/openapi/typescript-axios/index.ts @@ -4,7 +4,7 @@ * Hyperledger Cactus Plugin - Odap Hermes * Implementation for Odap and Hermes * - * The version of the OpenAPI document: 2.0.0-rc.7 + * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/cactus-test-api-client/CHANGELOG.md b/packages/cactus-test-api-client/CHANGELOG.md index 4bbac8c83c..49c026ac0a 100644 --- a/packages/cactus-test-api-client/CHANGELOG.md +++ b/packages/cactus-test-api-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-api-client + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-api-client diff --git a/packages/cactus-test-api-client/package.json b/packages/cactus-test-api-client/package.json index 690a22ef08..2d0836d4ea 100644 --- a/packages/cactus-test-api-client/package.json +++ b/packages/cactus-test-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-api-client", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Integration tests for the Cactus API Client package (formerly known as the Cactus SDK package that has been renamed for to purpose of being less ambiguous)", "keywords": [ "Hyperledger", @@ -50,19 +50,19 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", "jose": "4.15.5", "uuid": "10.0.0", "web3": "1.6.1" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/uuid": "10.0.0" }, "engines": { diff --git a/packages/cactus-test-cmd-api-server/CHANGELOG.md b/packages/cactus-test-cmd-api-server/CHANGELOG.md index f3efab93c7..aa8784b7eb 100644 --- a/packages/cactus-test-cmd-api-server/CHANGELOG.md +++ b/packages/cactus-test-cmd-api-server/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-cmd-api-server + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-cmd-api-server diff --git a/packages/cactus-test-cmd-api-server/package.json b/packages/cactus-test-cmd-api-server/package.json index 8ca67b784a..77073cd7e1 100644 --- a/packages/cactus-test-cmd-api-server/package.json +++ b/packages/cactus-test-cmd-api-server/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-cmd-api-server", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Integration tests for the Cactus API Client package (formerly known as the Cactus SDK package that has been renamed for to purpose of being less ambiguous)", "keywords": [ "Hyperledger", @@ -50,17 +50,17 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-vault": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-vault": "2.0.0", "express-jwt-authz": "2.4.1", "jose": "4.15.5", "uuid": "10.0.0" }, "devDependencies": { - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/uuid": "10.0.0" }, "engines": { diff --git a/packages/cactus-test-geth-ledger/CHANGELOG.md b/packages/cactus-test-geth-ledger/CHANGELOG.md index 60faaa962a..5a02c95b70 100644 --- a/packages/cactus-test-geth-ledger/CHANGELOG.md +++ b/packages/cactus-test-geth-ledger/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-geth-ledger + # [2.0.0-rc.6](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-geth-ledger diff --git a/packages/cactus-test-geth-ledger/package.json b/packages/cactus-test-geth-ledger/package.json index d15e5e941f..4875a4d655 100644 --- a/packages/cactus-test-geth-ledger/package.json +++ b/packages/cactus-test-geth-ledger/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-geth-ledger", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Helpers for running test go-ethereum ledger in test scripts.", "keywords": [ "Hyperledger", @@ -50,8 +50,8 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "dockerode": "3.3.0", "internal-ip": "6.2.0", "run-time-error-cjs": "1.4.0", diff --git a/packages/cactus-test-plugin-consortium-manual/CHANGELOG.md b/packages/cactus-test-plugin-consortium-manual/CHANGELOG.md index 5aac043d9d..563a40d0b6 100644 --- a/packages/cactus-test-plugin-consortium-manual/CHANGELOG.md +++ b/packages/cactus-test-plugin-consortium-manual/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-consortium-manual + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-consortium-manual diff --git a/packages/cactus-test-plugin-consortium-manual/package.json b/packages/cactus-test-plugin-consortium-manual/package.json index 7eeee5a789..7f02bb8280 100644 --- a/packages/cactus-test-plugin-consortium-manual/package.json +++ b/packages/cactus-test-plugin-consortium-manual/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-consortium-manual", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Integration tests for the manual consortium plugin using the Besu ledger and the API server.", "keywords": [ "Hyperledger", @@ -50,12 +50,12 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-consortium-manual": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", "axios": "1.7.7", "jose": "4.15.5" }, diff --git a/packages/cactus-test-plugin-htlc-eth-besu-erc20/CHANGELOG.md b/packages/cactus-test-plugin-htlc-eth-besu-erc20/CHANGELOG.md index 8e37401b54..c5d087f6cf 100644 --- a/packages/cactus-test-plugin-htlc-eth-besu-erc20/CHANGELOG.md +++ b/packages/cactus-test-plugin-htlc-eth-besu-erc20/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-htlc-eth-besu-erc20 + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-htlc-eth-besu-erc20 diff --git a/packages/cactus-test-plugin-htlc-eth-besu-erc20/package.json b/packages/cactus-test-plugin-htlc-eth-besu-erc20/package.json index 4b789b4c1e..e79d295531 100644 --- a/packages/cactus-test-plugin-htlc-eth-besu-erc20/package.json +++ b/packages/cactus-test-plugin-htlc-eth-besu-erc20/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-htlc-eth-besu-erc20", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Integration tests for HTLC with ERC-20 tokens plugin.", "keywords": [ "Hyperledger", @@ -50,14 +50,14 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-htlc-eth-besu-erc20": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-htlc-eth-besu-erc20": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "axios": "1.7.7", "express": "4.21.0", "web3-eth-abi": "4.0.3", diff --git a/packages/cactus-test-plugin-htlc-eth-besu/CHANGELOG.md b/packages/cactus-test-plugin-htlc-eth-besu/CHANGELOG.md index 88488b4293..ed20d07ab1 100644 --- a/packages/cactus-test-plugin-htlc-eth-besu/CHANGELOG.md +++ b/packages/cactus-test-plugin-htlc-eth-besu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-htlc-eth-besu + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-htlc-eth-besu diff --git a/packages/cactus-test-plugin-htlc-eth-besu/package.json b/packages/cactus-test-plugin-htlc-eth-besu/package.json index 293841f228..9c11257c03 100644 --- a/packages/cactus-test-plugin-htlc-eth-besu/package.json +++ b/packages/cactus-test-plugin-htlc-eth-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-htlc-eth-besu", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Integration tests for the Besu ledger and the API server.", "keywords": [ "Hyperledger", @@ -50,14 +50,14 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-htlc-eth-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-htlc-eth-besu": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "axios": "1.7.7", "key-encoder": "2.0.3", "web3": "1.6.1", diff --git a/packages/cactus-test-plugin-keychain-memory/CHANGELOG.md b/packages/cactus-test-plugin-keychain-memory/CHANGELOG.md index 268abbaf7c..9db2ab4695 100644 --- a/packages/cactus-test-plugin-keychain-memory/CHANGELOG.md +++ b/packages/cactus-test-plugin-keychain-memory/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-keychain-memory + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-keychain-memory diff --git a/packages/cactus-test-plugin-keychain-memory/package.json b/packages/cactus-test-plugin-keychain-memory/package.json index ca5cec2fca..16a7fb0cb5 100644 --- a/packages/cactus-test-plugin-keychain-memory/package.json +++ b/packages/cactus-test-plugin-keychain-memory/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-keychain-memory", - "version": "2.0.0-rc.7", + "version": "2.0.0", "private": true, "description": "Tests with API server integration for the dummy keychain implementation. Private package not meant to be released.", "keywords": [ @@ -50,11 +50,11 @@ "@connectrpc/connect": "1.4.0", "@connectrpc/connect-node": "1.4.0", "@connectrpc/connect-web": "1.4.0", - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", "express": "4.21.0", "uuid": "10.0.0" }, diff --git a/packages/cactus-test-plugin-ledger-connector-besu/CHANGELOG.md b/packages/cactus-test-plugin-ledger-connector-besu/CHANGELOG.md index e3319b606e..e2feaf9e29 100644 --- a/packages/cactus-test-plugin-ledger-connector-besu/CHANGELOG.md +++ b/packages/cactus-test-plugin-ledger-connector-besu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-ledger-connector-besu + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-ledger-connector-besu diff --git a/packages/cactus-test-plugin-ledger-connector-besu/package.json b/packages/cactus-test-plugin-ledger-connector-besu/package.json index 9dd2778bee..3aecfd843f 100644 --- a/packages/cactus-test-plugin-ledger-connector-besu/package.json +++ b/packages/cactus-test-plugin-ledger-connector-besu/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-ledger-connector-besu", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Integration tests for the Besu ledger and the API server.", "keywords": [ "Hyperledger", @@ -51,14 +51,14 @@ }, "dependencies": { "@grpc/grpc-js": "1.11.3", - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", - "@hyperledger/cactus-verifier-client": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-verifier-client": "2.0.0", "key-encoder": "2.0.3", "socket.io": "4.6.2", "web3": "1.6.1", diff --git a/packages/cactus-test-plugin-ledger-connector-ethereum/CHANGELOG.md b/packages/cactus-test-plugin-ledger-connector-ethereum/CHANGELOG.md index c000ce3333..85c943b94d 100644 --- a/packages/cactus-test-plugin-ledger-connector-ethereum/CHANGELOG.md +++ b/packages/cactus-test-plugin-ledger-connector-ethereum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-plugin-ledger-connector-ethereum + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-plugin-ledger-connector-ethereum diff --git a/packages/cactus-test-plugin-ledger-connector-ethereum/package.json b/packages/cactus-test-plugin-ledger-connector-ethereum/package.json index d975599b7b..a2844bd084 100644 --- a/packages/cactus-test-plugin-ledger-connector-ethereum/package.json +++ b/packages/cactus-test-plugin-ledger-connector-ethereum/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-plugin-ledger-connector-ethereum", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Integration tests for the Ethereum ledger and the API server.", "keywords": [ "Hyperledger", @@ -50,18 +50,18 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-cmd-api-server": "2.0.0-rc.7", - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.7", - "@hyperledger/cactus-verifier-client": "2.0.0-rc.7", + "@hyperledger/cactus-cmd-api-server": "2.0.0", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-keychain-memory": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", + "@hyperledger/cactus-verifier-client": "2.0.0", "web3-eth-contract": "4.2.0" }, "devDependencies": { - "@hyperledger/cactus-test-geth-ledger": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", + "@hyperledger/cactus-test-geth-ledger": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", "@types/lodash": "4.14.195", "@types/uuid": "10.0.0", "lodash": "4.17.21", diff --git a/packages/cactus-test-tooling/CHANGELOG.md b/packages/cactus-test-tooling/CHANGELOG.md index a75f5182a3..e88be6a33c 100644 --- a/packages/cactus-test-tooling/CHANGELOG.md +++ b/packages/cactus-test-tooling/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +### Bug Fixes + +* **test-tooling:** use of hardcoded password ([63f2943](https://github.com/hyperledger/cactus/commit/63f2943d47960d2e09cd527da77f661b0f9265b2)) + # [2.0.0-rc.6](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-tooling diff --git a/packages/cactus-test-tooling/package.json b/packages/cactus-test-tooling/package.json index 1ab8daaac7..93c3dd5491 100644 --- a/packages/cactus-test-tooling/package.json +++ b/packages/cactus-test-tooling/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-tooling", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Swiss army knife for test development. Main goal is to make pulling up test/dummy ledgers on the fly for tests easy, especially for test cases that are about simulating clean ledger state or wiped ledger state, etc.", "keywords": [ "Hyperledger", @@ -65,7 +65,7 @@ "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", "axios": "1.7.7", "compare-versions": "3.6.0", "dockerode": "3.3.0", diff --git a/packages/cactus-test-tooling/src/test/rust/fixtures/wasm-hello-world/Cargo.toml b/packages/cactus-test-tooling/src/test/rust/fixtures/wasm-hello-world/Cargo.toml index a676639d40..88f6dc1a04 100644 --- a/packages/cactus-test-tooling/src/test/rust/fixtures/wasm-hello-world/Cargo.toml +++ b/packages/cactus-test-tooling/src/test/rust/fixtures/wasm-hello-world/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world" -version = "2.0.0-rc.7" +version = "2.0.0" authors = ["Hyperledger Cactus Contributors"] edition = "2018" diff --git a/packages/cactus-test-verifier-client/CHANGELOG.md b/packages/cactus-test-verifier-client/CHANGELOG.md index 2538e6c767..57d40a4c4a 100644 --- a/packages/cactus-test-verifier-client/CHANGELOG.md +++ b/packages/cactus-test-verifier-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-test-verifier-client + # [2.0.0-rc.6](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-test-verifier-client diff --git a/packages/cactus-test-verifier-client/package.json b/packages/cactus-test-verifier-client/package.json index 8ce2c02460..3081910c8a 100644 --- a/packages/cactus-test-verifier-client/package.json +++ b/packages/cactus-test-verifier-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-test-verifier-client", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Integration and stress tests for the verifier client.", "keywords": [ "Hyperledger", @@ -46,13 +46,13 @@ "stress-test-inspect": "node --expose-gc --inspect-brk --no-opt dist/lib/main/typescript/verifier-with-go-eth-stress-check.js" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.7", - "@hyperledger/cactus-test-geth-ledger": "2.0.0-rc.7", - "@hyperledger/cactus-test-tooling": "2.0.0-rc.7", - "@hyperledger/cactus-verifier-client": "2.0.0-rc.7", + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", + "@hyperledger/cactus-test-geth-ledger": "2.0.0", + "@hyperledger/cactus-test-tooling": "2.0.0", + "@hyperledger/cactus-verifier-client": "2.0.0", "body-parser": "1.20.3", "express": "4.21.0", "log4js": "6.4.1", diff --git a/packages/cactus-verifier-client/CHANGELOG.md b/packages/cactus-verifier-client/CHANGELOG.md index 29c708c674..a3661981a8 100644 --- a/packages/cactus-verifier-client/CHANGELOG.md +++ b/packages/cactus-verifier-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cactus-verifier-client + # [2.0.0-rc.6](https://github.com/hyperledger/cactus/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cactus-verifier-client diff --git a/packages/cactus-verifier-client/package.json b/packages/cactus-verifier-client/package.json index fb09ca3198..e5da9e0599 100644 --- a/packages/cactus-verifier-client/package.json +++ b/packages/cactus-verifier-client/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cactus-verifier-client", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Verifier cactus client library to communicate with validators through socket.io", "keywords": [ "Hyperledger", @@ -42,17 +42,17 @@ "build": "tsc" }, "dependencies": { - "@hyperledger/cactus-common": "2.0.0-rc.7", - "@hyperledger/cactus-core-api": "2.0.0-rc.7" + "@hyperledger/cactus-common": "2.0.0", + "@hyperledger/cactus-core-api": "2.0.0" }, "devDependencies": { - "@hyperledger/cactus-api-client": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-corda": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-iroha2": "2.0.0-rc.7", - "@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.0.0-rc.7", + "@hyperledger/cactus-api-client": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-corda": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-iroha2": "2.0.0", + "@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.0.0", "jest-extended": "4.0.1", "rxjs": "7.8.1" }, diff --git a/weaver/common/protos-go/VERSION b/weaver/common/protos-go/VERSION index eb3174fda4..359a5b952d 100644 --- a/weaver/common/protos-go/VERSION +++ b/weaver/common/protos-go/VERSION @@ -1 +1 @@ -2.0.0-rc.7 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/weaver/common/protos-java-kt/README.md b/weaver/common/protos-java-kt/README.md index a2a8d84f3a..abac437a45 100644 --- a/weaver/common/protos-java-kt/README.md +++ b/weaver/common/protos-java-kt/README.md @@ -38,6 +38,6 @@ and then follow above 4 steps. 5) Add this to your build.gradle (change the version accordingly): ``` dependencies { - compile(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.0.0-rc.7") + compile(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.0.0") } ``` diff --git a/weaver/common/protos-java-kt/gradle.properties b/weaver/common/protos-java-kt/gradle.properties index e36ecc7e82..bf1445621d 100644 --- a/weaver/common/protos-java-kt/gradle.properties +++ b/weaver/common/protos-java-kt/gradle.properties @@ -1,4 +1,4 @@ name=Interop Protos group=org.hyperledger.cacti.weaver.protos -version=2.0.0-rc.7 +version=2.0.0 kotlin.incremental=false diff --git a/weaver/common/protos-js/CHANGELOG.md b/weaver/common/protos-js/CHANGELOG.md index 98a9ae4191..9a89741037 100644 --- a/weaver/common/protos-js/CHANGELOG.md +++ b/weaver/common/protos-js/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cacti-weaver-protos-js + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cacti-weaver-protos-js diff --git a/weaver/common/protos-js/package.json b/weaver/common/protos-js/package.json index ee72d295fe..8f7add06e9 100644 --- a/weaver/common/protos-js/package.json +++ b/weaver/common/protos-js/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-protos-js", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "Interop protos for Node JS (Weaver)", "keywords": [ "hyperledger", diff --git a/weaver/common/protos-rs/Cargo.toml b/weaver/common/protos-rs/Cargo.toml index ccc18daacb..b4bc3f1bc7 100644 --- a/weaver/common/protos-rs/Cargo.toml +++ b/weaver/common/protos-rs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "build-protos-rs" # Don't update this version, update the one in "pkg/Cargo.toml". -version = "2.0.0-rc.7" +version = "2.0.0" authors = ["Peter Somogyvari ", "Sandeep Nishad ", "Sandeep Nishad DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-corda -DOCKER_TAG=2.0.0-rc.7 +DOCKER_TAG=2.0.0 COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= RELAY_TLS= diff --git a/weaver/core/drivers/corda-driver/VERSION b/weaver/core/drivers/corda-driver/VERSION index eb3174fda4..359a5b952d 100644 --- a/weaver/core/drivers/corda-driver/VERSION +++ b/weaver/core/drivers/corda-driver/VERSION @@ -1 +1 @@ -2.0.0-rc.7 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/weaver/core/drivers/corda-driver/constants.properties b/weaver/core/drivers/corda-driver/constants.properties index 2a59969133..77575acc9c 100644 --- a/weaver/core/drivers/corda-driver/constants.properties +++ b/weaver/core/drivers/corda-driver/constants.properties @@ -12,4 +12,4 @@ grpcKotlinVersion=1.4.1 coroutinesVersion=1.8.1 bcprovName=bcpkix-jdk18on bcprovVersion=1.78.1 -cactiVersion=2.0.0-rc.7 +cactiVersion=2.0.0 diff --git a/weaver/core/drivers/corda-driver/gradle.properties b/weaver/core/drivers/corda-driver/gradle.properties index 817df4ede1..9d560389d5 100644 --- a/weaver/core/drivers/corda-driver/gradle.properties +++ b/weaver/core/drivers/corda-driver/gradle.properties @@ -1,5 +1,5 @@ kotlin.code.style=official name=driver-corda group=org.hyperledger.cacti.weaver.driver.corda -version=2.0.0-rc.7 +version=2.0.0 kotlin.incremental=false \ No newline at end of file diff --git a/weaver/core/drivers/fabric-driver/.env.docker.template b/weaver/core/drivers/fabric-driver/.env.docker.template index e319f1946c..01c01cacd6 100644 --- a/weaver/core/drivers/fabric-driver/.env.docker.template +++ b/weaver/core/drivers/fabric-driver/.env.docker.template @@ -17,7 +17,7 @@ LEVELDB_LOCKED_RETRY_BACKOFF_MSEC= ENABLE_MONITOR= MONITOR_SYNC_PERIOD= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-fabric -DOCKER_TAG=2.0.0-rc.7 +DOCKER_TAG=2.0.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/drivers/fabric-driver/CHANGELOG.md b/weaver/core/drivers/fabric-driver/CHANGELOG.md index 930e036d64..95bc9588c8 100644 --- a/weaver/core/drivers/fabric-driver/CHANGELOG.md +++ b/weaver/core/drivers/fabric-driver/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cacti-weaver-driver-fabric + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cacti-weaver-driver-fabric diff --git a/weaver/core/drivers/fabric-driver/VERSION b/weaver/core/drivers/fabric-driver/VERSION index eb3174fda4..359a5b952d 100644 --- a/weaver/core/drivers/fabric-driver/VERSION +++ b/weaver/core/drivers/fabric-driver/VERSION @@ -1 +1 @@ -2.0.0-rc.7 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/weaver/core/drivers/fabric-driver/package-local.json b/weaver/core/drivers/fabric-driver/package-local.json index e319c21873..7897368d15 100644 --- a/weaver/core/drivers/fabric-driver/package-local.json +++ b/weaver/core/drivers/fabric-driver/package-local.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-driver-fabric", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "", "repository": { "type": "git", diff --git a/weaver/core/drivers/fabric-driver/package.json b/weaver/core/drivers/fabric-driver/package.json index 17f3dbaf1d..09c5ecd048 100644 --- a/weaver/core/drivers/fabric-driver/package.json +++ b/weaver/core/drivers/fabric-driver/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-driver-fabric", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "", "repository": { "type": "git", @@ -20,8 +20,8 @@ "dependencies": { "@fidm/x509": "1.2.1", "@grpc/grpc-js": "1.11.3", - "@hyperledger/cacti-weaver-protos-js": "2.0.0-rc.7", - "@hyperledger/cacti-weaver-sdk-fabric": "2.0.0-rc.7", + "@hyperledger/cacti-weaver-protos-js": "2.0.0", + "@hyperledger/cacti-weaver-sdk-fabric": "2.0.0", "dotenv": "8.6.0", "fabric-ca-client": "2.2.20", "fabric-common": "2.2.20", diff --git a/weaver/core/identity-management/iin-agent/.env.docker.template b/weaver/core/identity-management/iin-agent/.env.docker.template index 9ae3c565a1..47ed16dabf 100644 --- a/weaver/core/identity-management/iin-agent/.env.docker.template +++ b/weaver/core/identity-management/iin-agent/.env.docker.template @@ -13,7 +13,7 @@ SYNC_PERIOD= AUTO_SYNC= TLS_CREDENTIALS_DIR= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-iin-agent -DOCKER_TAG=2.0.0-rc.7 +DOCKER_TAG=2.0.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/identity-management/iin-agent/CHANGELOG.md b/weaver/core/identity-management/iin-agent/CHANGELOG.md index 3756c07020..98a2630ccb 100644 --- a/weaver/core/identity-management/iin-agent/CHANGELOG.md +++ b/weaver/core/identity-management/iin-agent/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15) + +**Note:** Version bump only for package @hyperledger/cacti-weaver-iin-agent + # [2.0.0-rc.6](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-09-30) **Note:** Version bump only for package @hyperledger/cacti-weaver-iin-agent diff --git a/weaver/core/identity-management/iin-agent/VERSION b/weaver/core/identity-management/iin-agent/VERSION index eb3174fda4..359a5b952d 100644 --- a/weaver/core/identity-management/iin-agent/VERSION +++ b/weaver/core/identity-management/iin-agent/VERSION @@ -1 +1 @@ -2.0.0-rc.7 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/weaver/core/identity-management/iin-agent/package-local.json b/weaver/core/identity-management/iin-agent/package-local.json index 9c2d6609b8..6b25777a28 100644 --- a/weaver/core/identity-management/iin-agent/package-local.json +++ b/weaver/core/identity-management/iin-agent/package-local.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-iin-agent", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "", "repository": { "type": "git", diff --git a/weaver/core/identity-management/iin-agent/package.json b/weaver/core/identity-management/iin-agent/package.json index 00df1e7925..f098f89e3f 100644 --- a/weaver/core/identity-management/iin-agent/package.json +++ b/weaver/core/identity-management/iin-agent/package.json @@ -1,6 +1,6 @@ { "name": "@hyperledger/cacti-weaver-iin-agent", - "version": "2.0.0-rc.7", + "version": "2.0.0", "description": "", "repository": { "type": "git", @@ -20,8 +20,8 @@ "dependencies": { "@fidm/x509": "1.2.1", "@grpc/grpc-js": "1.11.3", - "@hyperledger/cacti-weaver-protos-js": "2.0.0-rc.7", - "@hyperledger/cacti-weaver-sdk-fabric": "2.0.0-rc.7", + "@hyperledger/cacti-weaver-protos-js": "2.0.0", + "@hyperledger/cacti-weaver-sdk-fabric": "2.0.0", "dotenv": "8.6.0", "fabric-ca-client": "2.2.20", "fabric-common": "2.2.20", diff --git a/weaver/core/network/corda-interop-app/README.md b/weaver/core/network/corda-interop-app/README.md index f83333233c..3c7296f5bc 100644 --- a/weaver/core/network/corda-interop-app/README.md +++ b/weaver/core/network/corda-interop-app/README.md @@ -89,8 +89,8 @@ and then follow above 4 steps. 5) Add this to your build.gradle (change the version accordingly): ``` dependencies { - compile(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.0.0-rc.7") - compile(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.0.0-rc.7") + compile(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.0.0") + compile(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.0.0") } ``` diff --git a/weaver/core/network/corda-interop-app/constants.properties b/weaver/core/network/corda-interop-app/constants.properties index 6d373999a5..5f02990fd8 100644 --- a/weaver/core/network/corda-interop-app/constants.properties +++ b/weaver/core/network/corda-interop-app/constants.properties @@ -12,4 +12,4 @@ nettyVersion=4.1.77.Final arrowVersion=0.10.4 jaxbVersion=2.3.1 protobufVersion=3.25.3 -cactiVersion=2.0.0-rc.7 +cactiVersion=2.0.0 diff --git a/weaver/core/network/corda-interop-app/gradle.properties b/weaver/core/network/corda-interop-app/gradle.properties index 87a9be9a7f..afd18cc227 100644 --- a/weaver/core/network/corda-interop-app/gradle.properties +++ b/weaver/core/network/corda-interop-app/gradle.properties @@ -1,4 +1,4 @@ name=Interoperability CorDapp group=org.hyperledger.cacti.weaver.imodule.corda -version=2.0.0-rc.7 +version=2.0.0 kotlin.incremental=false diff --git a/weaver/core/network/fabric-interop-cc/.env.template b/weaver/core/network/fabric-interop-cc/.env.template index f6098163dd..fd13a5abad 100644 --- a/weaver/core/network/fabric-interop-cc/.env.template +++ b/weaver/core/network/fabric-interop-cc/.env.template @@ -4,7 +4,7 @@ PEER= ORG= NETWORK= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-imodule-fabric-cc -DOCKER_TAG=2.0.0-rc.7 +DOCKER_TAG=2.0.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/network/fabric-interop-cc/contracts/interop/VERSION b/weaver/core/network/fabric-interop-cc/contracts/interop/VERSION index eb3174fda4..359a5b952d 100644 --- a/weaver/core/network/fabric-interop-cc/contracts/interop/VERSION +++ b/weaver/core/network/fabric-interop-cc/contracts/interop/VERSION @@ -1 +1 @@ -2.0.0-rc.7 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/weaver/core/network/fabric-interop-cc/contracts/interop/go.sum b/weaver/core/network/fabric-interop-cc/contracts/interop/go.sum index a2c2db1499..a0296503f3 100644 --- a/weaver/core/network/fabric-interop-cc/contracts/interop/go.sum +++ b/weaver/core/network/fabric-interop-cc/contracts/interop/go.sum @@ -183,3 +183,9 @@ github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/assetexc github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.0.0-rc.7/go.mod h1:47hBkpf71KbrfA/YxUPJ82crC1q/ji1h5uaN25/U0Ns= github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/utils/v2 v2.0.0-rc.7 h1:O0cnG/KHCpPQVtrPICKV3FUh3suvok0p+heEP8EOzFw= github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/utils/v2 v2.0.0-rc.7/go.mod h1:u84QGn03fQ2Xtr0wCJSU4TyVJ3tUK6QPcSkRdKv4FlA= +github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0 h1:0nLABzjWq+f8R0viPCOuxnZocK95OKruPIBXxKY/VVA= +github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= +github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.0.0 h1:E3rGeMoW4koNYkiovcRF4L1FNSODbURkB8ElnroRPv4= +github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/assetexchange/v2 v2.0.0/go.mod h1:47hBkpf71KbrfA/YxUPJ82crC1q/ji1h5uaN25/U0Ns= +github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/utils/v2 v2.0.0 h1:79yUNNg1moRSP7wr6nC4/smI+/neziluDsDh+wrLhls= +github.com/hyperledger/cacti/weaver/core/network/fabric-interop-cc/libs/utils/v2 v2.0.0/go.mod h1:u84QGn03fQ2Xtr0wCJSU4TyVJ3tUK6QPcSkRdKv4FlA= diff --git a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/VERSION b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/VERSION index eb3174fda4..359a5b952d 100644 --- a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/VERSION +++ b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/VERSION @@ -1 +1 @@ -2.0.0-rc.7 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.sum b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.sum index da82978a6e..fbdab4a1da 100644 --- a/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.sum +++ b/weaver/core/network/fabric-interop-cc/interfaces/asset-mgmt/go.sum @@ -154,3 +154,5 @@ github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.6 h1:PBLqa7tvh github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.6/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7 h1:89FQMNKL73wI0gaW7+fsHG4aVR1ghS3Gy6fHlGZO1Hg= github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= +github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0 h1:0nLABzjWq+f8R0viPCOuxnZocK95OKruPIBXxKY/VVA= +github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= diff --git a/weaver/core/network/fabric-interop-cc/libs/assetexchange/VERSION b/weaver/core/network/fabric-interop-cc/libs/assetexchange/VERSION index eb3174fda4..359a5b952d 100644 --- a/weaver/core/network/fabric-interop-cc/libs/assetexchange/VERSION +++ b/weaver/core/network/fabric-interop-cc/libs/assetexchange/VERSION @@ -1 +1 @@ -2.0.0-rc.7 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.sum b/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.sum index 29320d77b1..4eb0a5dc04 100644 --- a/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.sum +++ b/weaver/core/network/fabric-interop-cc/libs/assetexchange/go.sum @@ -165,3 +165,5 @@ github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.6 h1:PBLqa7tvh github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.6/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7 h1:89FQMNKL73wI0gaW7+fsHG4aVR1ghS3Gy6fHlGZO1Hg= github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= +github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0 h1:0nLABzjWq+f8R0viPCOuxnZocK95OKruPIBXxKY/VVA= +github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= diff --git a/weaver/core/network/fabric-interop-cc/libs/utils/VERSION b/weaver/core/network/fabric-interop-cc/libs/utils/VERSION index eb3174fda4..359a5b952d 100644 --- a/weaver/core/network/fabric-interop-cc/libs/utils/VERSION +++ b/weaver/core/network/fabric-interop-cc/libs/utils/VERSION @@ -1 +1 @@ -2.0.0-rc.7 \ No newline at end of file +2.0.0 \ No newline at end of file diff --git a/weaver/core/network/fabric-interop-cc/libs/utils/go.sum b/weaver/core/network/fabric-interop-cc/libs/utils/go.sum index f4645f6a7a..a261045e1f 100644 --- a/weaver/core/network/fabric-interop-cc/libs/utils/go.sum +++ b/weaver/core/network/fabric-interop-cc/libs/utils/go.sum @@ -163,3 +163,5 @@ github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.6 h1:PBLqa7tvh github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.6/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7 h1:89FQMNKL73wI0gaW7+fsHG4aVR1ghS3Gy6fHlGZO1Hg= github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0-rc.7/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= +github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0 h1:0nLABzjWq+f8R0viPCOuxnZocK95OKruPIBXxKY/VVA= +github.com/hyperledger/cacti/weaver/common/protos-go/v2 v2.0.0/go.mod h1:UtCqRb0t+R1fC+SgqmLvj04bHx3o6O6ZDwaHHNl+k0s= diff --git a/weaver/core/relay/.env.template b/weaver/core/relay/.env.template index 8dde7675c4..4452bfde6e 100644 --- a/weaver/core/relay/.env.template +++ b/weaver/core/relay/.env.template @@ -2,7 +2,7 @@ PATH_TO_CONFIG= RELAY_NAME=<"name" in config toml file> RELAY_PORT= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server -DOCKER_TAG=2.0.0-rc.7 +DOCKER_TAG=2.0.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/relay/.env.template.2 b/weaver/core/relay/.env.template.2 index f764950535..fda9907e26 100644 --- a/weaver/core/relay/.env.template.2 +++ b/weaver/core/relay/.env.template.2 @@ -9,7 +9,7 @@ RELAY_PORT= DB_OPEN_MAX_RETRIES= DB_OPEN_RETRY_BACKOFF_MSEC= DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server -DOCKER_TAG=2.0.0-rc.7 +DOCKER_TAG=2.0.0 EXTERNAL_NETWORK= COMPOSE_PROJECT_NAME= COMPOSE_PROJECT_NETWORK= diff --git a/weaver/core/relay/Cargo.lock b/weaver/core/relay/Cargo.lock index 3e9ddd42c0..9717dd4386 100644 --- a/weaver/core/relay/Cargo.lock +++ b/weaver/core/relay/Cargo.lock @@ -223,7 +223,7 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "cacti_weaver_protos_rs" -version = "2.0.0-rc.7" +version = "2.0.0" dependencies = [ "prost", "serde 1.0.201", @@ -1323,7 +1323,7 @@ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" [[package]] name = "relay" -version = "2.0.0-rc.7" +version = "2.0.0" dependencies = [ "base64 0.20.0", "bincode", diff --git a/weaver/core/relay/Cargo.toml b/weaver/core/relay/Cargo.toml index e0da0f29c1..64108dc97f 100644 --- a/weaver/core/relay/Cargo.toml +++ b/weaver/core/relay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "relay" -version = "2.0.0-rc.7" +version = "2.0.0" authors = ["Antony Targett ", "Nick Waywood ", "Sandeep Nishad