Skip to content

Commit f5b1a88

Browse files
authored
Fabric release v3.1.3 (#5316)
Signed-off-by: Yacov Manevich <[email protected]>
1 parent d8cda7f commit f5b1a88

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

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.2
49+
FABRIC_VER ?= 3.1.3
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
@@ -102,6 +102,7 @@ Additionally, take a look at the announcements about changes and deprecations th
102102
* `Fabric v3.1.0 release notes <https://github.com/hyperledger/fabric/releases/tag/v3.1.0>`_.
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>`_.
105+
* `Fabric v3.1.3 release notes <https://github.com/hyperledger/fabric/releases/tag/v3.1.3>`_.
105106

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

release_notes/v3.1.3.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
v3.1.3 Release Notes - October 18, 2025
2+
=====================================
3+
4+
5+
Improvements and Fixes
6+
----------------------
7+
8+
The commit 77db242af51f496a1529b66d3022efad286a5f2d removed `sampleconfig/msp` from the orderer docker image,
9+
and as a result orderers deployed with docker built from the image failed to run due to a mounting error.
10+
Fixed by explicitly adding the config files in commit bbd9ca7dcdc09f49bc60725a6095b1bb7c212a14.
11+
12+
Dependencies
13+
------------
14+
Fabric v3.1.3 has been tested with the following dependencies:
15+
* Go 1.25.2
16+
* CouchDB v3.4.2
17+
18+
Fabric docker images on docker.io and ghcr.io utilize Ubuntu 24.04.
19+
20+
21+
Changes and Removals
22+
--------------------
23+
24+
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.
25+
26+
27+
Deprecated features
28+
-------------------
29+
30+
**Block dissemination via gossip is deprecated and may be removed**
31+
32+
Block dissemination via gossip is deprecated and may be removed in a future release.
33+
Fabric peers can be configured to receive blocks directly from an ordering service
34+
node, and not gossip blocks, by using the following configuration:
35+
```
36+
peer.gossip.orgLeader: true
37+
peer.gossip.useLeaderElection: false
38+
peer.gossip.state.enabled: false
39+
peer.deliveryclient.blockGossipEnabled: false
40+
```

0 commit comments

Comments
 (0)