Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cardano-node: 9.0.0 -> 9.1.0 #1531

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ changes.

- **DO NOT RELEASE** as the tested `cardano-node` version is not intended to be used on `mainnet` yet.

- Tested with `cardano-node 9.0.0` and `cardano-cli 9.0.0.0`.
- Tested with `cardano-node 9.1.0` and `cardano-cli 9.2.1.0`.

- **BREAKING** Changes to the `hydra-node` API `/commit` endpoint [#1463](https://github.com/cardano-scaling/hydra/pull/1463):
- Removed the check that prevented committing UTxOs from an internal `hydra-node` wallet.
Expand All @@ -22,7 +22,7 @@ changes.
- Submitting a decommit transaction to `POST /decommit` or as `Decommit` command through websocket, requests removal of this transactions' outputs from the head.
- When successful, `DecommitApproved` and `DecommitFinalized` indicate that all outputs are made available on the layer one.
- Invalid transactions are explained through a `DecommitInvalid` server output.

- Change `--start-chain-from` to always use the newer point when also a head state is known.

- Moved several pages from "core concepts" into the user manual and developer docs to futher improve user journey.
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.0.0
image: ghcr.io/intersectmbo/cardano-node:9.1.0
volumes:
- ./devnet:/devnet
environment:
Expand Down
20 changes: 10 additions & 10 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:haskell/haskell-language-server";
flake = false;
};
cardano-node.url = "github:intersectmbo/cardano-node/9.0.0";
cardano-node.url = "github:intersectmbo/cardano-node/9.1.0";
mithril.url = "github:input-output-hk/mithril/2428.0";
nix-npm-buildpackage.url = "github:serokell/nix-npm-buildpackage";
};
Expand Down
4 changes: 2 additions & 2 deletions hydra-cluster/test/Test/CardanoNodeSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import System.Directory (doesFileExist)
import Test.Hydra.Cluster.Utils (forEachKnownNetwork)

supportedNetworks :: [KnownNetwork]
supportedNetworks = [Sanchonet]
supportedNetworks = [Mainnet, Preproduction, Preview, Sanchonet]

supportedCardanoNodeVersion :: String
supportedCardanoNodeVersion = "9.0.0"
supportedCardanoNodeVersion = "9.1.0"

forSupportedKnownNetworks :: String -> (KnownNetwork -> IO ()) -> Spec
forSupportedKnownNetworks msg action = forEachKnownNetwork msg $ \network -> do
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` "9.0.0.0")
readProcess "cardano-cli" ["--version"] "" >>= (`shouldContain` "9.2.1.0")

around (showLogsOnFailure "CardanoCliSpec") $ do
it "query protocol-parameters is compatible with our FromJSON instance" $ \tracer ->
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.0.0";
cardano-node.url = "github:IntersectMBO/cardano-node/9.1.0";
hydra.url = "github:cardano-scaling/hydra/209de1dd8c5ae484a45a4db3af043c4a9d271306";
mithril.url = "github:input-output-hk/mithril/2423.0";
};
Expand Down