Skip to content

Commit

Permalink
cardano-node: 8.8.0-pre -> 8.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
locallycompact committed Mar 13, 2024
1 parent c48593b commit 10fed3d
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/explorer/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.9"

services:
cardano-node:
image: ghcr.io/intersectmbo/cardano-node:8.8.0-pre
image: ghcr.io/intersectmbo/cardano-node:8.9.0
volumes:
- /srv/var/cardano/state-sanchonet:/data
environment:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ changes.

- **DO NOT RELEASE** as only tested against Sanchonet.

- **BREAKING** Update to and tested against `cardano-node 8.8.0-pre` and `cardano-cli 8.20`. This made smoke tests incompatible with public testnets and mainnet.
- **BREAKING** Update to and tested against `cardano-node 8.9.0` and `cardano-cli 8.20.3.0`. This made smoke tests incompatible with public testnets and mainnet.

- **BREAKING** Hydra scripts changed due to updates in the `plutus` toolchain:
- Overall slight increase in script size.
Expand Down
8 changes: 4 additions & 4 deletions docs/docs/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ mkdir -p bin
version=0.15.0
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-x86_64-linux-${version}.zip
unzip -d bin hydra-x86_64-linux-${version}.zip
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.8.0-pre/cardano-node-8.8.0-linux.tar.gz \
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.9.0/cardano-node-8.9.0-linux.tar.gz \
| tar xz -C bin ./cardano-node ./cardano-cli
curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-linux-x64.tar.gz \
| tar xz -C bin mithril-client
Expand All @@ -59,9 +59,9 @@ mkdir -p bin
version=0.15.0
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip
unzip -d bin hydra-aarch64-darwin-${version}.zip
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-aarch-darwin-8.8.0.zip
unzip -d bin cardano-node-8.8.0-linux.zip
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.8.0-pre/cardano-node-8.8.0-macos.tar.gz \
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-aarch-darwin-8.9.0.zip
unzip -d bin cardano-node-8.9.0-linux.zip
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.9.0/cardano-node-8.9.0-macos.tar.gz \
| tar xz -C bin --wildcards ./cardano-node ./cardano-cli '*.dylib'
chmod +x bin/*
```
Expand Down
46 changes: 23 additions & 23 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
url = "github:cardano-scaling/haskell-language-server?ref=2.6-patched";
flake = false;
};
cardano-node.url = "github:intersectmbo/cardano-node/8.8.0-pre";
cardano-node.url = "github:intersectmbo/cardano-node/8.9.0";
mithril.url = "github:input-output-hk/mithril/2347.0";
nix-npm-buildpackage.url = "github:serokell/nix-npm-buildpackage";
};
Expand Down
2 changes: 1 addition & 1 deletion hydra-cluster/test/Test/CardanoNodeSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec = do
-- false positives test errors in case someone uses an "untested" /
-- different than in shell.nix version of cardano-node and cardano-cli.
it "has expected cardano-node version available" $
getCardanoNodeVersion >>= (`shouldContain` "8.8.0")
getCardanoNodeVersion >>= (`shouldContain` "8.9.0")

around (failAfter 5 . setupTracerAndTempDir) $ do
it "withCardanoNodeDevnet does start a block-producing devnet within 5 seconds" $ \(tr, tmp) ->
Expand Down
2 changes: 1 addition & 1 deletion hydra-cluster/test/Test/Hydra/Cluster/CardanoCliSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec =
Just something -> something == "Witnessed Tx BabbageEra"

it "has expected cardano-cli version available" $
readProcess "cardano-cli" ["--version"] "" >>= (`shouldContain` "8.20.0.0")
readProcess "cardano-cli" ["--version"] "" >>= (`shouldContain` "8.20.3.0")

around (showLogsOnFailure "CardanoCliSpec") $ do
it "query protocol-parameters is compatible with our FromJSON instance" $ \tracer ->
Expand Down

0 comments on commit 10fed3d

Please sign in to comment.