Skip to content

Commit

Permalink
Update dependencies and protocol versions (#103)
Browse files Browse the repository at this point in the history
Upgraded Cardano node, Ogmios, and Kupo to newer versions for compatibility
  • Loading branch information
satran004 authored Jan 20, 2025
1 parent 18746cc commit 2d18025
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions applications/cli/config/download.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#Please specify either the version or the full url for the following components
node.version=10.1.3
ogmios.version=6.9.0
kupo.version=2.9.0
node.version=10.1.4
ogmios.version=6.11.0
kupo.version=2.10.0
yaci.store.version=0.1.1-graalvm-preview1
yaci.store.jar.version=0.1.0
yaci.store.jar.version=0.1.1

#node.url=
#ogmios.url=
Expand Down
4 changes: 2 additions & 2 deletions applications/cli/docker/download-amd64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
file=cardano-node-10.1.3-linux.tar.gz
wget https://github.com/IntersectMBO/cardano-node/releases/download/10.1.3/cardano-node-10.1.3-linux.tar.gz
file=cardano-node-10.1.4-linux.tar.gz
wget https://github.com/IntersectMBO/cardano-node/releases/download/10.1.4/cardano-node-10.1.4-linux.tar.gz

mkdir /app/cardano-bin

Expand Down
4 changes: 2 additions & 2 deletions applications/cli/docker/download-arm64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
file=cardano-10_1_3-aarch64-static-musl-ghc_966.tar.zst
dir=cardano-10_1_3-aarch64-static-musl-ghc_966
file=cardano-10_1_4-aarch64-static-musl-ghc_966.tar.zst
dir=cardano-10_1_4-aarch64-static-musl-ghc_966
wget https://github.com/armada-alliance/cardano-node-binaries/raw/main/static-binaries/$file?raw=true -O - | tar -I zstd -xv

#unzip $file
Expand Down
4 changes: 2 additions & 2 deletions applications/cli/docker/download-kupo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ case $1 in
;;
esac

file=kupo-v2.9.0-$ARCH-linux.zip
wget https://github.com/CardanoSolutions/kupo/releases/download/v2.9/$file
file=kupo-v2.10.0-$ARCH-linux.zip
wget https://github.com/CardanoSolutions/kupo/releases/download/v2.10/$file

mkdir /app/kupo
unzip $file -d /app/kupo
Expand Down
2 changes: 1 addition & 1 deletion applications/cli/docker/download-ogmios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ case $1 in
esac


version=v6.9.0
version=v6.11.0
file=ogmios-${version}-${SUFFIX}-linux.zip
wget https://github.com/CardanoSolutions/ogmios/releases/download/${version}/$file

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ private void updateGenesis(Path clusterFolder, String clusterName, ClusterInfo c

//Check if protocol version should be minimun 9 and it's conway era
if (era == Era.Conway && genesisConfig.getProtocolMajorVer() < 9) {
values.put("protocolMajorVer", 9);
values.put("protocolMinorVer", 0);
values.put("protocolMajorVer", 10);
values.put("protocolMinorVer", 2);
}

//Derive security param
Expand Down
2 changes: 1 addition & 1 deletion config/version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
tag=0.10.0-preview5
tag=0.10.0-preview6
revision=

0 comments on commit 2d18025

Please sign in to comment.