From 65b585b054ef5cdbdcf994967f1d6d1fa23c2440 Mon Sep 17 00:00:00 2001 From: Michal Rus Date: Fri, 7 Nov 2025 15:10:00 +0100 Subject: [PATCH 1/6] Fix the Darwin build of `cardano-node` (missing `liblmdb.so`) --- nix/internal/any-darwin.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/internal/any-darwin.nix b/nix/internal/any-darwin.nix index 6d9b112c75..b31f7613bd 100644 --- a/nix/internal/any-darwin.nix +++ b/nix/internal/any-darwin.nix @@ -142,7 +142,7 @@ in rec { cd $out mkdir -p ${exeName}-lib - mv *.dylib ${exeName}-lib/ + mv *.dylib *.so ${exeName}-lib/ otool -L ${exeName} \ | { grep -E '^\s*@executable_path' || true ; } \ | sed -r 's/^\s*//g ; s/ \(.*//g' \ @@ -153,7 +153,7 @@ in rec { codesign -f -s - ${exeName} || true cd ${exeName}-lib - ls *.dylib | while IFS= read -r dylib ; do + ls *.dylib *.so | while IFS= read -r dylib ; do otool -L "$dylib" \ | { grep -E '^\s*@executable_path' || true ; } \ | sed -r 's/^\s*//g ; s/ \(.*//g' \ From 7dfcbbce884886391bd97991592682d05f827b0c Mon Sep 17 00:00:00 2001 From: Michal Rus Date: Tue, 11 Nov 2025 16:36:50 +0100 Subject: [PATCH 2/6] Include `checkpoints.json` in Darwin installers --- nix/internal/any-darwin.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/internal/any-darwin.nix b/nix/internal/any-darwin.nix index b31f7613bd..87e54aefae 100644 --- a/nix/internal/any-darwin.nix +++ b/nix/internal/any-darwin.nix @@ -304,6 +304,7 @@ in rec { ${if (cluster != "selfnode") then '' cp installers/{genesis-byron.json,genesis-shelley.json,genesis-alonzo.json} "$dataDir"/ cp installers/genesis-conway.json "$dataDir"/ || true + cp installers/checkpoints.json "$dataDir"/ || true '' else '' cp installers/{signing.key,delegation.cert} "$dataDir"/ cp -f ${./../../utils/cardano/selfnode}/token-metadata.json "$dir"/ From e1657bf40178eb73f927e0c24d1618c5bac43e0a Mon Sep 17 00:00:00 2001 From: Michal Rus Date: Tue, 11 Nov 2025 16:58:15 +0100 Subject: [PATCH 3/6] Include `peer-snapshot.json` in MacOS installers --- nix/internal/any-darwin.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/internal/any-darwin.nix b/nix/internal/any-darwin.nix index 87e54aefae..92587f368b 100644 --- a/nix/internal/any-darwin.nix +++ b/nix/internal/any-darwin.nix @@ -305,6 +305,7 @@ in rec { cp installers/{genesis-byron.json,genesis-shelley.json,genesis-alonzo.json} "$dataDir"/ cp installers/genesis-conway.json "$dataDir"/ || true cp installers/checkpoints.json "$dataDir"/ || true + cp installers/peer-snapshot.json "$dataDir"/ || true '' else '' cp installers/{signing.key,delegation.cert} "$dataDir"/ cp -f ${./../../utils/cardano/selfnode}/token-metadata.json "$dir"/ From 914ceb90ae390787bbd4fd4e7d1830b54993c6d6 Mon Sep 17 00:00:00 2001 From: Michal Rus Date: Fri, 21 Nov 2025 10:35:15 +0100 Subject: [PATCH 4/6] Update `cardano-node` to 10.5.2 --- flake.lock | 8 ++++---- flake.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index 9027321fe9..17b2b963b3 100644 --- a/flake.lock +++ b/flake.lock @@ -3,16 +3,16 @@ "cardano-node-override": { "flake": false, "locked": { - "lastModified": 1752857436, - "narHash": "sha256-YAAwDfzMMTeEQa0zHin7yo2nMdxONJ983tJ3NrP7K6E=", + "lastModified": 1763677798, + "narHash": "sha256-VmYlafpkLafYNPenBMNK8iacohug+dkWwPUXQgkdCmE=", "owner": "IntersectMBO", "repo": "cardano-node", - "rev": "ca1ec278070baf4481564a6ba7b4a5b9e3d9f366", + "rev": "1ec98e952863fd836df8e7c3476fcce6cc019fce", "type": "github" }, "original": { "owner": "IntersectMBO", - "ref": "10.5.1", + "ref": "10.5.2", "repo": "cardano-node", "type": "github" } diff --git a/flake.nix b/flake.nix index 00fa250b38..cbe5865bb5 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-22.11-darwin"; cardano-wallet-unpatched.url = "github:cardano-foundation/cardano-wallet/v2025-03-31"; cardano-wallet-unpatched.flake = false; # otherwise, +10k quadratic dependencies in flake.lock… - cardano-node-override.url = "github:IntersectMBO/cardano-node/10.5.1"; + cardano-node-override.url = "github:IntersectMBO/cardano-node/10.5.2"; cardano-node-override.flake = false; cardano-playground.url = "github:input-output-hk/cardano-playground/56ebfef5595c43014029b039ade01b0ef06233e0"; cardano-playground.flake = false; # otherwise, +9k dependencies in flake.lock… From b4781615718258c3e64b42eb04b8db479a494300 Mon Sep 17 00:00:00 2001 From: Michal Rus Date: Fri, 21 Nov 2025 18:29:20 +0100 Subject: [PATCH 5/6] Update `cardano-node` to 10.5.3 --- flake.lock | 16 ++++++++-------- flake.nix | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/flake.lock b/flake.lock index 17b2b963b3..0f40b9c1a6 100644 --- a/flake.lock +++ b/flake.lock @@ -3,16 +3,16 @@ "cardano-node-override": { "flake": false, "locked": { - "lastModified": 1763677798, - "narHash": "sha256-VmYlafpkLafYNPenBMNK8iacohug+dkWwPUXQgkdCmE=", + "lastModified": 1763736877, + "narHash": "sha256-c1a6DzDlm+wzwa85TWeOFrPEldsfjiZw7+DcMMW9nc4=", "owner": "IntersectMBO", "repo": "cardano-node", - "rev": "1ec98e952863fd836df8e7c3476fcce6cc019fce", + "rev": "6c034ec038d8d276a3595e10e2d38643f09bd1f2", "type": "github" }, "original": { "owner": "IntersectMBO", - "ref": "10.5.2", + "ref": "10.5.3", "repo": "cardano-node", "type": "github" } @@ -20,17 +20,17 @@ "cardano-playground": { "flake": false, "locked": { - "lastModified": 1753409121, - "narHash": "sha256-TrpWmHFHjgrU5TopI0CdoPSGmJPcAXzfTOAmUX86Gp8=", + "lastModified": 1763488287, + "narHash": "sha256-fP592wXc5IaJFUFjRi9jbR9Gm8nI0oRU36j9bya2FsI=", "owner": "input-output-hk", "repo": "cardano-playground", - "rev": "56ebfef5595c43014029b039ade01b0ef06233e0", + "rev": "19d0c33a7f00856727344faf011f83cf30cfb06a", "type": "github" }, "original": { "owner": "input-output-hk", "repo": "cardano-playground", - "rev": "56ebfef5595c43014029b039ade01b0ef06233e0", + "rev": "19d0c33a7f00856727344faf011f83cf30cfb06a", "type": "github" } }, diff --git a/flake.nix b/flake.nix index cbe5865bb5..b1d0bff999 100644 --- a/flake.nix +++ b/flake.nix @@ -5,9 +5,9 @@ nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-22.11-darwin"; cardano-wallet-unpatched.url = "github:cardano-foundation/cardano-wallet/v2025-03-31"; cardano-wallet-unpatched.flake = false; # otherwise, +10k quadratic dependencies in flake.lock… - cardano-node-override.url = "github:IntersectMBO/cardano-node/10.5.2"; + cardano-node-override.url = "github:IntersectMBO/cardano-node/10.5.3"; cardano-node-override.flake = false; - cardano-playground.url = "github:input-output-hk/cardano-playground/56ebfef5595c43014029b039ade01b0ef06233e0"; + cardano-playground.url = "github:input-output-hk/cardano-playground/19d0c33a7f00856727344faf011f83cf30cfb06a"; cardano-playground.flake = false; # otherwise, +9k dependencies in flake.lock… cardano-shell.url = "github:input-output-hk/cardano-shell/79f48aa3aa8007a1597cbedc22031eab1f05decd"; cardano-shell.flake = false; From 6e7f6dac5ec0800bdbe3ed6f53b34915fd3f0892 Mon Sep 17 00:00:00 2001 From: Michal Rus Date: Wed, 5 Nov 2025 17:51:23 +0100 Subject: [PATCH 6/6] Release version 7.3.0 --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b954002c3e..58bd05041e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## vNext +## 7.3.0 ### Chores diff --git a/package.json b/package.json index a3e261d682..f7b70b0cd3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "daedalus", "productName": "Daedalus", - "version": "7.2.0", + "version": "7.3.0", "description": "Cryptocurrency Wallet", "main": "./dist/main/index.js", "scripts": {