Skip to content

Commit e3595af

Browse files
authored
[FABCN-416] Release v2.1.3 (#171)
For resolving grpc version dependency Signed-off-by: Matthew B White <[email protected]>
1 parent 6600669 commit e3595af

File tree

20 files changed

+61
-37
lines changed

20 files changed

+61
-37
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v2.1.3
2+
Fri 19 Jun 15:26:50 BST 2020
3+
4+
* [cb4afae](https://github.com/hyperledger/fabric-chaincode-node/commit/cb4afae) [FABCN-410](https://jira.hyperledger.org/browse/FABCN-410) Use new lifecycle for fv/e2e tests (#160)
5+
* [e02abf4](https://github.com/hyperledger/fabric-chaincode-node/commit/e02abf4) [FABCN-407](https://jira.hyperledger.org/browse/FABCN-407) Update protos (#154) (#157)
6+
* [f4643f4](https://github.com/hyperledger/fabric-chaincode-node/commit/f4643f4) [FABCN-405](https://jira.hyperledger.org/browse/FABCN-405) Fix tutorial reference (#150) (#152)
7+
* [c1979e3](https://github.com/hyperledger/fabric-chaincode-node/commit/c1979e3) Bump version to 2.1.3 (#149)
8+
19
## v2.1.2
210
Mon 18 May 2020 17:06:23 BST
311

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.1.3-unstable",
3+
"version": "2.1.3",
44
"tag": "unstable",
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.1.3-unstable",
49+
"fabric-shim-api": "2.1.3",
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: 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.1.3-unstable",
3+
"version": "2.1.3",
44
"tag": "unstable",
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",

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 2.1.3-unstable
11+
npm install fabric-shim@2.1.3-unstable
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-unstable"
71+
"fabric-shim": "2.1.3"
7272
}
7373
}
7474
```

libraries/fabric-shim-crypto/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-crypto",
3-
"version": "2.1.3-unstable",
3+
"version": "2.1.3",
44
"tag": "unstable",
55
"description": "A node.js implementation of encryption library for Hyperledger Fabric chaincode shim",
66
"main": "index.js",

libraries/fabric-shim/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-shim",
3-
"version": "2.1.3-unstable",
3+
"version": "2.1.3",
44
"tag": "unstable",
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",
@@ -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-unstable",
63-
"fabric-shim-api": "2.1.3-unstable",
62+
"fabric-contract-api": "2.1.3",
63+
"fabric-shim-api": "2.1.3",
6464
"fs-extra": "8.1.0",
6565
"reflect-metadata": "^0.1.12",
6666
"winston": "^3.2.1",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-chaincode-node",
3-
"version": "2.1.3-unstable",
3+
"version": "2.1.3",
44
"tag": "unstable",
55
"description": "fabric-chaincode-node monorepo, built with rush",
66
"testFabricVersion": "master",

release_notes/v2.1.3.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
v2.1.3
2+
------
3+
4+
Release Notes
5+
-------------
6+
7+
Locks the version of the @grpc/grpc-js library to 1.0.3
8+
The updated grpc lirbary of 1.1.0 prevents the chaincode from contacting the peer.
9+
10+
The release-2.0 branch has been renamed to release-2.x; the v2.1.0 release supercedes v2.0.0.
11+
The release-1.4 branch is currently LTS, please see the proposed Fabric LTS strategy for more information:
12+
https://github.com/hyperledger/fabric-rfcs/pull/23
13+
14+
Change Log
15+
----------
16+
https://github.com/hyperledger/fabric-chaincode-node/blob/release-2.x/CHANGELOG.md#v2.1.3

test/chaincodes/annotations/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"author": "",
1919
"license": "APACHE-2.0",
2020
"dependencies": {
21-
"fabric-shim": "2.1.3-unstable",
22-
"fabric-contract-api": "2.1.3-unstable",
21+
"fabric-shim": "2.1.3",
22+
"fabric-contract-api": "2.1.3",
2323
"@types/node": "^10.3.6",
2424
"ts-node": "^3.3.0",
2525
"tslint": "^5.6.0",

test/chaincodes/clientidentity/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"author": "",
1616
"license": "Apache-2.0",
1717
"dependencies": {
18-
"fabric-shim": "2.1.3-unstable",
19-
"fabric-contract-api": "2.1.3-unstable"
18+
"fabric-shim": "2.1.3",
19+
"fabric-contract-api": "2.1.3"
2020
}
2121
}

0 commit comments

Comments
 (0)