Skip to content

Commit 57f91e9

Browse files
authored
Release commit for v3.1.4 (#5410)
Signed-off-by: Fedor Partanskiy <fredprtnsk@gmail.com>
1 parent 5d90ddf commit 57f91e9

3 files changed

Lines changed: 44 additions & 1 deletion

File tree

Makefile

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

4848
UBUNTU_VER ?= 24.04
49-
FABRIC_VER ?= 3.1.3
49+
FABRIC_VER ?= 3.1.4
5050

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

docs/source/whatsnew.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ Additionally, take a look at the announcements about changes and deprecations th
103103
* `Fabric v3.1.1 release notes <https://github.com/hyperledger/fabric/releases/tag/v3.1.1>`_.
104104
* `Fabric v3.1.2 release notes <https://github.com/hyperledger/fabric/releases/tag/v3.1.2>`_.
105105
* `Fabric v3.1.3 release notes <https://github.com/hyperledger/fabric/releases/tag/v3.1.3>`_.
106+
* `Fabric v3.1.4 release notes <https://github.com/hyperledger/fabric/releases/tag/v3.1.4>`_.
106107

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

release_notes/v3.1.4.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
v3.1.4 Release Notes - February 23, 2026
2+
=====================================
3+
4+
5+
Improvements and Fixes
6+
----------------------
7+
8+
1. Fixed working with Docker Engine v29+. Replacement github.com/fsouza/go-dockerclient to native github.com/moby/moby/client by @pfi79 in [5353](https://github.com/hyperledger/fabric/pull/5353).
9+
2. Fixed gossip: stop membership tracker ticker on channel shutdown by @remo-lab in [5364](https://github.com/hyperledger/fabric/pull/5364).
10+
3. Fixed gossip: shutdown hang caused by blocking stop signal by @remo-lab in [5373](https://github.com/hyperledger/fabric/pull/5373).
11+
4. Fixed gossip: prevent panic on state provider shutdown by @Ady0333 in [5378](https://github.com/hyperledger/fabric/pull/5378).
12+
5. Fixed parsing CORE_PEER_DELIVERYCLIENT_ADDRESSOVERRIDES by @pfi79 in [5399](https://github.com/hyperledger/fabric/pull/5399).
13+
14+
Dependencies
15+
------------
16+
Fabric v3.1.4 has been tested with the following dependencies:
17+
* Go 1.26.0
18+
* CouchDB v3.4.2
19+
20+
Fabric docker images on docker.io and ghcr.io utilize Ubuntu 24.04.
21+
22+
23+
Changes and Removals
24+
--------------------
25+
26+
See the [v3.0.0 release notes](https://github.com/hyperledger/fabric/releases/tag/v3.0.0) for changes and removals between Fabric v2.x and Fabric v3.x.
27+
28+
29+
Deprecated features
30+
-------------------
31+
32+
**Block dissemination via gossip is deprecated and may be removed**
33+
34+
Block dissemination via gossip is deprecated and may be removed in a future release.
35+
Fabric peers can be configured to receive blocks directly from an ordering service
36+
node, and not gossip blocks, by using the following configuration:
37+
```
38+
peer.gossip.orgLeader: true
39+
peer.gossip.useLeaderElection: false
40+
peer.gossip.state.enabled: false
41+
peer.deliveryclient.blockGossipEnabled: false
42+
```

0 commit comments

Comments
 (0)