Skip to content

Commit 7b7c2dd

Browse files
committed
fix: bump mithril version to 2517.1
pre-release builds have been failing because of Mithril for couple of weeks. Seems like there's been a breaking change we need to take care of...
1 parent 75ba5f7 commit 7b7c2dd

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
};
117117
customConfig.url = "github:input-output-hk/empty-flake";
118118
cardano-node-runtime.url = "github:IntersectMBO/cardano-node?ref=10.2.1";
119-
mithril.url = "github:input-output-hk/mithril?ref=2506.0";
119+
mithril.url = "github:input-output-hk/mithril?ref=2517.1";
120120
};
121121

122122
outputs = { self, nixpkgs, nixpkgs-unstable, hostNixpkgs, flake-utils,

lib/launcher/src/Cardano/Launcher/Mithril.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ downloadMithril workingDir = withCurrentDirectory workingDir $ do
9191
"aarch64" -> "arm64"
9292
other -> other
9393

94-
version = "2450.0"
94+
version = "2517.1"
9595
mithrilTar = "mithril-" <> version <> "-" <> platform <> ".tar"
9696
mithrilPackage = mithrilTar <> ".gz"
9797
downloadUrl = "https://github.com/input-output-hk/mithril/releases/download/"

run/common/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
mithril:
5353
env_file:
5454
- .env
55-
image: ghcr.io/input-output-hk/mithril-client:2506.0-2627f17
55+
image: ghcr.io/input-output-hk/mithril-client:2517.1-b1a2faa
5656
user: ${USER_ID}:${GROUP_ID}
5757
volumes:
5858
- ${NODE_DB}:/app/db

run/common/nix/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ cleanup() {
7878
mithril() {
7979
# shellcheck disable=SC2048
8080
# shellcheck disable=SC2086
81-
nix shell "github:input-output-hk/mithril?ref=2506.0" -c $*
81+
nix shell "github:input-output-hk/mithril?ref=2517.1" -c $*
8282
}
8383

8484
# Trap the cleanup function on exit

run/common/nix/snapshot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# shellcheck shell=bash
33

44
function mithril() {
5-
nix shell 'github:input-output-hk/mithril?ref=2506.0' --command mithril-client $@
5+
nix shell 'github:input-output-hk/mithril?ref=2517.1' --command mithril-client $@
66
}
77

88
function jq() {

run/mainnet/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
mithril:
5050
env_file:
5151
- .env
52-
image: ghcr.io/input-output-hk/mithril-client:2506.0-2627f17
52+
image: ghcr.io/input-output-hk/mithril-client:2517.1-b1a2faa
5353
user: ${USER_ID}:${GROUP_ID}
5454
volumes:
5555
- ${NODE_DB}:/app/db

scripts/buildkite/admin/refresh-preprod-snapshot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export GENESIS_VERIFICATION_KEY=5b3132372c37332c3132342c3136312c362c3133372c3133
1111
mithril() {
1212
# shellcheck disable=SC2048
1313
# shellcheck disable=SC2086
14-
nix shell "github:input-output-hk/mithril?ref=2506.0" -c $*
14+
nix shell "github:input-output-hk/mithril?ref=2517.1" -c $*
1515
}
1616

1717
mithril echo "mithril is available" || exit 44

0 commit comments

Comments
 (0)