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

Commit 84a6665

Browse files
authored
FABN-1616 Publish 2.2.1 (#306)
Publish update v2.2.1 Signed-off-by: Bret Harrison <[email protected]>
1 parent 475fc7d commit 84a6665

File tree

7 files changed

+53
-6
lines changed

7 files changed

+53
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v2.2.1
2+
Wed Aug 19 11:02:55 EDT 2020
3+
4+
* [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)
5+
* [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)
6+
* [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)
7+
* [3c9a0d04](https://github.com/hyperledger/fabric-sdk-node/commit/3c9a0d04) [FABN-1606](https://jira.hyperledger.org/browse/FABN-1606): Daily scheduled build (#296)
8+
* [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)
9+
* [c97e4a04](https://github.com/hyperledger/fabric-sdk-node/commit/c97e4a04) [FABN-1603](https://jira.hyperledger.org/browse/FABN-1603): v2.2 doc updates (#281)
10+
* [d2d9e8ed](https://github.com/hyperledger/fabric-sdk-node/commit/d2d9e8ed) Prepare release-2.2 branch (#275)
11+
112
## v2.2.0
213
Wed 15 Jul 2020 14:07:07 BST
314

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.1-snapshot",
8+
"version": "2.2.1",
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.1-snapshot",
3+
"version": "2.2.1",
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.1-snapshot",
8+
"version": "2.2.1",
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.1-snapshot",
3+
"version": "2.2.1",
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.1-snapshot",
4-
"tag": "unstable-2.2",
3+
"version": "2.2.1",
4+
"tag": "latest",
55
"main": "index.js",
66
"private": true,
77
"repository": {

release_notes/v2.2.1.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.1 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)