Skip to content

Commit 2d682a1

Browse files
kemi04Kestutis Gudynas
andauthored
Prepare 2.2.2 release (#278)
Signed-off-by: Kestutis Gudynas <[email protected]> Co-authored-by: Kestutis Gudynas <[email protected]>
1 parent 8cc17b2 commit 2d682a1

File tree

24 files changed

+80
-52
lines changed

24 files changed

+80
-52
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## v2.2.2
2+
Mon 28 Jun 2021 10:05:22 BST
3+
4+
* [4918854](https://github.com/hyperledger/fabric-chaincode-node/commit/4918854) Metadata generate updated [FABCN-447](https://jira.hyperledger.org/browse/FABCN-447) (#277)
5+
* [3b94a4b](https://github.com/hyperledger/fabric-chaincode-node/commit/3b94a4b) Shebang issue fixed [FABCN-438](https://jira.hyperledger.org/browse/FABCN-438) (#275)
6+
* [61ea8e4](https://github.com/hyperledger/fabric-chaincode-node/commit/61ea8e4) Pipeline publishing fixed (#274)
7+
* [f75318a](https://github.com/hyperledger/fabric-chaincode-node/commit/f75318a) Transaction metadata tags updated (#265) (#269)
8+
* [8f522ae](https://github.com/hyperledger/fabric-chaincode-node/commit/8f522ae) Refresh updates
9+
* [211f1b0](https://github.com/hyperledger/fabric-chaincode-node/commit/211f1b0) Remove the use of the "phantom" module
10+
* [1fb5641](https://github.com/hyperledger/fabric-chaincode-node/commit/1fb5641) [FABCN-351](https://jira.hyperledger.org/browse/FABCN-351) CORE_PEER_ADDRESS issue fixed (#253)
11+
* [443440f](https://github.com/hyperledger/fabric-chaincode-node/commit/443440f) [FABCN-425](https://jira.hyperledger.org/browse/FABCN-425) getTxTimestamp fixed (#245)
12+
* [4882958](https://github.com/hyperledger/fabric-chaincode-node/commit/4882958) [FABCN-388](https://jira.hyperledger.org/browse/FABCN-388) Tutorial updated (#247)
13+
* [f6bf8a7](https://github.com/hyperledger/fabric-chaincode-node/commit/f6bf8a7) [FABCN-429](https://jira.hyperledger.org/browse/FABCN-429) Iterator tutorial updated (#250)
14+
* [d58fa10](https://github.com/hyperledger/fabric-chaincode-node/commit/d58fa10) Metadata issue solved (#240)
15+
* [0533ba7](https://github.com/hyperledger/fabric-chaincode-node/commit/0533ba7) Bump version to 2.2.2
16+
117
## v2.2.1
218
Wed 11 Nov 2020 15:13:14 GMT
319

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.2-unstable",
32-
"fabric-shim": "^2.2.2-unstable"
31+
"fabric-contract-api": "^2.2.2",
32+
"fabric-shim": "^2.2.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.2.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.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.2.2-unstable",
49+
"fabric-shim-api": "2.2.2",
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.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.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": {

ci/azure-pipelines.yml

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

common/config/rush/pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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]-unstable
11+
npm install [email protected]
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.2-unstable"
71+
"fabric-shim": "2.2.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.2.2-unstable",
32-
"fabric-shim": "^2.2.2-unstable"
31+
"fabric-contract-api": "^2.2.2",
32+
"fabric-shim": "^2.2.2"
3333
}
3434
}
3535

libraries/fabric-shim-crypto/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-shim-crypto",
3-
"version": "2.2.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.2",
4+
"tag": "latest",
55
"description": "A node.js implementation of encryption library for Hyperledger Fabric chaincode shim",
66
"main": "index.js",
77
"repository": {
@@ -26,7 +26,7 @@
2626
"license": "Apache-2.0",
2727
"dependencies": {
2828
"elliptic": "^6.5.3",
29-
"jsrsasign": "^10.2.0"
29+
"jsrsasign": "^10.2"
3030
},
3131
"devDependencies": {
3232
"mocha": "6.2.2",

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.2-unstable",
4-
"tag": "unstable",
3+
"version": "2.2.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": "^14.0.13",
6161
"ajv": "^6.12.2",
62-
"fabric-contract-api": "2.2.2-unstable",
63-
"fabric-shim-api": "2.2.2-unstable",
62+
"fabric-contract-api": "2.2.2",
63+
"fabric-shim-api": "2.2.2",
6464
"fs-extra": "^9.0.1",
6565
"reflect-metadata": "^0.1.13",
6666
"winston": "^3.3.2",

0 commit comments

Comments
 (0)