Skip to content

Commit 4f12c04

Browse files
Update Fabric to v2.5.15 and v3.1.4
These Fabric versions resolve compatibility issues with Docker engine v29. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
1 parent 42ff1e6 commit 4f12c04

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/actions/fsat-setup/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
default: v0.50.15
1313
fabric-version:
1414
description: Version of Hyperledger Fabric
15-
default: "2.5.14"
15+
default: "2.5.15"
1616
ca-version:
1717
description: Version of Hyperledger Fabric CA
1818
default: "1.5.15"

.github/actions/test-network-setup/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
default: 25.x
1313
fabric-version:
1414
description: Version of Hyperledger Fabric
15-
default: 2.5.14
15+
default: 2.5.15
1616
ca-version:
1717
description: Version of Hyperledger Fabric CA
1818
default: 1.5.15

.github/workflows/test-network-bft-orderer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# Note: The default Fabric version for CI is currently the latest LTS (v2.5.x).
3939
# To test BFT Orderers, Fabric v3.x is explicitly specified here.
4040
with:
41-
fabric-version: 3.1.3
41+
fabric-version: 3.1.4
4242

4343
- name: Run Test Network with BFT Orderers
4444
working-directory: test-network

full-stack-asset-transfer-guide/infrastructure/multipass-cloud-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ write_files:
2727
# set -o pipefail
2828
2929
if [ -z $1 ]; then
30-
HLF_VERSION=2.5.14
30+
HLF_VERSION=2.5.15
3131
else
3232
HLF_VERSION=$1
3333
fi

full-stack-asset-transfer-guide/infrastructure/sample-network/network

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function context() {
3333
export ${name}="${!override_name:-${default_value}}"
3434
}
3535

36-
context FABRIC_VERSION 2.5.14
36+
context FABRIC_VERSION 2.5.15
3737
context FABRIC_CA_VERSION 1.5.15
3838

3939
context CLUSTER_RUNTIME kind # or k3s for Rancher

test-network-k8s/docs/BFT_ORDERERS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ First, run the following command to verify that the environment variables are co
3939
```shell
4040
$ ./network
4141

42-
Fabric image versions: Peer (3.1.1), CA (1.5.15)
43-
Fabric binary versions: Peer (3.1.1), CA (1.5.15)
42+
Fabric image versions: Peer (3.1.4), CA (1.5.15)
43+
Fabric binary versions: Peer (3.1.4), CA (1.5.15)
4444

4545
--- Fabric Information
4646
Fabric Version : 3.1

test-network/scripts/utils.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function printHelp() {
1717
println
1818
println " Flags:"
1919
println " Used with \033[0;32mnetwork.sh prereq\033[0m:"
20-
println " -i FabricVersion (default: '2.5.14')"
20+
println " -i FabricVersion (default: '2.5.15')"
2121
println " -cai Fabric CA Version (default: '1.5.15')"
2222
println
2323
elif [ "$USAGE" == "up" ]; then
@@ -159,7 +159,7 @@ function printHelp() {
159159
println
160160
println " Flags:"
161161
println " Used with \033[0;32mnetwork.sh prereq\033[0m"
162-
println " -i FabricVersion (default: '2.5.14')"
162+
println " -i FabricVersion (default: '2.5.15')"
163163
println " -cai Fabric CA Version (default: '1.5.15')"
164164
println
165165
println " Used with \033[0;32mnetwork.sh up\033[0m, \033[0;32mnetwork.sh createChannel\033[0m:"

0 commit comments

Comments
 (0)