Skip to content

Commit 8eef196

Browse files
committed
Release commit for v2.2.10
Update release notes and doc for v2.2.10. Signed-off-by: David Enyeart <enyeart@us.ibm.com>
1 parent 3f595ad commit 8eef196

5 files changed

Lines changed: 95 additions & 6 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# - verify - runs unit tests for only the changed package tree
4646

4747
ALPINE_VER ?= 3.16
48-
BASE_VERSION = 2.2.9
48+
BASE_VERSION = 2.2.10
4949

5050
# 3rd party image version
5151
# These versions are also set in the runners in ./integration/runners/

docs/source/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ the binaries and images.
4747
4848
.. note:: If you want a specific release, pass a version identifier for Fabric and Fabric-CA docker images.
4949
The command below demonstrates how to download the latest production releases -
50-
**Fabric v2.2.9** and **Fabric CA v1.5.5**
50+
**Fabric v2.2.10** and **Fabric CA v1.5.5**
5151

5252
.. code:: bash
5353
5454
curl -sSL https://bit.ly/2ysbOFE | bash -s -- <fabric_version> <fabric-ca_version>
55-
curl -sSL https://bit.ly/2ysbOFE | bash -s -- 2.2.9 1.5.5
55+
curl -sSL https://bit.ly/2ysbOFE | bash -s -- 2.2.10 1.5.5
5656
5757
.. note:: If you get an error running the above curl command, you may
5858
have too old a version of curl that does not handle

docs/source/whatsnew.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ announced in each of the v2.x releases.
229229
* `Fabric v2.2.7 release notes <https://github.com/hyperledger/fabric/releases/tag/v2.2.7>`_.
230230
* `Fabric v2.2.8 release notes <https://github.com/hyperledger/fabric/releases/tag/v2.2.8>`_.
231231
* `Fabric v2.2.9 release notes <https://github.com/hyperledger/fabric/releases/tag/v2.2.9>`_.
232+
* `Fabric v2.2.10 release notes <https://github.com/hyperledger/fabric/releases/tag/v2.2.10>`_.
232233

233234
.. Licensed under Creative Commons Attribution 4.0 International License
234235
https://creativecommons.org/licenses/by/4.0/

