Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/fsat-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
default: v0.50.15
fabric-version:
description: Version of Hyperledger Fabric
default: "2.5.14"
default: "2.5.15"
ca-version:
description: Version of Hyperledger Fabric CA
default: "1.5.15"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test-network-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
default: 25.x
fabric-version:
description: Version of Hyperledger Fabric
default: 2.5.14
default: 2.5.15
ca-version:
description: Version of Hyperledger Fabric CA
default: 1.5.15
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-network-bft-orderer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# Note: The default Fabric version for CI is currently the latest LTS (v2.5.x).
# To test BFT Orderers, Fabric v3.x is explicitly specified here.
with:
fabric-version: 3.1.3
fabric-version: 3.1.4

- name: Run Test Network with BFT Orderers
working-directory: test-network
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ write_files:
# set -o pipefail
if [ -z $1 ]; then
HLF_VERSION=2.5.14
HLF_VERSION=2.5.15
else
HLF_VERSION=$1
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function context() {
export ${name}="${!override_name:-${default_value}}"
}

context FABRIC_VERSION 2.5.14
context FABRIC_VERSION 2.5.15
context FABRIC_CA_VERSION 1.5.15

context CLUSTER_RUNTIME kind # or k3s for Rancher
Expand Down
4 changes: 2 additions & 2 deletions test-network-k8s/docs/BFT_ORDERERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ First, run the following command to verify that the environment variables are co
```shell
$ ./network

Fabric image versions: Peer (3.1.1), CA (1.5.15)
Fabric binary versions: Peer (3.1.1), CA (1.5.15)
Fabric image versions: Peer (3.1.4), CA (1.5.15)
Fabric binary versions: Peer (3.1.4), CA (1.5.15)

--- Fabric Information
Fabric Version : 3.1
Expand Down
4 changes: 2 additions & 2 deletions test-network/scripts/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function printHelp() {
println
println " Flags:"
println " Used with \033[0;32mnetwork.sh prereq\033[0m:"
println " -i FabricVersion (default: '2.5.14')"
println " -i FabricVersion (default: '2.5.15')"
println " -cai Fabric CA Version (default: '1.5.15')"
println
elif [ "$USAGE" == "up" ]; then
Expand Down Expand Up @@ -159,7 +159,7 @@ function printHelp() {
println
println " Flags:"
println " Used with \033[0;32mnetwork.sh prereq\033[0m"
println " -i FabricVersion (default: '2.5.14')"
println " -i FabricVersion (default: '2.5.15')"
println " -cai Fabric CA Version (default: '1.5.15')"
println
println " Used with \033[0;32mnetwork.sh up\033[0m, \033[0;32mnetwork.sh createChannel\033[0m:"
Expand Down
Loading