Skip to content

Commit f3663ed

Browse files
authored
Prepare 2.1.2 release (#148)
Signed-off-by: James Taylor <[email protected]>
1 parent 3d3264d commit f3663ed

File tree

21 files changed

+69
-44
lines changed

21 files changed

+69
-44
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## v2.1.2
2+
Mon 18 May 2020 17:06:23 BST
3+
4+
* [3d3264d](https://github.com/hyperledger/fabric-chaincode-node/commit/3d3264d) Fix broken tutorials link (#137) (#138)
5+
* [ac5b009](https://github.com/hyperledger/fabric-chaincode-node/commit/ac5b009) [FABCN-401](https://jira.hyperledger.org/browse/FABCN-401) Correct use of Yargs api (#145)
6+
* [a81935a](https://github.com/hyperledger/fabric-chaincode-node/commit/a81935a) [FABCN-395](https://jira.hyperledger.org/browse/FABCN-395): Use @grpc/grpc-js for Node.js chaincode (#143) (#144)
7+
* [8de8a6e](https://github.com/hyperledger/fabric-chaincode-node/commit/8de8a6e) [FABCN-396](https://jira.hyperledger.org/browse/FABCN-396) Add notes on minimum 1.4 module version for node 12 (#139)
8+
* [00fab0a](https://github.com/hyperledger/fabric-chaincode-node/commit/00fab0a) [FABCN-397](https://jira.hyperledger.org/browse/FABCN-397) State queries limited to 100 results (#141)
9+
* [b1f992d](https://github.com/hyperledger/fabric-chaincode-node/commit/b1f992d) Bump version (#134)
10+
111
## v2.1.1
212
Wed 22 Apr 2020 10:31:05 BST
313

TUTORIAL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The dependencies of `fabric-chaincode-api` and `fabric-shim` will be required.
2828
"author": "",
2929
"license": "Apache-2.0",
3030
"dependencies": {
31-
"fabric-chaincode-api": "2.1.2-unstable",
32-
"fabric-shim": "2.1.2-unstable"
31+
"fabric-chaincode-api": "2.1.2",
32+
"fabric-shim": "2.1.2"
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.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.1.2",
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.2-unstable",
49+
"fabric-shim-api": "2.1.2",
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.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.1.2",
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 2.1.2-unstable
11+
npm install 2.1.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.1.2-unstable"
71+
"fabric-shim": "2.1.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-chaincode-api` and `fabric-shim` will be required.
2828
"author": "",
2929
"license": "Apache-2.0",
3030
"dependencies": {
31-
"fabric-chaincode-api": "2.1.2-unstable",
32-
"fabric-shim": "2.1.2-unstable"
31+
"fabric-chaincode-api": "2.1.2",
32+
"fabric-shim": "2.1.2"
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.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.1.2",
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.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.1.2",
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.2-unstable",
63-
"fabric-shim-api": "2.1.2-unstable",
62+
"fabric-contract-api": "2.1.2",
63+
"fabric-shim-api": "2.1.2",
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.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.1.2",
4+
"tag": "latest",
55
"description": "fabric-chaincode-node monorepo, built with rush",
66
"testFabricVersion": "master",
77
"testFabricCAVersion": "1.4.4",

release_notes/v2.1.2.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
v2.1.2
2+
------
3+
4+
Release Notes
5+
-------------
6+
7+
This release fixs a bug when querying more than 100 assets.
8+
9+
The release-2.0 branch has been renamed to release-2.x; the v2.1.0 release supercedes v2.0.0.
10+
The release-1.4 branch is currently LTS, please see the proposed Fabric LTS strategy for more information:
11+
https://github.com/hyperledger/fabric-rfcs/pull/23
12+
13+
Change Log
14+
----------
15+
https://github.com/hyperledger/fabric-chaincode-node/blob/release-2.x/CHANGELOG.md#v2.1.2

0 commit comments

Comments
 (0)