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: 8.11.0 -> 9.0.0 #1481

Merged
merged 3 commits into from
Jul 17, 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
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