Skip to content

Commit b402ede

Browse files
authored
Update cardano-node to 9.1.1 (#1630)
This also updates mithril and will make it compatible with latest mithril snapshots again, greatly benefiting smoke tests runtimes. --- * [x] CHANGELOG updated * [x] Documentation update not needed * [x] Haddocks update not needed * [x] No new TODOs introduced
2 parents a589d93 + 2d7bd05 commit b402ede

File tree

8 files changed

+32
-30
lines changed

8 files changed

+32
-30
lines changed

.github/workflows/explorer/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.9"
22

33
services:
44
cardano-node:
5-
image: ghcr.io/intersectmbo/cardano-node:9.1.0
5+
image: ghcr.io/intersectmbo/cardano-node:9.1.1
66
volumes:
77
- /srv/var/cardano/state-preview:/data
88
environment:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ changes.
1010

1111
## [0.19.0] - UNRELEASED
1212

13+
- Tested with `cardano-node 9.1.1` and `cardano-cli 9.2.1.0`
14+
1315
- Switch L2 ledger to use the `Conway` era. [#1178](https://github.com/cardano-scaling/hydra/issues/1178)
1416
- Conway formatted transactions can be submitted to the `hydra-node`, while past eras are still supported (except deprecated features like protocol updates).
1517
- This includes support for `PlutusV3` scripts, but most of the governance-related features have no meaning in the Hydra L2.

demo/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
cardano-node:
3-
image: ghcr.io/intersectmbo/cardano-node:9.1.0
3+
image: ghcr.io/intersectmbo/cardano-node:9.1.1
44
volumes:
55
- ./devnet:/devnet
66
environment:

docs/docs/tutorial/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ After ensuring the tools above are available, begin by downloading pre-built bin
3232
```shell
3333
mkdir -p bin
3434
hydra_version=0.18.1
35-
mithril_version=2428.0
36-
cardano_node_version=9.1.0
35+
mithril_version=2430.0
36+
cardano_node_version=9.1.1
3737
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${hydra_version}/hydra-x86_64-linux-${hydra_version}.zip
3838
unzip -d bin hydra-x86_64-linux-${hydra_version}.zip
3939
curl -L -O https://github.com/IntersectMBO/cardano-node/releases/download/${cardano_node_version}/cardano-node-${cardano_node_version}-linux.tar.gz
@@ -50,8 +50,8 @@ chmod +x bin/*
5050
```shell
5151
mkdir -p bin
5252
hydra_version=0.18.1
53-
mithril_version=2428.0
54-
cardano_node_version=9.1.0
53+
mithril_version=2430.0
54+
cardano_node_version=9.1.1
5555
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${hydra_version}/hydra-aarch64-darwin-${hydra_version}.zip
5656
unzip -d bin hydra-aarch64-darwin-${hydra_version}.zip
5757
curl -L -O https://github.com/IntersectMBO/cardano-node/releases/download/${cardano_node_version}/cardano-node-${cardano_node_version}-macos.tar.gz

flake.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
url = "github:haskell/haskell-language-server";
2020
flake = false;
2121
};
22-
cardano-node.url = "github:intersectmbo/cardano-node/9.1.0";
23-
mithril.url = "github:input-output-hk/mithril/2428.0";
22+
cardano-node.url = "github:intersectmbo/cardano-node/9.1.1";
23+
mithril.url = "github:input-output-hk/mithril/2430.0";
2424
nix-npm-buildpackage.url = "github:serokell/nix-npm-buildpackage";
2525
};
2626

hydra-cluster/test/Test/CardanoNodeSpec.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ supportedNetworks :: [KnownNetwork]
2121
supportedNetworks = [Mainnet, Preproduction, Preview, Sanchonet]
2222

2323
supportedCardanoNodeVersion :: String
24-
supportedCardanoNodeVersion = "9.1.0"
24+
supportedCardanoNodeVersion = "9.1.1"
2525

2626
forSupportedKnownNetworks :: String -> (KnownNetwork -> IO ()) -> Spec
2727
forSupportedKnownNetworks msg action = forEachKnownNetwork msg $ \network -> do

sample-node-config/another-nixos/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
inputs.nixpkgs.follows = "nixpkgs";
77
};
88

9-
cardano-node.url = "github:IntersectMBO/cardano-node/9.1.0";
9+
cardano-node.url = "github:IntersectMBO/cardano-node/9.1.1";
1010
hydra.url = "github:cardano-scaling/hydra/209de1dd8c5ae484a45a4db3af043c4a9d271306";
1111
mithril.url = "github:input-output-hk/mithril/2423.0";
1212
};

0 commit comments

Comments
 (0)