Skip to content

Commit b8f62cc

Browse files
authored
Merge pull request #1258 from input-output-hk/cardano-node-8.7.3
Use cardano-node 8.7.3
2 parents d845064 + ec404f2 commit b8f62cc

File tree

7 files changed

+21
-19
lines changed

7 files changed

+21
-19
lines changed

CHANGELOG.md

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

1212
## [0.15.0] - UNRELEASED
1313

14+
- Tested against `cardano-node 8.7.3` and `cardano-cli 8.17.0.0`.
15+
1416
- Hydra Direct Chain layer does not maintain state and does not make any logic
1517
decisions. This is now completely responsibility of the HydraLogic layer.
1618
Posting transactions from this layer is now free of any knowledge of L1 keys.

demo/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/input-output-hk/cardano-node:8.7.2
5+
image: ghcr.io/input-output-hk/cardano-node:8.7.3
66
volumes:
77
- ./devnet:/devnet
88
environment:

docs/docs/tutorial/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ mkdir -p bin
4444
version=0.14.0
4545
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-x86_64-linux-${version}.zip
4646
unzip -d bin hydra-x86_64-linux-${version}.zip
47-
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-x86_64-linux-8.7.2.zip
48-
unzip -d bin cardano-node-8.7.2-linux.zip
47+
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.7.3/cardano-node-8.7.3-linux.tar.gz \
48+
| tar xz -C bin ./cardano-node ./cardano-cli
4949
curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-linux-x64.tar.gz \
5050
| tar xz -C bin mithril-client
5151
chmod +x bin/*
@@ -59,10 +59,10 @@ mkdir -p bin
5959
version=0.14.0
6060
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip
6161
unzip -d bin hydra-aarch64-darwin-${version}.zip
62-
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-aarch-darwin-8.7.2.zip
63-
unzip -d bin cardano-node-8.7.2-linux.zip
64-
curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-macos-x64.tar.gz \
65-
| tar xz -C bin
62+
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-aarch-darwin-8.7.3.zip
63+
unzip -d bin cardano-node-8.7.3-linux.zip
64+
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.7.3/cardano-node-8.7.3-macos.tar.gz \
65+
| tar xz -C bin --wildcards ./cardano-node ./cardano-cli '*.dylib'
6666
chmod +x bin/*
6767
```
6868

flake.lock

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

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
url = "github:input-output-hk/cardano-haskell-packages?ref=repo";
99
flake = false;
1010
};
11-
cardano-node.url = "github:input-output-hk/cardano-node/8.7.2";
11+
cardano-node.url = "github:intersectmbo/cardano-node/8.7.3";
1212
mithril.url = "github:input-output-hk/mithril/2347.0";
1313
};
1414

hydra-cluster/test/Test/CardanoNodeSpec.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec = do
2222
-- false positives test errors in case someone uses an "untested" /
2323
-- different than in shell.nix version of cardano-node and cardano-cli.
2424
it "has expected cardano-node version available" $
25-
getCardanoNodeVersion >>= (`shouldContain` "8.7.2")
25+
getCardanoNodeVersion >>= (`shouldContain` "8.7.3")
2626

2727
it "withCardanoNodeDevnet does start a block-producing devnet within 5 seconds" $
2828
failAfter 5 $

sample-node-config/aws/docker/docker-compose.yaml

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

55
services:
66
cardano-node:
7-
image: inputoutput/cardano-node:8.7.2
7+
image: inputoutput/cardano-node:8.7.3
88
restart: always
99
logging:
1010
driver: "awslogs"

0 commit comments

Comments
 (0)