Skip to content

Commit cc8deb8

Browse files
committed
chore(release): publish v1.1.0
Also manually changing the "publishConfig" property of the packages/cactus-cmd-socketio-server/package.json file because it was not set to public which excluded it from the release automation altogether in previous releases, causing this bug to be reported: hyperledger-cacti#2069 Fixes hyperledger-cacti#2069 Signed-off-by: Peter Somogyvari <[email protected]>
1 parent f7e726c commit cc8deb8

File tree

92 files changed

+696
-2286
lines changed

Some content is hidden

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

92 files changed

+696
-2286
lines changed

CHANGELOG.md

+50-85
Large diffs are not rendered by default.

examples/cactus-check-connection-ethereum-validator/CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6-
# [1.0.0](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.3...v1.0.0) (2022-03-16)
6+
# [1.1.0](https://github.com/hyperledger/cactus/compare/v1.0.0...v1.1.0) (2022-10-17)
7+
8+
### Bug Fixes
79

10+
* resolve some CodeQL warnings ([824f5c8](https://github.com/hyperledger/cactus/commit/824f5c80ce5efbd9765699fdd635ab1d7f29cea2))
11+
12+
# [1.0.0](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.3...v1.0.0) (2022-03-16)
813

914
### Bug Fixes
1015

1116
* **cmd-api-server:** upgrade socket.io - CVE-2022-21676 ([8e1c69e](https://github.com/hyperledger/cactus/commit/8e1c69e7b8ab5e4ccc31a0ec183a9777ccc22cdc)), closes [#1914](https://github.com/hyperledger/cactus/issues/1914)
1217

13-
1418
### Features
1519

1620
* **cactus-api-client:** common verifier-factory ([2f70a64](https://github.com/hyperledger/cactus/commit/2f70a6473f30446859427335f2d3602bddca636d)), closes [#1878](https://github.com/hyperledger/cactus/issues/1878)

examples/cactus-check-connection-ethereum-validator/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "check-connection-ethereum-validator",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"private": true,
55
"scripts": {
66
"start": "node ../../dist/packages/cactus-cmd-socketio-server/src/main/typescript/routing-interface/www.js",
@@ -14,11 +14,11 @@
1414
"init-check-connection-ethereum-validator": "ln -s ../examples/cactus-check-connection-ethereum-validator/node_modules ../../dist/node_modules"
1515
},
1616
"dependencies": {
17-
"socket.io": "4.4.1",
18-
"escape-html": "1.0.3"
17+
"escape-html": "1.0.3",
18+
"socket.io": "4.4.1"
1919
},
2020
"devDependencies": {
21-
"@types/node": "15.14.7",
22-
"@types/escape-html": "1.0.1"
21+
"@types/escape-html": "1.0.1",
22+
"@types/node": "15.14.7"
2323
}
2424
}

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

+4-43
Original file line numberDiff line numberDiff line change
@@ -3,102 +3,63 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6-
# [1.0.0](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.3...v1.0.0) (2022-03-16)
6+
# [1.1.0](https://github.com/hyperledger/cactus/compare/v1.0.0...v1.1.0) (2022-10-17)
7+
8+
**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend
79

10+
# [1.0.0](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.3...v1.0.0) (2022-03-16)
811

912
### Features
1013

1114
* **connector-xdai:** remove hard dependency on keychain ([da793c5](https://github.com/hyperledger/cactus/commit/da793c568260fd70b80f855833bc60c116099a65)), closes [#1162](https://github.com/hyperledger/cactus/issues/1162)
1215

13-
14-
15-
16-
1716
# [1.0.0-rc.3](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.2...v1.0.0-rc.3) (2021-12-07)
1817

19-
2018
### Bug Fixes
2119

2220
* **security:** upgrade fabric-common to 2.2.10 or later ([45c4a69](https://github.com/hyperledger/cactus/commit/45c4a69fb86964bc4e7018c31c5914a0063c7638)), closes [#1600](https://github.com/hyperledger/cactus/issues/1600)
2321

24-
25-
26-
27-
2822
# [1.0.0-rc.2](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.1...v1.0.0-rc.2) (2021-11-01)
2923

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

32-
33-
34-
35-
3626
# [1.0.0-rc.1](https://github.com/hyperledger/cactus/compare/v0.10.0...v1.0.0-rc.1) (2021-10-11)
3727

38-
3928
### Bug Fixes
4029

4130
* **webpack:** prod build chokes on upgraded ssh2 binaries [#1405](https://github.com/hyperledger/cactus/issues/1405) ([18979fb](https://github.com/hyperledger/cactus/commit/18979fb33880d8ca30e2fda01fb3d598deb839f9))
4231

43-
44-
45-
46-
4732
# [0.10.0](https://github.com/hyperledger/cactus/compare/v0.9.0...v0.10.0) (2021-09-28)
4833

49-
5034
### Bug Fixes
5135

5236
* **test:** flaky fabric AIO container boot [#876](https://github.com/hyperledger/cactus/issues/876) ([beefcef](https://github.com/hyperledger/cactus/commit/beefcefbebbdb9a22d08118b6fb2e667493504cf)), closes [#718](https://github.com/hyperledger/cactus/issues/718) [#320](https://github.com/hyperledger/cactus/issues/320) [#319](https://github.com/hyperledger/cactus/issues/319)
5337

54-
55-
56-
57-
5838
# [0.9.0](https://github.com/hyperledger/cactus/compare/v0.8.0...v0.9.0) (2021-08-31)
5939

60-
6140
### Features
6241

6342
* besu private transaction support ([53b4980](https://github.com/hyperledger/cactus/commit/53b49808615aced96b628bf1498a1b62c5c9ca42))
6443
* **cmd-api-server:** support grpc web services [#1189](https://github.com/hyperledger/cactus/issues/1189) ([4cace1d](https://github.com/hyperledger/cactus/commit/4cace1dca3377e09d2ed37fdadeec6b125d47896))
6544

66-
67-
68-
69-
7045
# [0.8.0](https://github.com/hyperledger/cactus/compare/v0.7.0...v0.8.0) (2021-08-17)
7146

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

74-
75-
76-
77-
7849
# [0.7.0](https://github.com/hyperledger/cactus/compare/v0.6.0...v0.7.0) (2021-08-04)
7950

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

82-
83-
84-
85-
8653
# [0.6.0](https://github.com/hyperledger/cactus/compare/v0.4.1...v0.6.0) (2021-07-19)
8754

88-
8955
### Bug Fixes
9056

9157
* **connector-corda:** container image kotlin compilation fails in model ([a8a4531](https://github.com/hyperledger/cactus/commit/a8a4531d379fe16d4c991802525ec573a7e3ede1))
9258

93-
9459
### Features
9560

9661
* **cmd-api-server:** add Socket.IO as transport [#297](https://github.com/hyperledger/cactus/issues/297) ([51c586a](https://github.com/hyperledger/cactus/commit/51c586aa01bff3e75f0e87be43f0764b30d8222c))
9762

98-
99-
100-
101-
10263
# [0.5.0](https://github.com/hyperledger/cactus/compare/v0.4.1...v0.5.0) (2021-05-19)
10364

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

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

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

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

+3-39
Original file line numberDiff line numberDiff line change
@@ -3,94 +3,58 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6-
# [1.0.0](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.3...v1.0.0) (2022-03-16)
6+
# [1.1.0](https://github.com/hyperledger/cactus/compare/v1.0.0...v1.1.0) (2022-10-17)
77

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

10+
# [1.0.0](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.3...v1.0.0) (2022-03-16)
1011

11-
12-
12+
**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin
1313

1414
# [1.0.0-rc.3](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.2...v1.0.0-rc.3) (2021-12-07)
1515

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

18-
19-
20-
21-
2218
# [1.0.0-rc.2](https://github.com/hyperledger/cactus/compare/v1.0.0-rc.1...v1.0.0-rc.2) (2021-11-01)
2319

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

26-
27-
28-
29-
3022
# [1.0.0-rc.1](https://github.com/hyperledger/cactus/compare/v0.10.0...v1.0.0-rc.1) (2021-10-11)
3123

32-
3324
### Bug Fixes
3425

3526
* **webpack:** prod build chokes on upgraded ssh2 binaries [#1405](https://github.com/hyperledger/cactus/issues/1405) ([18979fb](https://github.com/hyperledger/cactus/commit/18979fb33880d8ca30e2fda01fb3d598deb839f9))
3627

37-
38-
39-
40-
4128
# [0.10.0](https://github.com/hyperledger/cactus/compare/v0.9.0...v0.10.0) (2021-09-28)
4229

43-
4430
### Features
4531

4632
* **core-api:** discontinue dedicated HTTP listeners for web service plugins ([3fbd2fc](https://github.com/hyperledger/cactus/commit/3fbd2fcb60d49090bf4e986bea74d4e988348659)), closes [#358](https://github.com/hyperledger/cactus/issues/358)
4733
* **core:** add installOpenapiValidationMiddleware ([1f6ea5f](https://github.com/hyperledger/cactus/commit/1f6ea5fe3aa1ba997a655098d632034f13f232a5)), closes [#847](https://github.com/hyperledger/cactus/issues/847)
4834

49-
50-
51-
52-
5335
# [0.9.0](https://github.com/hyperledger/cactus/compare/v0.8.0...v0.9.0) (2021-08-31)
5436

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

57-
58-
59-
60-
6139
# [0.8.0](https://github.com/hyperledger/cactus/compare/v0.7.0...v0.8.0) (2021-08-17)
6240

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

65-
66-
67-
68-
6943
# [0.7.0](https://github.com/hyperledger/cactus/compare/v0.6.0...v0.7.0) (2021-08-04)
7044

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

73-
74-
75-
76-
7747
# [0.6.0](https://github.com/hyperledger/cactus/compare/v0.4.1...v0.6.0) (2021-07-19)
7848

79-
8049
### Bug Fixes
8150

8251
* **carbon-accounting:** deleted incorrect plugin aspect ([e30f48a](https://github.com/hyperledger/cactus/commit/e30f48abcc8dfcd6fb17ec1ba90c4e742222543f))
8352
* **connector-corda:** container image kotlin compilation fails in model ([a8a4531](https://github.com/hyperledger/cactus/commit/a8a4531d379fe16d4c991802525ec573a7e3ede1))
8453

85-
8654
### Features
8755

8856
* **core-api:** plugin interface async initializer ([d40f68b](https://github.com/hyperledger/cactus/commit/d40f68bd9eaff498df8514fe7397986b5a2f865d))
8957

90-
91-
92-
93-
9458
# [0.5.0](https://github.com/hyperledger/cactus/compare/v0.4.1...v0.5.0) (2021-05-19)
9559

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

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

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "An example business logic plugin implementation for Cactus",
55
"keywords": [
66
"Hyperledger",
@@ -53,14 +53,14 @@
5353
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
5454
},
5555
"dependencies": {
56-
"@hyperledger/cactus-api-client": "1.0.0",
57-
"@hyperledger/cactus-common": "1.0.0",
58-
"@hyperledger/cactus-core": "1.0.0",
59-
"@hyperledger/cactus-core-api": "1.0.0",
60-
"@hyperledger/cactus-plugin-consortium-manual": "1.0.0",
61-
"@hyperledger/cactus-plugin-keychain-memory": "1.0.0",
62-
"@hyperledger/cactus-plugin-ledger-connector-fabric": "1.0.0",
63-
"@hyperledger/cactus-plugin-ledger-connector-xdai": "1.0.0",
56+
"@hyperledger/cactus-api-client": "1.1.0",
57+
"@hyperledger/cactus-common": "1.1.0",
58+
"@hyperledger/cactus-core": "1.1.0",
59+
"@hyperledger/cactus-core-api": "1.1.0",
60+
"@hyperledger/cactus-plugin-consortium-manual": "1.1.0",
61+
"@hyperledger/cactus-plugin-keychain-memory": "1.1.0",
62+
"@hyperledger/cactus-plugin-ledger-connector-fabric": "1.1.0",
63+
"@hyperledger/cactus-plugin-ledger-connector-xdai": "1.1.0",
6464
"async-exit-hook": "2.0.1",
6565
"axios": "0.21.4",
6666
"express": "4.17.1",

0 commit comments

Comments
 (0)