Skip to content

Commit

Permalink
Merge pull request #1354 from input-output-hk/lc/cardano-node-8.9.0
Browse files Browse the repository at this point in the history
cardano node: 8.8.0-pre -> 8.9.0
  • Loading branch information
locallycompact committed Mar 13, 2024
2 parents aebba20 + 10fed3d commit c11f442
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 37 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
2 changes: 0 additions & 2 deletions hydra-explorer/hydra-explorer.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ test-suite tests
, filepath
, hspec
, hspec-wai
, http-types
, hydra-chain-observer
, hydra-explorer
, hydra-node
Expand All @@ -92,7 +91,6 @@ test-suite tests
, lens
, openapi3
, QuickCheck
, wai-extra
, yaml

other-modules:
Expand Down
2 changes: 0 additions & 2 deletions hydra-explorer/test/Hydra/ExplorerSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ import Data.OpenApi (
import Data.Yaml qualified as Yaml
import Hydra.Explorer (httpApp)
import Hydra.Logging (nullTracer)
import Network.HTTP.Types (statusCode)
import Network.Wai.Test (SResponse (..))
import System.FilePath ((</>))
import Test.Hspec.Wai (MatchBody (..), ResponseMatcher (ResponseMatcher), shouldRespondWith, (<:>))
import Test.Hspec.Wai qualified as Wai
Expand Down
1 change: 0 additions & 1 deletion hydra-node/hydra-node.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ test-suite tests
, cardano-ledger-alonzo
, cardano-ledger-api
, cardano-ledger-babbage:{cardano-ledger-babbage, testlib}
, cardano-ledger-binary
, cardano-ledger-core
, cardano-ledger-mary
, cardano-ledger-shelley
Expand Down

0 comments on commit c11f442

Please sign in to comment.