Skip to content

Commit edd913e

Browse files
kemi04jt-nti
authored andcommitted
Release v2.3.0
Signed-off-by: Kestutis Gudynas <[email protected]>
1 parent f71eb0c commit edd913e

File tree

23 files changed

+77
-47
lines changed

23 files changed

+77
-47
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v2.3.0
2+
Tue 3 Nov 15:40:46 GMT 2020
3+
4+
* [f71eb0c](https://github.com/hyperledger/fabric-chaincode-node/commit/f71eb0c) [FABCN-432](https://jira.hyperledger.org/browse/FABCN-432) - Update class transformer dependency (#213)
5+
* [fc32346](https://github.com/hyperledger/fabric-chaincode-node/commit/fc32346) [FABCN-430](https://jira.hyperledger.org/browse/FABCN-430) Fix type for timestamp.second (#194) (#209)
6+
* [85188f5](https://github.com/hyperledger/fabric-chaincode-node/commit/85188f5) v2.x tutorials updated (#217)
7+
* [05df03f](https://github.com/hyperledger/fabric-chaincode-node/commit/05df03f) [FABCN-435](https://jira.hyperledger.org/browse/FABCN-435) OOM on Large Arg Size (#207)
8+
* [58387e8](https://github.com/hyperledger/fabric-chaincode-node/commit/58387e8) [FABCN-241](https://jira.hyperledger.org/browse/FABCN-241) Remove to.be.ok (#204)
9+
* [c9a1f5d](https://github.com/hyperledger/fabric-chaincode-node/commit/c9a1f5d) [FABCN-433](https://jira.hyperledger.org/browse/FABCN-433) Update typescript and @types/node (#199)
10+
* [eb39270](https://github.com/hyperledger/fabric-chaincode-node/commit/eb39270) [FABCN-422](https://jira.hyperledger.org/browse/FABCN-422) Add release guide (#187)
11+
* [be2ef68](https://github.com/hyperledger/fabric-chaincode-node/commit/be2ef68) Fix: ChaincodeStub.getMspID should be in lowerCamelCASE
12+
* [7de3c12](https://github.com/hyperledger/fabric-chaincode-node/commit/7de3c12) Bump version to 2.2.1 (#184)
13+
114
## v2.2.0
215
Thu 2 Jul 11:40:02 BST 2020
316

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.2.1-unstable",
32-
"fabric-shim": "^2.2.1-unstable"
31+
"fabric-contract-api": "^2.3.0",
32+
"fabric-shim": "^2.3.0"
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.2.1-unstable",
4-
"tag": "unstable",
3+
"version": "2.3.0",
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.2.1-unstable",
49+
"fabric-shim-api": "2.3.0",
5050
"class-transformer": "^0.3.1",
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.2.1-unstable",
4-
"tag": "unstable",
3+
"version": "2.3.0",
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": {

ci/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ stages:
291291
workingFile: '$(Agent.TempDirectory)/.npmrc'
292292
customEndpoint: 'fabric-chainode-node-npm'
293293
- script: |
294-
find $(Pipeline.Workspace)/node-tgz/ -maxdepth 1 -type f -name 'fabric-*.tgz' -exec npm publish {} --tag unstable \;
294+
find $(Pipeline.Workspace)/node-tgz/ -maxdepth 1 -type f -name 'fabric-*.tgz' -exec npm publish {} --tag latest \;
295295
displayName: 'npm publish'
296296
- job: dockerhub_publish
297297
steps:

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 fabric-shim@2.2.1-unstable
11+
npm install fabric-shim@2.3.0
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.2.1-unstable"
71+
"fabric-shim": "2.3.0"
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.2.1-unstable",
32-
"fabric-shim": "^2.2.1-unstable"
31+
"fabric-contract-api": "^2.3.0",
32+
"fabric-shim": "^2.3.0"
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.2.1-unstable",
4-
"tag": "unstable",
3+
"version": "2.3.0",
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.2.1-unstable",
4-
"tag": "unstable",
3+
"version": "2.3.0",
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": "^14.0.13",
6161
"ajv": "^6.12.2",
62-
"fabric-contract-api": "2.2.1-unstable",
63-
"fabric-shim-api": "2.2.1-unstable",
62+
"fabric-contract-api": "2.3.0",
63+
"fabric-shim-api": "2.3.0",
6464
"fs-extra": "^9.0.1",
6565
"reflect-metadata": "^0.1.13",
6666
"winston": "^3.3.2",

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.2.1-unstable",
4-
"tag": "unstable",
3+
"version": "2.3.0",
4+
"tag": "latest",
55
"description": "fabric-chaincode-node monorepo, built with rush",
66
"testFabricVersion": "master",
77
"testFabricCAVersion": "1.4.4",

0 commit comments

Comments
 (0)