release_notes/v2.2.10.md

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
v2.2.10 Release Notes - February 17, 2023
2+
=========================================
3+
4+
Fabric v2.2.10 updates third party dependencies.
5+
6+
7+
Dependencies
8+
------------
9+
Fabric v2.2.10 has been tested with the following dependencies:
10+
* Go 1.18.7
11+
* CouchDB v3.2.2
12+
13+
Fabric docker images on dockerhub utilize Alpine 3.16.
14+
15+
Deprecations (existing)
16+
-----------------------
17+
18+
**FAB-15754: The 'Solo' consensus type is deprecated.**
19+
20+
The 'Solo' consensus type has always been marked non-production and should be in
21+
use only in test environments, however for compatibility it is still available,
22+
but may be removed entirely in a future release.
23+
24+
**FAB-16408: The 'Kafka' consensus type is deprecated.**
25+
26+
The 'Raft' consensus type was introduced in v1.4.1 and has become the preferred
27+
production consensus type. There is a documented and tested migration path from
28+
Kafka to Raft, and existing users should migrate to the newer Raft consensus type.
29+
For compatibility with existing deployments, Kafka is still supported,
30+
but may be removed entirely in a future release.
31+
Additionally, the fabric-kafka and fabric-zookeeper docker images are no longer updated, maintained, or published.
32+
33+
**Fabric CouchDB image is deprecated**
34+
35+
v2.2.0 added support for CouchDB 3.1.0 as the recommended and tested version of CouchDB.
36+
If prior versions are utilized, a Warning will appear in peer log.
37+
Note that CouchDB 3.1.0 requires that an admin username and password be set,
38+
while this was optional in CouchDB v2.x. See the
39+
[Fabric CouchDB documentation](https://hyperledger-fabric.readthedocs.io/en/v2.2.0/couchdb_as_state_database.html#couchdb-configuration)
40+
for configuration details.
41+
Also note that CouchDB 3.1.0 default max_document_size is reduced to 8MB. Set a higher value if needed in your environment.
42+
Finally, the fabric-couchdb docker image will not be updated to v3.1.0 and will no longer be updated, maintained, or published.
43+
Users can utilize the official CouchDB docker image maintained by the Apache CouchDB project instead.
44+
45+
**FAB-7559: Support for specifying orderer endpoints at the global level in channel configuration is deprecated.**
46+
47+
Utilize the new 'OrdererEndpoints' stanza within the channel configuration of an organization instead.
48+
Configuring orderer endpoints at the organization level accommodates
49+
scenarios where orderers are run by different organizations. Using
50+
this configuration ensures that only the TLS CA certificates of that organization
51+
are used for orderer communications, in contrast to the global channel level endpoints which
52+
would cause an aggregation of all orderer TLS CA certificates across
53+
all orderer organizations to be used for orderer communications.
54+
55+
**FAB-17428: Support for configtxgen flag `--outputAnchorPeersUpdate` is deprecated.**
56+
57+
The `--outputAnchorPeersUpdate` mechanism for updating anchor peers has always had
58+
limitations (for instance, it only works the first time anchor peers are updated).
59+
Instead, anchor peer updates should be performed through the normal config update flow.
60+
61+
**FAB-15406: The fabric-tools docker image is deprecated**
62+
63+
The fabric-tools docker image will not be published in future Fabric releases.
64+
Instead of using the fabric-tools docker image, users should utilize the
65+
published Fabric binaries. The Fabric binaries can be used to make client calls
66+
to Fabric runtime components, regardless of where the Fabric components are running.
67+
68+
**FAB-15317: Block dissemination via gossip is deprecated**
69+
70+
Block dissemination via gossip is deprecated and may be removed in a future release.
71+
Fabric peers can be configured to receive blocks directly from an ordering service
72+
node by using the following configuration:
73+
```
74+
peer.gossip.orgLeader: true
75+
peer.gossip.useLeaderElection: false
76+
peer.gossip.state.enabled: false
77+
peer.deliveryclient.blockGossipEnabled: false
78+
```
79+
80+
**FAB-15061: Legacy chaincode lifecycle is deprecated**
81+
82+
The legacy chaincode lifecycle from v1.x is deprecated and will be removed
83+
in a future release. To prepare for the eventual removal, utilize the v2.x
84+
chaincode lifecycle instead, by enabling V2_0 application capability on all
85+
channels, and redeploying all chaincodes using the v2.x lifecycle. The new
86+
chaincode lifecycle provides a more flexible and robust governance model
87+
for chaincodes. For more details see the
88+
[documentation for enabling the new lifecycle](https://hyperledger-fabric.readthedocs.io/en/release-2.2/enable_cc_lifecycle.html).

scripts/bootstrap.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77

88
# if version not passed in, default to latest released version
9-
VERSION=2.2.9
9+
VERSION=2.2.10
1010
# if ca version not passed in, default to latest released version
1111
CA_VERSION=1.5.5
1212
ARCH=$(echo "$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')")
@@ -21,8 +21,8 @@ printHelp() {
2121
echo "-s : bypass fabric-samples repo clone"
2222
echo "-b : bypass download of platform-specific binaries"
2323
echo
24-
echo "e.g. bootstrap.sh 2.2.9 1.5.5 -s"
25-
echo "will download docker images and binaries for Fabric v2.2.9 and Fabric CA v1.5.5"
24+
echo "e.g. bootstrap.sh 2.2.10 1.5.5 -s"
25+
echo "will download docker images and binaries for Fabric v2.2.10 and Fabric CA v1.5.5"
2626
}
2727

2828
# dockerPull() pulls docker images from fabric and chaincode repositories

0 commit comments

Comments
 (0)