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
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
## 2.4.4
## 2.5.0

### Features
* Add MySQL database support for CA [#618](https://github.com/hyperledger-labs/fablo/pull/618)
* Quick start [#645](https://github.com/hyperledger-labs/fablo/pull/645)

### Bug Fixes
* Get chaincode container name by peer address instead of index [#649](https://github.com/hyperledger-labs/fablo/pull/649)
* Empty chaincode directory mount [#651](https://github.com/hyperledger-labs/fablo/pull/651)
* Show duplicated chaincodes in mermaid [#639](https://github.com/hyperledger-labs/fablo/pull/639)
* Quick installation URL fix [#646](https://github.com/hyperledger-labs/fablo/pull/646)

### Documentation
* Quick start [#645](https://github.com/hyperledger-labs/fablo/pull/645) [#646](https://github.com/hyperledger-labs/fablo/pull/646)
### Testing
* Fix flaky snapshot ccaas test [#648](https://github.com/hyperledger-labs/fablo/pull/648)

### Chore & Maintenance
* Bump lodash from 4.17.21 to 4.17.23 [#650](https://github.com/hyperledger-labs/fablo/pull/650)

## 2.4.3

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ The basic structure of Fablo config file is as follows:

```json
{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": { ... },
"orgs": [ ... ],
"channels": [ ... ],
Expand Down Expand Up @@ -636,7 +636,7 @@ Generated hooks are saved in `fablo-target/hooks`.

```yaml
---
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json
global:
fabricVersion: 2.4.2
tls: false
Expand Down
4 changes: 2 additions & 2 deletions SUPPORTED_FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ This document provides an overview of Fablo features. The table below tracks fea
| Peer DB - LevelDB | ✓ | ✓ | ✓ | [01_v3](/e2e-network/docker/test-01-v3-simple.sh), [05_v3](/e2e-network/docker/test-05-v3.sh), [06_v3](/e2e-network/docker/test-06-v3-bft.sh) | |
| Peer DB - CouchDB | ✓ | ✓ | ✓ | [04_v3](/e2e-network/docker/test-04-v3-snapshot-ccaas.sh) | |
| CA DB - SQLite | ✓ | ✓ | ✓ | [01_v3](/e2e-network/docker/test-01-v3-simple.sh), [05_v3](/e2e-network/docker/test-05-v3.sh), [06_v3](/e2e-network/docker/test-06-v3-bft.sh) | |
| CA DB - Postgres | ✓ | ✓ | ✓ | [04_v3](/e2e-network/docker/test-04-v3-snapshot-ccaas.sh) | |
| CA DB - MySQL | | | ✓ | | [#561](https://github.com/hyperledger-labs/fablo/issues/561) |
| CA DB - Postgres | ✓ | ✓ | ✓ | | |
| CA DB - MySQL | | | ✓ | [04_v3](/e2e-network/docker/test-04-v3-snapshot-ccaas.sh) | |
| <br>**CHANNELS** | | | | | |
| Channel query scripts | ✓ | ✓ | | [01_v3](/e2e-network/docker/test-01-v3-simple.sh), [05_v3](/e2e-network/docker/test-05-v3.sh), [06_v3](/e2e-network/docker/test-06-v3-bft.sh) | |
| <br>**CHAINCODES** | | | | | |
Expand Down
6 changes: 5 additions & 1 deletion bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@ npm version "$new_version" --no-git-tag-version > /dev/null
echo "done"

echo -n " - FABLO_VERSION... "
perl -i -pe "s/FABLO_VERSION=.*\\n/FABLO_VERSION=${new_version}\\n/g" fablo.sh
perl -i -pe "s/FABLO_VERSION=.*\\n/FABLO_VERSION=${new_version}\\n/g" e2e/__snapshots__/*
echo "done"

echo -n " - fablo.sh... "
perl -i -pe "s/FABLO_VERSION=.*\\n/FABLO_VERSION=${new_version}\\n/g" fablo.sh
cp fablo.sh docs/fablo.sh
echo "done"

echo -n " - JSON schema URL... "
schema_update_pattern="s/download\/[0-9-.a-zA-Z]*\/schema.json/download\/${new_version}\/schema.json/g"
if [ "$include_readme" = true ]; then
Expand Down
2 changes: 1 addition & 1 deletion docs/fablo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

FABLO_VERSION=2.4.3
FABLO_VERSION=2.5.0
FABLO_IMAGE_NAME="ghcr.io/fablo-io/fablo"
FABLO_IMAGE="$FABLO_IMAGE_NAME:$FABLO_VERSION"

Expand Down
2 changes: 1 addition & 1 deletion docs/sample.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.3.2",
"tls": false,
Expand Down
2 changes: 1 addition & 1 deletion docs/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"properties": {
"$schema": {
"const": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json"
"const": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json"
},
"global": {
"$id": "#/properties/global",
Expand Down
4 changes: 2 additions & 2 deletions e2e-network/docker/test-04-v3-snapshot-ccaas.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ waitForChaincode "peer0.org1.example.com" "my-channel1" "chaincode1" "0.0.1"
waitForContainer "ccaas_peer0.org1.example.com_my-channel1_chaincode1_0.0.1" "Bootstrap process completed"
waitForContainer "ccaas_peer0.org1.example.com_my-channel2_chaincode1_0.0.1" "Bootstrap process completed"

# sleep one second to ensure the CCAAS container is ready
sleep 1
# sleep to ensure the CCAAS container is ready
sleep 3

# check if state is kept after restoration
user_token_response="$(expectCARest "$fablo_rest_org1/user/enroll" '' '{"id": "gordon", "secret": "gordonpw"}' 'token')"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-k8s.json.tmpdir/fablo-target/fablo-config.json from samples/fablo-config-hlf2-1org-1chaincode-k8s.json 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.4.7",
"tls": false,
Expand Down Expand Up @@ -146,7 +146,7 @@ exports[`samples/fablo-config-hlf2-1org-1chaincode-k8s.json should create proper
REPOSITORY="https://kfsoftware.github.io/hlf-helm-charts"
STORAGE_CLASS=$(kubectl describe sc | grep Name | tr -s ' ' | cut -d ':' -f 2 | cut -d ' ' -f 2)

FABLO_VERSION=2.4.3
FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_CONFIG=<absolute path>
ORDERER_IMAGE=hyperledger/fabric-orderer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf2-1org-1chaincode-peer-dev-mode.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-peer-dev-mode.json.tmpdir/fablo-target/fablo-config.json from samples/fablo-config-hlf2-1org-1chaincode-peer-dev-mode.json 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.5.12",
"tls": false,
Expand Down Expand Up @@ -1513,7 +1513,7 @@ fi
`;

exports[`samples/fablo-config-hlf2-1org-1chaincode-peer-dev-mode.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode-peer-dev-mode.json.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf2-1org-1chaincode-peer-dev-mode.json 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf2-1org-1chaincode.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode.json.tmpdir/fablo-target/fablo-config.json from samples/fablo-config-hlf2-1org-1chaincode.json 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.5.9",
"tls": false
Expand Down Expand Up @@ -1520,7 +1520,7 @@ fi
`;

exports[`samples/fablo-config-hlf2-1org-1chaincode.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-1org-1chaincode.json.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf2-1org-1chaincode.json 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf3-1org-2chaincode-raft-ccaas.json should create proper e2e/__tmp__/samples/fablo-config-hlf3-1org-2chaincode-raft-ccaas.json.tmpdir/fablo-target/fablo-config.json from samples/fablo-config-hlf3-1org-2chaincode-raft-ccaas.json 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "3.1.0",
"tls": true
Expand Down Expand Up @@ -1598,7 +1598,7 @@ fi
`;

exports[`samples/fablo-config-hlf3-1org-2chaincode-raft-ccaas.json should create proper e2e/__tmp__/samples/fablo-config-hlf3-1org-2chaincode-raft-ccaas.json.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf3-1org-2chaincode-raft-ccaas.json 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-private-data.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-private-data.yaml.tmpdir/fablo-target/fablo-config.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-private-data.yaml 1`] = `
"---
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json
global:
fabricVersion: 2.5.12
tls: false
Expand Down Expand Up @@ -2200,7 +2200,7 @@ fi
`;

exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-private-data.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-private-data.yaml.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf2-2orgs-2chaincodes-private-data.yaml 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fablo-config.yaml from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"---
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json
global:
fabricVersion: 2.5.12
tls: true
Expand Down Expand Up @@ -3569,7 +3569,7 @@ fi
`;

exports[`samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml should create proper e2e/__tmp__/samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf2-3orgs-1chaincode-raft-explorer.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-3orgs-1chaincode-raft-explorer.json.tmpdir/fablo-target/fablo-config.json from samples/fablo-config-hlf2-3orgs-1chaincode-raft-explorer.json 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.3.2",
"tls": true,
Expand Down Expand Up @@ -4000,7 +4000,7 @@ fi
`;

exports[`samples/fablo-config-hlf2-3orgs-1chaincode-raft-explorer.json should create proper e2e/__tmp__/samples/fablo-config-hlf2-3orgs-1chaincode-raft-explorer.json.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf2-3orgs-1chaincode-raft-explorer.json 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf3-1orgs-1chaincode.json should create proper e2e/__tmp__/samples/fablo-config-hlf3-1orgs-1chaincode.json.tmpdir/fablo-target/fablo-config.json from samples/fablo-config-hlf3-1orgs-1chaincode.json 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "3.1.0",
"tls": true,
Expand Down Expand Up @@ -1717,7 +1717,7 @@ fi
`;

exports[`samples/fablo-config-hlf3-1orgs-1chaincode.json should create proper e2e/__tmp__/samples/fablo-config-hlf3-1orgs-1chaincode.json.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf3-1orgs-1chaincode.json 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf3-2orgs-1chaincode-raft-ccaas.json should create proper e2e/__tmp__/samples/fablo-config-hlf3-2orgs-1chaincode-raft-ccaas.json.tmpdir/fablo-target/fablo-config.json from samples/fablo-config-hlf3-2orgs-1chaincode-raft-ccaas.json 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "3.1.0",
"tls": true
Expand Down Expand Up @@ -2286,7 +2286,7 @@ fi
`;

exports[`samples/fablo-config-hlf3-2orgs-1chaincode-raft-ccaas.json should create proper e2e/__tmp__/samples/fablo-config-hlf3-2orgs-1chaincode-raft-ccaas.json.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf3-2orgs-1chaincode-raft-ccaas.json 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exports[`samples/fablo-config-hlf3-bft-1orgs-1chaincode.json should create proper e2e/__tmp__/samples/fablo-config-hlf3-bft-1orgs-1chaincode.json.tmpdir/fablo-target/fablo-config.json from samples/fablo-config-hlf3-bft-1orgs-1chaincode.json 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "3.1.0",
"tls": true,
Expand Down Expand Up @@ -1743,7 +1743,7 @@ fi
`;

exports[`samples/fablo-config-hlf3-bft-1orgs-1chaincode.json should create proper e2e/__tmp__/samples/fablo-config-hlf3-bft-1orgs-1chaincode.json.tmpdir/fablo-target/fabric-docker/.env from samples/fablo-config-hlf3-bft-1orgs-1chaincode.json 1`] = `
"FABLO_VERSION=2.4.3
"FABLO_VERSION=2.5.0
FABLO_BUILD=<date with git hash>
FABLO_REST_VERSION=0.1.2
HYPERLEDGER_EXPLORER_VERSION=2.0.0
Expand Down
6 changes: 3 additions & 3 deletions e2e/__snapshots__/fabloCommands.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3020,7 +3020,7 @@ Validation warnings count: 0

exports[`init should init simple fablo config 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "3.1.0",
"tls": true,
Expand Down Expand Up @@ -3086,7 +3086,7 @@ exports[`init should init simple fablo config 1`] = `

exports[`init should init simple fablo config with node chaincode 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "3.1.0",
"tls": true,
Expand Down Expand Up @@ -3161,7 +3161,7 @@ exports[`init should init simple fablo config with node chaincode 1`] = `

exports[`init should init simple fablo config with node chaincode and rest api 1`] = `
"{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "3.1.0",
"tls": true,
Expand Down
2 changes: 1 addition & 1 deletion e2e/__snapshots__/schema.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exports[`schema should match snapshot 1`] = `
"default": {},
"properties": {
"$schema": {
"const": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"const": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
},
"chaincodes": {
"$id": "#/properties/chaincodes",
Expand Down
2 changes: 1 addition & 1 deletion fablo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

FABLO_VERSION=2.4.3
FABLO_VERSION=2.5.0
FABLO_IMAGE_NAME="ghcr.io/fablo-io/fablo"
FABLO_IMAGE="$FABLO_IMAGE_NAME:$FABLO_VERSION"

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-fablo",
"version": "2.4.3",
"version": "2.5.0",
"description": "Fablo is a simple tool to generate the Hyperledger Fabric blockchain network and run it on Docker. It supports RAFT and solo consensus protocols, multiple organizations and channels, chaincode installation and upgrade.",
"author": "Piotr Hejwowski <piotr.hejwowski@gmail.com>, Jakub Dzikowski <jakub@dzikowski.online>",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion samples/fablo-config-hlf2-1org-1chaincode-k8s.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.4.7",
"tls": false,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.5.12",
"tls": false,
Expand Down
2 changes: 1 addition & 1 deletion samples/fablo-config-hlf2-1org-1chaincode.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.5.9",
"tls": false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json
global:
fabricVersion: 2.5.12
tls: false
Expand Down
2 changes: 1 addition & 1 deletion samples/fablo-config-hlf2-2orgs-2chaincodes-raft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json
"$schema": https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json
global:
fabricVersion: 2.5.12
tls: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.4.3/schema.json",
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.5.0/schema.json",
"global": {
"fabricVersion": "2.3.2",
"tls": true,
Expand Down
Loading
Loading