Skip to content

Commit

Permalink
Release v2.2.7 (#462)
Browse files Browse the repository at this point in the history
Signed-off-by: Mark S. Lewis <[email protected]>
  • Loading branch information
bestbeforetoday committed Jun 18, 2021
1 parent b48a1b7 commit ac0e9f1
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v2.2.7
Thu 17 Jun 2021 15:44:36 BST

* [b48a1b77](https://github.com/hyperledger/fabric-sdk-node/commit/b48a1b77) [FABN-1714](https://jira.hyperledger.org/browse/FABN-1714): Fix JSDoc generation of Transaction class (#461)
* [c905a9e5](https://github.com/hyperledger/fabric-sdk-node/commit/c905a9e5) [FABN-1714](https://jira.hyperledger.org/browse/FABN-1714): Allow transactions to be serialized (#459)

## v2.2.6
Thu 27 May 2021 09:46:52 BST

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.2.7-snapshot",
"tag": "unstable-2.2",
"version": "2.2.7",
"tag": "latest",
"main": "index.js",
"private": true,
"repository": {
Expand Down
18 changes: 18 additions & 0 deletions release_notes/v2.2.7.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Release Notes
-------------
This v2.2.7 version is the latest of the v2.2 long-term support (LTS) release
of the fabric-node-sdk packages that support Fabric 2.x, and supersedes previous
v2.x releases. Please see the Fabric LTS release strategy document for more
information on LTS releases:

https://github.com/hyperledger/fabric-rfcs/blob/main/text/0005-lts-release-strategy.md

Changes in v2.2.7:

- Transaction objects can be serialized using their serialize() method, and
later reconstructed using the Contract's deserializeTransaction() method.
This allows a transaction to be persisted and resubmitted with the same
transaction ID (and nonce) following a client application restart, and may
be useful to recover from a client application failure while an in-flight
transaction is in an indeterminate state as its commit status has not yet
been observed.

0 comments on commit ac0e9f1

Please sign in to comment.