Skip to content

Commit

Permalink
Update cardano-node to 9.1.1
Browse files Browse the repository at this point in the history
This also updates mithril and will make it compatible with latest
mithril snapshots again, greatly benefiting smoke tests runtimes.
  • Loading branch information
ch1bo authored and noonio committed Sep 13, 2024
1 parent a589d93 commit 2d7bd05
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 30 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:9.1.0
image: ghcr.io/intersectmbo/cardano-node:9.1.1
volumes:
- /srv/var/cardano/state-preview:/data
environment:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ changes.

## [0.19.0] - UNRELEASED

- Tested with `cardano-node 9.1.1` and `cardano-cli 9.2.1.0`

- Switch L2 ledger to use the `Conway` era. [#1178](https://github.com/cardano-scaling/hydra/issues/1178)
- Conway formatted transactions can be submitted to the `hydra-node`, while past eras are still supported (except deprecated features like protocol updates).
- This includes support for `PlutusV3` scripts, but most of the governance-related features have no meaning in the Hydra L2.
Expand Down
2 changes: 1 addition & 1 deletion demo/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
cardano-node:
image: ghcr.io/intersectmbo/cardano-node:9.1.0
image: ghcr.io/intersectmbo/cardano-node:9.1.1
volumes:
- ./devnet:/devnet
environment:
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 @@ -32,8 +32,8 @@ After ensuring the tools above are available, begin by downloading pre-built bin
```shell
mkdir -p bin
hydra_version=0.18.1
mithril_version=2428.0
cardano_node_version=9.1.0
mithril_version=2430.0
cardano_node_version=9.1.1
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${hydra_version}/hydra-x86_64-linux-${hydra_version}.zip
unzip -d bin hydra-x86_64-linux-${hydra_version}.zip
curl -L -O https://github.com/IntersectMBO/cardano-node/releases/download/${cardano_node_version}/cardano-node-${cardano_node_version}-linux.tar.gz
Expand All @@ -50,8 +50,8 @@ chmod +x bin/*
```shell
mkdir -p bin
hydra_version=0.18.1
mithril_version=2428.0
cardano_node_version=9.1.0
mithril_version=2430.0
cardano_node_version=9.1.1
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${hydra_version}/hydra-aarch64-darwin-${hydra_version}.zip
unzip -d bin hydra-aarch64-darwin-${hydra_version}.zip
curl -L -O https://github.com/IntersectMBO/cardano-node/releases/download/${cardano_node_version}/cardano-node-${cardano_node_version}-macos.tar.gz
Expand Down
40 changes: 20 additions & 20 deletions flake.lock

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

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
url = "github:haskell/haskell-language-server";
flake = false;
};
cardano-node.url = "github:intersectmbo/cardano-node/9.1.0";
mithril.url = "github:input-output-hk/mithril/2428.0";
cardano-node.url = "github:intersectmbo/cardano-node/9.1.1";
mithril.url = "github:input-output-hk/mithril/2430.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 @@ -21,7 +21,7 @@ supportedNetworks :: [KnownNetwork]
supportedNetworks = [Mainnet, Preproduction, Preview, Sanchonet]

supportedCardanoNodeVersion :: String
supportedCardanoNodeVersion = "9.1.0"
supportedCardanoNodeVersion = "9.1.1"

forSupportedKnownNetworks :: String -> (KnownNetwork -> IO ()) -> Spec
forSupportedKnownNetworks msg action = forEachKnownNetwork msg $ \network -> do
Expand Down
2 changes: 1 addition & 1 deletion sample-node-config/another-nixos/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};

cardano-node.url = "github:IntersectMBO/cardano-node/9.1.0";
cardano-node.url = "github:IntersectMBO/cardano-node/9.1.1";
hydra.url = "github:cardano-scaling/hydra/209de1dd8c5ae484a45a4db3af043c4a9d271306";
mithril.url = "github:input-output-hk/mithril/2423.0";
};
Expand Down

0 comments on commit 2d7bd05

Please sign in to comment.