Skip to content

Commit e8361de

Browse files
authored
Prepare 2.1.4 release (#174)
Signed-off-by: James Taylor <[email protected]>
1 parent 81e1123 commit e8361de

File tree

22 files changed

+71
-46
lines changed

22 files changed

+71
-46
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v2.1.4
2+
Mon 22 Jun 2020 14:51:02 BST
3+
4+
* [81e1123](https://github.com/hyperledger/fabric-chaincode-node/commit/81e1123) Specify exact version of winston dependency
5+
16
## v2.1.3
27
Fri 19 Jun 15:26:50 BST 2020
38

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.1.0",
32-
"fabric-shim": "^2.1.0"
31+
"fabric-contract-api": "^2.1.4",
32+
"fabric-shim": "^2.1.4"
3333
}
3434
}
3535

apis/fabric-contract-api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-contract-api",
3-
"version": "2.1.3",
4-
"tag": "unstable",
3+
"version": "2.1.4",
4+
"tag": "latest",
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",
77
"repository": {
@@ -46,7 +46,7 @@
4646
"lines": 100
4747
},
4848
"dependencies": {
49-
"fabric-shim-api": "2.1.3",
49+
"fabric-shim-api": "2.1.4",
5050
"class-transformer": "^0.2.2",
5151
"fast-safe-stringify": "~2.0.7",
5252
"get-params": "^0.1.2",

apis/fabric-shim-api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-shim-api",
3-
"version": "2.1.3",
4-
"tag": "unstable",
3+
"version": "2.1.4",
4+
"tag": "latest",
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",
77
"repository": {

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 master branch
11-
npm install [email protected].3-unstable
11+
npm install [email protected].4
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.1.3"
71+
"fabric-shim": "2.1.4"
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.1.0",
32-
"fabric-shim": "^2.1.0"
31+
"fabric-contract-api": "^2.1.4",
32+
"fabric-shim": "^2.1.4"
3333
}
3434
}
3535

libraries/fabric-shim-crypto/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-shim-crypto",
3-
"version": "2.1.3",
4-
"tag": "unstable",
3+
"version": "2.1.4",
4+
"tag": "latest",
55
"description": "A node.js implementation of encryption library for Hyperledger Fabric chaincode shim",
66
"main": "index.js",
77
"repository": {

libraries/fabric-shim/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-shim",
3-
"version": "2.1.3",
4-
"tag": "unstable",
3+
"version": "2.1.4",
4+
"tag": "latest",
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",
77
"bin": {
@@ -59,8 +59,8 @@
5959
"@grpc/proto-loader": "^0.5.4",
6060
"@types/node": "^8.9.4",
6161
"ajv": "^6.5.5",
62-
"fabric-contract-api": "2.1.3",
63-
"fabric-shim-api": "2.1.3",
62+
"fabric-contract-api": "2.1.4",
63+
"fabric-shim-api": "2.1.4",
6464
"fs-extra": "8.1.0",
6565
"reflect-metadata": "^0.1.12",
6666
"winston": "3.2.1",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-chaincode-node",
3-
"version": "2.1.3",
4-
"tag": "unstable",
3+
"version": "2.1.4",
4+
"tag": "latest",
55
"description": "fabric-chaincode-node monorepo, built with rush",
66
"testFabricVersion": "master",
77
"testFabricCAVersion": "1.4.4",

release_notes/v2.1.4.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
v2.1.4
2+
------
3+
4+
Release Notes
5+
-------------
6+
7+
- FABCN-418 Dependency unable to use git
8+
9+
Locks the version of the winston library to 3.2.1
10+
The updated winston library after 3.3.0 prevents chaincode installing due to
11+
a new requirement for git which is not available in the
12+
hyperledger/fabric-nodeenv docker image.
13+
14+
The release-2.0 branch has been renamed to release-2.x; the v2.1.0 release supercedes v2.0.0.
15+
The release-1.4 branch is currently LTS, please see the proposed Fabric LTS strategy for more information:
16+
https://github.com/hyperledger/fabric-rfcs/pull/23
17+
18+
Change Log
19+
----------
20+
https://github.com/hyperledger/fabric-chaincode-node/blob/release-2.x/CHANGELOG.md#v2.1.4

0 commit comments

Comments
 (0)