Skip to content

Commit

Permalink
FABN-1616 Publish 2.2.1 (#306)
Browse files Browse the repository at this point in the history
Publish update v2.2.1

Signed-off-by: Bret Harrison <[email protected]>
  • Loading branch information
harrisob committed Aug 20, 2020
1 parent 475fc7d commit 84a6665
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v2.2.1
Wed Aug 19 11:02:55 EDT 2020

* [475fc7d0](https://github.com/hyperledger/fabric-sdk-node/commit/475fc7d0) [FABN-1612 cherrypick from master to release-2](https://jira.hyperledger.org/browse/FABN-1612 cherrypick from master to release-2).2 (#305)
* [8f36a57b](https://github.com/hyperledger/fabric-sdk-node/commit/8f36a57b) [FABN-1607](https://jira.hyperledger.org/browse/FABN-1607): Start event replay from previous block (#299) (#303)
* [5ffdbb3e](https://github.com/hyperledger/fabric-sdk-node/commit/5ffdbb3e) [FABN-1588](https://jira.hyperledger.org/browse/FABN-1588): Fix timing issue in checkpoint listener scenario tests (#302)
* [3c9a0d04](https://github.com/hyperledger/fabric-sdk-node/commit/3c9a0d04) [FABN-1606](https://jira.hyperledger.org/browse/FABN-1606): Daily scheduled build (#296)
* [bb9cc1fc](https://github.com/hyperledger/fabric-sdk-node/commit/bb9cc1fc) [FABN-1605: Remove unnecessary dependencies from fabric-](https://jira.hyperledger.org/browse/FABN-1605: Remove unnecessary dependencies from fabric-)network (#284) (#285)
* [c97e4a04](https://github.com/hyperledger/fabric-sdk-node/commit/c97e4a04) [FABN-1603](https://jira.hyperledger.org/browse/FABN-1603): v2.2 doc updates (#281)
* [d2d9e8ed](https://github.com/hyperledger/fabric-sdk-node/commit/d2d9e8ed) Prepare release-2.2 branch (#275)

## v2.2.0
Wed 15 Jul 2020 14:07:07 BST

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.2.1-snapshot",
"version": "2.2.1",
"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.2.1-snapshot",
"version": "2.2.1",
"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.2.1-snapshot",
"version": "2.2.1",
"main": "index.js",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion fabric-protos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fabric-protos",
"version": "2.2.1-snapshot",
"version": "2.2.1",
"description": "Protocol Buffer files and generated JavaScript classes for Hyperledger Fabric",
"main": "index.js",
"scripts": {
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.1-snapshot",
"tag": "unstable-2.2",
"version": "2.2.1",
"tag": "latest",
"main": "index.js",
"private": true,
"repository": {
Expand Down
36 changes: 36 additions & 0 deletions release_notes/v2.2.1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Release Notes
-------------
This v2.2.1 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/master/text/0005-lts-release-strategy.md

If migrating a client application from an earlier version of the API, consult
the migration tutorial for details of potentially breaking changes and recommended actions:

https://hyperledger.github.io/fabric-sdk-node/master/tutorial-migration.html

Major changes from v1.4:

- The fabric-client package has been removed. Client applications should use
the Fabric Programming Model APIs from the fabric-network package.

- The underlying APIs that interface with the gRPC layer have been
reimplemented in the fabric-common package and should not be used directly
by client applications.

- Simplified wallet management, which is portable across SDK languages and
with pluggable persistent storage. More information can be found here:

https://hyperledger.github.io/fabric-sdk-node/master/tutorial-wallet.html

- New eventing implementation in fabric-network. Client application code can
listen for block events using Network.addBlockListener(), and listen for
contract events using Contract.addContractListener(). The Network object
also provides capability to listen for transaction commit events,
specifically to support the implementation of custom event handlers. More
information can be found here:

https://hyperledger.github.io/fabric-sdk-node/master/tutorial-transaction-commit-events.html

0 comments on commit 84a6665

Please sign in to comment.