Skip to content

Commit

Permalink
v2.1.2 release (#266)
Browse files Browse the repository at this point in the history
Signed-off-by: Mark S. Lewis <[email protected]>
  • Loading branch information
bestbeforetoday committed Jul 2, 2020
1 parent 55cee31 commit 43e0c13
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 2.1.2
Wed 1 Jul 2020 15:56:59 BST

* [55cee313](https://github.com/hyperledger/fabric-sdk-node/commit/55cee313) [[FABN-1685] jsrsasign Vulnerability: <GHSA-p8c3-7rj8-](https://jira.hyperledger.org/browse/FABN-1685] jsrsasign Vulnerability: <GHSA-p8c3-7rj8-)q963> (#263)
* [f13d529a](https://github.com/hyperledger/fabric-sdk-node/commit/f13d529a) [FABN-1571](https://jira.hyperledger.org/browse/FABN-1571) set discovery sort ledgerHeight (#260)
* [3f9c9d4a](https://github.com/hyperledger/fabric-sdk-node/commit/3f9c9d4a) [[FABN-1572](https://jira.hyperledger.org/browse/FABN-1572)] fabricCaClient.js hygiene (p1) (#242)
* [ed2121e5](https://github.com/hyperledger/fabric-sdk-node/commit/ed2121e5) [[FABN-835](https://jira.hyperledger.org/browse/FABN-835)] Fix recycle reference in Utils.js (#256)
* [e71b1260](https://github.com/hyperledger/fabric-sdk-node/commit/e71b1260) [FABN-1566](https://jira.hyperledger.org/browse/FABN-1566) Add TransactionError with event status (#258)
* [5b409b20](https://github.com/hyperledger/fabric-sdk-node/commit/5b409b20) [FABN-1584: Add protobufjs dependency for fabric-](https://jira.hyperledger.org/browse/FABN-1584: Add protobufjs dependency for fabric-)protos (#262)
* [e6673018](https://github.com/hyperledger/fabric-sdk-node/commit/e6673018) [FABN-1582](https://jira.hyperledger.org/browse/FABN-1582): Unit test for option pollution between gateway instances (#261)
* [0d566392](https://github.com/hyperledger/fabric-sdk-node/commit/0d566392) [[FABN-1544](https://jira.hyperledger.org/browse/FABN-1544)] Fix the property name of ProcessedTransaction (#257)
* [ff66fc66](https://github.com/hyperledger/fabric-sdk-node/commit/ff66fc66) [FABN-1582](https://jira.hyperledger.org/browse/FABN-1582): Fix leakage of Gateway confguration settings (#259)
* [d73d1a6b](https://github.com/hyperledger/fabric-sdk-node/commit/d73d1a6b) [FABN-1576](https://jira.hyperledger.org/browse/FABN-1576): Revert version and tag to snapshots (#255)

## v2.1.1
Wed Jun 17 09:52:17 EDT 2020

Expand Down
2 changes: 1 addition & 1 deletion fabric-ca-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"hyperledger",
"blockchain"
],
"version": "2.1.2-snapshot",
"version": "2.1.2",
"main": "index.js",
"scripts": {
"test": "nyc mocha --recursive -t 10000"
Expand Down
2 changes: 1 addition & 1 deletion fabric-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fabric-common",
"version": "2.1.2-snapshot",
"version": "2.1.2",
"description": "This package encapsulates the common code used by the `fabric-ca-client`, `fabric-network` packages.",
"keywords": [
"blockchain",
Expand Down
2 changes: 1 addition & 1 deletion fabric-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"hyperledger",
"blockchain"
],
"version": "2.1.2-snapshot",
"version": "2.1.2",
"main": "index.js",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fabric-sdk-node",
"version": "2.1.2-snapshot",
"tag": "unstable",
"version": "2.1.2",
"tag": "latest-2.1",
"main": "index.js",
"private": true,
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions scripts/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
#
# SPDX-License-Identifier: Apache-2.0
#

if [ $# -ne 2 ]; then
echo 'Missing required arguments: lastReleaseCommitHash releaseVersion' >&2
exit 1
fi

echo "## $2\n$(date)" >> CHANGELOG.new
echo "" >> CHANGELOG.new
git log $1..HEAD --oneline | grep -v Merge | sed -e "s/\(FAB.*-[0-9]*\)/\[\1\](https:\/\/jira.hyperledger.org\/browse\/\1\)/" -e "s/\([0-9|a-z]*\)/* \[\1\](https:\/\/github.com\/hyperledger\/fabric-sdk-node\/commit\/\1)/" >> CHANGELOG.new
Expand Down

0 comments on commit 43e0c13

Please sign in to comment.