Skip to content

Commit

Permalink
cardano-node: 8.11.0 -> 9.0.0 (#1481)
Browse files Browse the repository at this point in the history
Upgrading support for cardano-node 9.0.0 will prepare us for the
upcoming hard-fork to Conway.
  • Loading branch information
locallycompact authored Jul 17, 2024
1 parent 6b1ef6d commit 209de1d
Show file tree
Hide file tree
Showing 11 changed files with 283 additions and 593 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.9.0
image: ghcr.io/intersectmbo/cardano-node:9.0.0
volumes:
- /srv/var/cardano/state-preview:/data
environment:
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ changes.

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

- Tested with `cardano-node 8.11.0` and `cardano-cli 8.23.1.0`.
- Tested with `cardano-node 9.0.0` and `cardano-cli 9.0.0.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.
- `SpendingNodeUtxoForbidden` error was removed.

- 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
8 changes: 4 additions & 4 deletions 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:8.9.1
image: ghcr.io/intersectmbo/cardano-node:9.0.0
volumes:
- ./devnet:/devnet
environment:
Expand All @@ -21,7 +21,7 @@ services:

hydra-node-1:
# NOTE: Make sure to use the same image in ./seed-devnet.sh
image: ghcr.io/cardano-scaling/hydra-node:0.17.0
image: ghcr.io/cardano-scaling/hydra-node:unstable
build:
context: ../
target: hydra-node
Expand Down Expand Up @@ -56,7 +56,7 @@ services:

hydra-node-2:
# NOTE: Make sure to use the same image in ./seed-devnet.sh
image: ghcr.io/cardano-scaling/hydra-node:0.17.0
image: ghcr.io/cardano-scaling/hydra-node:unstable
build:
context: ../
target: hydra-node
Expand Down Expand Up @@ -91,7 +91,7 @@ services:

hydra-node-3:
# NOTE: Make sure to use the same image in ./seed-devnet.sh
image: ghcr.io/cardano-scaling/hydra-node:0.17.0
image: ghcr.io/cardano-scaling/hydra-node:unstable
build:
context: ../
target: hydra-node
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ After ensuring the tools above are available, begin by downloading pre-built bin
mkdir -p bin
version=0.17.0
mithril_version=2423.0
node_version=8.9.3
node_version=9.0.0
curl -L -O https://github.com/cardano-scaling/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/IntersectMBO/cardano-node/releases/download/${node_version}/cardano-node-${node_version}-linux.tar.gz
Expand All @@ -51,7 +51,7 @@ chmod +x bin/*
mkdir -p bin
version=0.17.0
mithril_version=2423.0
node_version=8.9.3
node_version=9.0.0
curl -L -O https://github.com/cardano-scaling/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip
unzip -d bin hydra-aarch64-darwin-${version}.zip
curl -L -O https://github.com/IntersectMBO/cardano-node/releases/download/${node_version}/cardano-node-${node_version}-macos.tar.gz
Expand Down
Loading

0 comments on commit 209de1d

Please sign in to comment.