Skip to content

Commit cc85f96

Browse files
authored
Bump fabric to v2.5.13 and v3.1.1 (#1328)
Signed-off-by: Tatsuya Sato <[email protected]>
1 parent 5fa5abb commit cc85f96

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
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.25.3
1313
fabric-version:
1414
description: Version of Hyperledger Fabric
15-
default: "2.5.12"
15+
default: "2.5.13"
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: 11.x
1313
fabric-version:
1414
description: Version of Hyperledger Fabric
15-
default: 2.5.12
15+
default: 2.5.13
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.0
41+
fabric-version: 3.1.1
4242

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

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.12
36+
context FABRIC_VERSION 2.5.13
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ In the current `test-network-k8s`, a Fabric network with three orderers managed
99
Since BFT Orderers are supported only in Fabric v3.0 and later, you must specify `3.0` or later for the `TEST_NETWORK_FABRIC_VERSION` environment variable. Additionally, set `TEST_NETWORK_ORDERER_TYPE` to `bft` to start the Fabric network and create a channel with BFT consensus type. For example:
1010

1111
```shell
12-
export TEST_NETWORK_FABRIC_VERSION=3.0
12+
export TEST_NETWORK_FABRIC_VERSION=3.1
1313
export TEST_NETWORK_ORDERER_TYPE=bft
1414

1515
./network kind
@@ -39,11 +39,11 @@ First, run the following command to verify that the environment variables are co
3939
```shell
4040
$ ./network
4141

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

4545
--- Fabric Information
46-
Fabric Version : 3.0
46+
Fabric Version : 3.1
4747
Fabric CA Version : 1.5
4848
Container Registry : hyperledger
4949
Network name : test-network

test-network/network.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# default image tag, example: "2.5.12". "default" will download the latest. (-i)
1+
# default image tag, example: "2.5.13". "default" will download the latest. (-i)
22
IMAGETAG="default"
33

44
# default ca image tag, example: "1.5.15". "default" will download the latest. (-cai)

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.12')"
20+
println " -i FabricVersion (default: '2.5.13')"
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.12')"
162+
println " -i FabricVersion (default: '2.5.13')"
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)