Skip to content

Commit

Permalink
FABN-1620 Publish 2.2.2 (#310)
Browse files Browse the repository at this point in the history
Publish v2.2.2 of release-2.2

Signed-off-by: Bret Harrison <[email protected]>
  • Loading branch information
harrisob committed Aug 24, 2020
1 parent bafd43a commit 37c36fc
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v2.2.2
Fri Aug 21 11:30:59 EDT 2020

* [bafd43a1](https://github.com/hyperledger/fabric-sdk-node/commit/bafd43a1) [FABN-1619](https://jira.hyperledger.org/browse/FABN-1619) Fix requiredOrgs with Discovery (#308) (#309)

## v2.2.1
Wed Aug 19 11:02:55 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.2.2-snapshot",
"version": "2.2.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.2.2-snapshot",
"version": "2.2.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.2.2-snapshot",
"version": "2.2.2",
"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.2-snapshot",
"version": "2.2.2",
"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.2-snapshot",
"tag": "unstable-2.2",
"version": "2.2.2",
"tag": "latest",
"main": "index.js",
"private": true,
"repository": {
Expand Down
36 changes: 36 additions & 0 deletions release_notes/v2.2.2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Release Notes
-------------
This v2.2.2 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 37c36fc

Please sign in to comment.