Skip to content

Commit b154a3f

Browse files
committed
Prepare 2.4.2 release
Signed-off-by: James Taylor <[email protected]> # Conflicts: # libraries/fabric-shim-crypto/package.json # test/chaincodes/encryption/package.json # test/fv/package.json
1 parent 4467c45 commit b154a3f

File tree

29 files changed

+88
-61
lines changed

29 files changed

+88
-61
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## v2.4.2
2+
Wed 4 May 2022 11:30:35 BST
3+
4+
* [4467c458](https://github.com/hyperledger/fabric-chaincode-node/commit/4467c458) Allow jsdoc push to fail (#331)
5+
* [3f1dbffd](https://github.com/hyperledger/fabric-chaincode-node/commit/3f1dbffd) Remove fabric-shim-crypto package
6+
* [d9cfc3d0](https://github.com/hyperledger/fabric-chaincode-node/commit/d9cfc3d0) Correct 2.4 to be Node 16
7+
* [e1ae5b31](https://github.com/hyperledger/fabric-chaincode-node/commit/e1ae5b31) Fixing a command which is giving errors while copying and pasting (#322)
8+
* [671a5442](https://github.com/hyperledger/fabric-chaincode-node/commit/671a5442) Some updates to the latest tool versions
9+
* [2d861535](https://github.com/hyperledger/fabric-chaincode-node/commit/2d861535) Replace RocketChat with Discord
10+
* [f7288eba](https://github.com/hyperledger/fabric-chaincode-node/commit/f7288eba) add missing bracket (#312)
11+
* [a53121f0](https://github.com/hyperledger/fabric-chaincode-node/commit/a53121f0) Fix Doc: Type of args in invokeChaincode() is string[] (#311)
12+
113
## v2.4.1
214
Mon Nov 29 10:39:51 GMT 2021
315

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following [Rush categories](https://rushjs.io/pages/maintainer/add_to_repo/)
2222

2323
### Pre-requisites
2424

25-
* node v12.16.1 (npm v6.4.1) => recommend to use [nvm](https://github.com/nvm-sh/nvm)
25+
* node v16.4.0 (npm v8.0.0) => recommend to use [nvm](https://github.com/nvm-sh/nvm)
2626
* rush => `npm install -g @microsoft/rush`
2727

2828
> Note that npm v6 has some bugs that mean adding new dependencies etc are not properly picked up. Longer term we should consider moving to yarn or pnpm. However in practice this isn't a serious problem and has been possible to be worked around by issuing `rm ./common/config/rush/npm-shrinkwrap.json` and then `rush update`

TUTORIAL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The dependencies of `fabric-contract-api` and `fabric-shim` will be required.
2828
"author": "",
2929
"license": "Apache-2.0",
3030
"dependencies": {
31-
"fabric-contract-api": "^2.4.1",
32-
"fabric-shim": "^2.4.1"
31+
"fabric-contract-api": "^2.4.2",
32+
"fabric-shim": "^2.4.2"
3333
}
3434
}
3535

apis/fabric-contract-api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-contract-api",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"tag": "release",
55
"description": "A node.js implementation of Hyperledger Fabric chaincode shim, to allow endorsing peers and user-provided chaincodes to communicate with each other",
66
"main": "index.js",
@@ -46,7 +46,7 @@
4646
"lines": 100
4747
},
4848
"dependencies": {
49-
"fabric-shim-api": "2.4.1",
49+
"fabric-shim-api": "2.4.2",
5050
"class-transformer": "^0.4.0",
5151
"fast-safe-stringify": "^2.1.1",
5252
"get-params": "^0.1.2",

apis/fabric-shim-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-shim-api",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"tag": "release",
55
"description": "A node.js API of Hyperledger Fabric chaincode shim, to allow endorsing peers and user-provided chaincodes to communicate with each other",
66
"main": "index.js",

ci/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pool:
5252
#
5353
# Publish to NPM on release builds (they are the github tagged releases)
5454
# Publish to NPM on nightly builds when there is something to build
55-
# the ids will be of the format 2.4.1.{commitid}
55+
# the ids will be of the format 2.4.2.{commitid}
5656
#
5757
stages:
5858

docker/fabric-nodeenv/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-nodeenv",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"description": "",
55
"main": "docker.js",
66
"scripts": {
@@ -11,6 +11,6 @@
1111
"license": "Apache-2.0",
1212
"dependencies": {
1313
"git-rev-sync": "3.0.1",
14-
"toolchain": "2.4.1"
14+
"toolchain": "2.4.2"
1515
}
1616
}

docs/_jsdoc/tutorials/using-chaincodeinterface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cd mycc
88
// create a new node project
99
npm init
1010
// install fabric-shim at main branch
11-
npm install [email protected].1
11+
npm install [email protected].2
1212
// or using the released version
1313
npm install fabric-shim
1414
touch mychaincode.js
@@ -68,7 +68,7 @@ Finally, update the "start" script in package.json to "node mychaincode.js":
6868
"engineStrict": true,
6969
"license": "Apache-2.0",
7070
"dependencies": {
71-
"fabric-shim": "2.4.1"
71+
"fabric-shim": "2.4.2"
7272
}
7373
}
7474
```

docs/_jsdoc/tutorials/using-contractinterface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The dependencies of `fabric-contract-api` and `fabric-shim` will be required.
2828
"author": "",
2929
"license": "Apache-2.0",
3030
"dependencies": {
31-
"fabric-contract-api": "^2.4.1",
32-
"fabric-shim": "^2.4.1"
31+
"fabric-contract-api": "^2.4.2",
32+
"fabric-shim": "^2.4.2"
3333
}
3434
}
3535

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "fabric-shim-docs",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"description": "",
55
"private": true,
66
"scripts": {
77
"build": "npm run docs",
88
"docs": "rimraf ./gen && jsdoc -c ./_jsdoc.json"
99
},
1010
"dependencies": {
11-
"fabric-ledger": "2.4.1"
11+
"fabric-ledger": "2.4.2"
1212
},
1313
"devDependencies": {
1414
"ink-docstrap": "^1.3.2",

0 commit comments

Comments
 (0)