Skip to content

Commit

Permalink
FABN-1676 Publish 1.4.15 (#391)
Browse files Browse the repository at this point in the history
Publish release-1.4 as 1.4.15

Signed-off-by: Bret Harrison <[email protected]>
  • Loading branch information
harrisob committed Dec 4, 2020
1 parent 6fe0b58 commit c96891a
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v1.4.15
Thu Dec 3 13:37:50 EST 2020

* [6fe0b58a](https://github.com/hyperledger/fabric-sdk-node/commit/6fe0b58a) [FABN-1668](https://jira.hyperledger.org/browse/FABN-1668) Add query timeout setting (#380)


## v1.4.14
Thu Nov 5 13:01:50 EST 2020

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fabric-sdk-node",
"version": "1.4.14",
"version": "1.4.15",
"tag": "latest-1.4",
"main": "index.js",
"repository": {
Expand Down
36 changes: 36 additions & 0 deletions release_notes/v1.4.15.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Release Notes
-------------

fabric-sdk-node 1.4.15 is a maintenance release containing bug fixes and documentation improvements.

The default query timeout may be changed along with the query strategy.
This value will be in seconds.

const { Gateway, DefaultQueryHandlerStrategies } = require('fabric-network');
const connectOptions = {
queryHandlerOptions: {
timeout: 60,
strategy: DefaultQueryHandlerStrategies.MSPID_SCOPE_SINGLE
}
}
const gateway = new Gateway();
await gateway.connect(connectionProfile, connectOptions);


Known Vulnerabilities
---------------------
none


Resolved Vulnerabilities
------------------------
none


Known Issues & Workarounds
--------------------------


Change Log
----------
https://github.com/hyperledger/fabric-sdk-node/blob/release-1.4/CHANGELOG.md#v1413

0 comments on commit c96891a

Please sign in to comment.