Skip to content

Commit

Permalink
chore(release): publish v2.0.0-rc.7
Browse files Browse the repository at this point in the history
Hot-fixing the automatic release issuance workflow for npm packages yet again.
The previous fix is still believed to bo correct conceptually, there was just
a silly mistake of the mixing up of the ghcr vs npm tokens in the environment
variables that get populated from the secrets.

Fixes #451

Signed-off-by: Peter Somogyvari <[email protected]>
  • Loading branch information
petermetz committed Oct 2, 2024
1 parent ce5f9df commit 367d9ee
Show file tree
Hide file tree
Showing 1,130 changed files with 1,897 additions and 1,855 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/all-nodejs-packages-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: lerna-publish-npm
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "hyperledger-ghci"
Expand All @@ -65,7 +65,7 @@ jobs:
# instead of npmjs.org so that we can publish the packages everywhere.
- name: lerna-publish-ghcr
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "hyperledger-ghci"
Expand Down
8 changes: 4 additions & 4 deletions examples/cactus-common-example-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-common-example-server",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"description": "Allows Cactus nodes to interact with HTLC ETH contracts",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -42,8 +42,8 @@
"build:dev:backend:postbuild": "cp -f ../../yarn.lock ./dist/"
},
"dependencies": {
"@hyperledger/cactus-common": "2.0.0-rc.6",
"@hyperledger/cactus-core-api": "2.0.0-rc.6",
"@hyperledger/cactus-common": "2.0.0-rc.7",
"@hyperledger/cactus-core-api": "2.0.0-rc.7",
"@types/node": "18.11.9",
"body-parser": "1.20.3",
"config": "3.3.7",
Expand All @@ -66,7 +66,7 @@
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"@hyperledger/cactus-test-tooling": "2.0.0-rc.6",
"@hyperledger/cactus-test-tooling": "2.0.0-rc.7",
"@types/config": "3.3.0",
"@types/cookie-parser": "1.4.5",
"@types/debug": "4.1.8",
Expand Down
22 changes: 11 additions & 11 deletions examples/cactus-example-carbon-accounting-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-carbon-accounting-backend",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"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",
Expand Down Expand Up @@ -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.6",
"@hyperledger/cactus-cmd-api-server": "2.0.0-rc.6",
"@hyperledger/cactus-common": "2.0.0-rc.6",
"@hyperledger/cactus-core": "2.0.0-rc.6",
"@hyperledger/cactus-core-api": "2.0.0-rc.6",
"@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.6",
"@hyperledger/cactus-test-tooling": "2.0.0-rc.6",
"@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",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"async-exit-hook": "2.0.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"description": "An example business logic plugin implementation for Cactus",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -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.6",
"@hyperledger/cactus-common": "2.0.0-rc.6",
"@hyperledger/cactus-core": "2.0.0-rc.6",
"@hyperledger/cactus-core-api": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.6",
"@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",
"async-exit-hook": "2.0.1",
"axios": "1.7.7",
"express": "4.20.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.6",
"version": "2.0.0-rc.7",
"license": {
"name": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.6",
"version": "2.0.0-rc.7",
"license": {
"name": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
- API version: 2.0.0-rc.7
- Package version:
- Build package: org.openapitools.codegen.languages.KotlinClientCodegen

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
* The version of the OpenAPI document: 2.0.0-rc.7
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
* The version of the OpenAPI document: 2.0.0-rc.7
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
* The version of the OpenAPI document: 2.0.0-rc.7
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
* The version of the OpenAPI document: 2.0.0-rc.7
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.6
* The version of the OpenAPI document: 2.0.0-rc.7
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
16 changes: 8 additions & 8 deletions examples/cactus-example-carbon-accounting-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-carbon-accounting-frontend",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"description": "The frontend component of an example project demonstrating how Cacti can be used for cross-chain dapp development.",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -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.6",
"@hyperledger/cactus-common": "2.0.0-rc.6",
"@hyperledger/cactus-core-api": "2.0.0-rc.6",
"@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.6",
"@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",
"@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",
Expand Down
26 changes: 13 additions & 13 deletions examples/cactus-example-cbdc-bridging-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-cbdc-bridging-backend",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"description": "An example application showing how to use Cacti when implementing a CBDC bridging application between Hyperledger Fabric and Hyperledger Besu.",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -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.6",
"@hyperledger/cactus-cmd-api-server": "2.0.0-rc.6",
"@hyperledger/cactus-common": "2.0.0-rc.6",
"@hyperledger/cactus-core": "2.0.0-rc.6",
"@hyperledger/cactus-core-api": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-object-store-ipfs": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-satp-hermes": "2.0.0-rc.6",
"@hyperledger/cactus-test-tooling": "2.0.0-rc.6",
"@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",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"async-exit-hook": "2.0.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cacti-example-cbdc-bridging-frontend",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"private": true,
"license": "Apache-2.0",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-discounted-asset-trade-client",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"description": "Client for interacting with discounted asset trade sample app and some tools for setting up indy enviroment",
"keywords": [
"Hyperledger",
Expand Down
18 changes: 9 additions & 9 deletions examples/cactus-example-discounted-asset-trade/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-discounted-asset-trade",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"private": true,
"license": "Apache-2.0",
"main": "dist/www.js",
Expand All @@ -14,14 +14,14 @@
"start-dockerless": "node ./dist/www.js"
},
"dependencies": {
"@hyperledger/cactus-common": "2.0.0-rc.6",
"@hyperledger/cactus-common-example-server": "2.0.0-rc.6",
"@hyperledger/cactus-core": "2.0.0-rc.6",
"@hyperledger/cactus-core-api": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-aries": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.6",
"@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",
"@types/node": "18.11.9",
"axios": "1.7.7",
"body-parser": "1.20.3",
Expand Down
16 changes: 8 additions & 8 deletions examples/cactus-example-electricity-trade/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-electricity-trade",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"private": true,
"license": "Apache-2.0",
"main": "dist/www.js",
Expand All @@ -14,13 +14,13 @@
"start-dockerless": "node ./dist/www.js"
},
"dependencies": {
"@hyperledger/cactus-common": "2.0.0-rc.6",
"@hyperledger/cactus-common-example-server": "2.0.0-rc.6",
"@hyperledger/cactus-core": "2.0.0-rc.6",
"@hyperledger/cactus-core-api": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-ethereum": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-sawtooth": "2.0.0-rc.6",
"@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",
"@types/node": "18.11.9",
"body-parser": "1.20.3",
"cookie-parser": "1.4.6",
Expand Down
28 changes: 14 additions & 14 deletions examples/cactus-example-supply-chain-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-supply-chain-backend",
"version": "2.0.0-rc.6",
"version": "2.0.0-rc.7",
"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",
Expand Down Expand Up @@ -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.6",
"@hyperledger/cactus-cmd-api-server": "2.0.0-rc.6",
"@hyperledger/cactus-common": "2.0.0-rc.6",
"@hyperledger/cactus-core": "2.0.0-rc.6",
"@hyperledger/cactus-core-api": "2.0.0-rc.6",
"@hyperledger/cactus-example-supply-chain-business-logic-plugin": "2.0.0-rc.6",
"@hyperledger/cactus-example-supply-chain-frontend": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-consortium-manual": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0-rc.6",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0-rc.6",
"@hyperledger/cactus-test-tooling": "2.0.0-rc.6",
"@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",
"async-exit-hook": "2.0.1",
"axios": "1.7.7",
"dotenv": "16.0.0",
Expand Down
Loading

0 comments on commit 367d9ee

Please sign in to comment.