Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 37c36fc

Browse files
authored
FABN-1620 Publish 2.2.2 (#310)
Publish v2.2.2 of release-2.2 Signed-off-by: Bret Harrison <[email protected]>
1 parent bafd43a commit 37c36fc

File tree

7 files changed

+47
-6
lines changed

7 files changed

+47
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v2.2.2
2+
Fri Aug 21 11:30:59 EDT 2020
3+
4+
* [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)
5+
16
## v2.2.1
27
Wed Aug 19 11:02:55 EDT 2020
38

fabric-ca-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"hyperledger",
66
"blockchain"
77
],
8-
"version": "2.2.2-snapshot",
8+
"version": "2.2.2",
99
"main": "index.js",
1010
"scripts": {
1111
"test": "nyc mocha --recursive -t 10000"

fabric-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-common",
3-
"version": "2.2.2-snapshot",
3+
"version": "2.2.2",
44
"description": "This package encapsulates the common code used by the `fabric-ca-client`, `fabric-network` packages.",
55
"keywords": [
66
"blockchain",

fabric-network/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"hyperledger",
66
"blockchain"
77
],
8-
"version": "2.2.2-snapshot",
8+
"version": "2.2.2",
99
"main": "index.js",
1010
"repository": {
1111
"type": "git",

fabric-protos/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fabric-protos",
3-
"version": "2.2.2-snapshot",
3+
"version": "2.2.2",
44
"description": "Protocol Buffer files and generated JavaScript classes for Hyperledger Fabric",
55
"main": "index.js",
66
"scripts": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fabric-sdk-node",
3-
"version": "2.2.2-snapshot",
4-
"tag": "unstable-2.2",
3+
"version": "2.2.2",
4+
"tag": "latest",
55
"main": "index.js",
66
"private": true,
77
"repository": {

release_notes/v2.2.2.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Release Notes
2+
-------------
3+
This v2.2.2 version is the latest of the v2.2 long-term support (LTS) release
4+
of the fabric-node-sdk packages that support Fabric 2.x, and supersedes previous
5+
v2.x releases. Please see the Fabric LTS release strategy document for more
6+
information on LTS releases:
7+
8+
https://github.com/hyperledger/fabric-rfcs/blob/master/text/0005-lts-release-strategy.md
9+
10+
If migrating a client application from an earlier version of the API, consult
11+
the migration tutorial for details of potentially breaking changes and recommended actions:
12+
13+
https://hyperledger.github.io/fabric-sdk-node/master/tutorial-migration.html
14+
15+
Major changes from v1.4:
16+
17+
- The fabric-client package has been removed. Client applications should use
18+
the Fabric Programming Model APIs from the fabric-network package.
19+
20+
- The underlying APIs that interface with the gRPC layer have been
21+
reimplemented in the fabric-common package and should not be used directly
22+
by client applications.
23+
24+
- Simplified wallet management, which is portable across SDK languages and
25+
with pluggable persistent storage. More information can be found here:
26+
27+
https://hyperledger.github.io/fabric-sdk-node/master/tutorial-wallet.html
28+
29+
- New eventing implementation in fabric-network. Client application code can
30+
listen for block events using Network.addBlockListener(), and listen for
31+
contract events using Contract.addContractListener(). The Network object
32+
also provides capability to listen for transaction commit events,
33+
specifically to support the implementation of custom event handlers. More
34+
information can be found here:
35+
36+
https://hyperledger.github.io/fabric-sdk-node/master/tutorial-transaction-commit-events.html

0 commit comments

Comments
 (0)