Skip to content

Commit 52b1c0f

Browse files
authored
Merge pull request #3291 from input-output-hk/release/7.2.0
Release 7.2.0
2 parents d836461 + 1458fc3 commit 52b1c0f

File tree

16 files changed

+73
-56
lines changed

16 files changed

+73
-56
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 7.2.0
4+
5+
### Fixes
6+
7+
- Fixed a blank screen issue ([PR 3289](https://github.com/input-output-hk/daedalus/pull/3289))
8+
9+
### Chores
10+
11+
- Update `cardano-node` to 10.2.1 and `cardano-wallet` to v2025-03-31 ([PR 3288](https://github.com/input-output-hk/daedalus/pull/3288))
12+
13+
- Added the links to app.projectcatalyst.io ([PR 3286](https://github.com/input-output-hk/daedalus/pull/3286))
14+
315
## 7.1.0
416

517
### Chores

flake.lock

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

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
inputs = {
55
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-22.11-darwin";
6-
cardano-wallet-unpatched.url = "github:cardano-foundation/cardano-wallet/v2025-01-09";
6+
cardano-wallet-unpatched.url = "github:cardano-foundation/cardano-wallet/v2025-03-31";
77
cardano-wallet-unpatched.flake = false; # otherwise, +10k quadratic dependencies in flake.lock…
8-
cardano-node-override.url = "github:IntersectMBO/cardano-node/10.1.4";
8+
cardano-node-override.url = "github:IntersectMBO/cardano-node/10.2.1";
99
cardano-node-override.flake = false;
1010
cardano-playground.url = "github:input-output-hk/cardano-playground/d3322dce0ab1c00386adc93899aabe9252342b54";
1111
cardano-playground.flake = false; # otherwise, +9k dependencies in flake.lock…

netlify.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@ command = "yarn && yarn storybook:build"
44
[build.environment]
55
YARN_VERSION = "1.22.19"
66
NODE_VERSION = "18.12.1"
7-
CXXFLAGS = "-I/home/linuxbrew/.linuxbrew/include"
8-
LDFLAGS = "-L/home/linuxbrew/.linuxbrew/lib"
7+
CPPFLAGS = "-I/home/linuxbrew/.linuxbrew/opt/systemd/include -I/home/linuxbrew/.linuxbrew/include"
8+
CXXFLAGS = "-I/home/linuxbrew/.linuxbrew/opt/systemd/include -I/home/linuxbrew/.linuxbrew/include"
9+
LDFLAGS = "-L/home/linuxbrew/.linuxbrew/opt/systemd/lib -L/home/linuxbrew/.linuxbrew/lib"
10+
PKG_CONFIG_PATH = "/home/linuxbrew/.linuxbrew/opt/systemd/lib/pkgconfig:/home/linuxbrew/.linuxbrew/lib/pkgconfig"

nix/internal/any-darwin.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -392,9 +392,9 @@ in rec {
392392
makeSignedInstaller = genClusters (cluster: pkgs.writeShellScriptBin "make-signed-installer" (let
393393

394394
# FIXME: in the future this has to be done better, now let’s reuse the Buildkite legacy:
395-
credentials = "/var/lib/buildkite-agent/signing.sh";
396-
codeSigningConfig = "/var/lib/buildkite-agent/code-signing-config.json";
397-
signingConfig = "/var/lib/buildkite-agent/signing-config.json";
395+
credentials = "/var/lib/buildkite-agent-default/signing.sh";
396+
codeSigningConfig = "/var/lib/buildkite-agent-default/code-signing-config.json";
397+
signingConfig = "/var/lib/buildkite-agent-default/signing-config.json";
398398
shallSignPredicate = "[ -f ${credentials} ] && [ -f ${codeSigningConfig} ] && [ -f ${signingConfig} ]";
399399
bashSetup = ''
400400
set -o errexit
@@ -451,7 +451,7 @@ in rec {
451451
if ${shallSignPredicate} ; then
452452
echo "Signing installer…"
453453
454-
# FIXME: this doesn’t work outside of `buildkite-agent`, it seems:
454+
# FIXME: this doesn’t work outside of `buildkite-agent-default`, it seems:
455455
#(
456456
# source ${credentials}
457457
# security unlock-keychain -p "$SIGNING" "$signingKeyChain"
@@ -473,7 +473,7 @@ in rec {
473473
cd /
474474
${bashSetup}
475475
if ${shallSignPredicate} && [ "$USER" == "root" ]; then
476-
exec sudo -u buildkite-agent ${packAndSign}
476+
exec sudo -u buildkite-agent-default ${packAndSign}
477477
else
478478
exec ${packAndSign}
479479
fi

nix/internal/cardano-wallet--expose-musl64Packages.patch

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
diff --git a/flake.nix b/flake.nix
2+
index 76b05e4d73..03fd75e9e7 100644
3+
--- a/flake.nix
4+
+++ b/flake.nix
5+
@@ -370,6 +370,7 @@
6+
tests = lib.collect lib.isDerivation windowsPackages.tests;
7+
benchmarks = lib.collect lib.isDerivation windowsPackages.benchmarks;
8+
};
9+
+ inherit windowsPackages;
10+
};
11+
}
12+
# macos is never cross-compiled
13+
@@ -434,6 +435,7 @@
14+
inherit pkgs;
15+
project = walletProject;
16+
};
17+
+ musl64Packages = mkPackages walletProject.projectCross.musl64;
18+
}) // {
19+
# Continuous integration builds
20+
ci.tests.all = pkgs.releaseTools.aggregate {

nix/internal/cardano-wallet--expose-windowsPackages.patch

Lines changed: 0 additions & 12 deletions
This file was deleted.

nix/internal/common.nix

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ rec {
3333
cp -r ${unpatched} $out
3434
chmod -R +w $out
3535
cd $out
36-
patch -p1 -i ${./cardano-wallet--expose-windowsPackages.patch}
37-
patch -p1 -i ${./cardano-wallet--expose-musl64Packages.patch}
36+
patch -p1 -i ${./cardano-wallet--expose-packages.patch}
3837
'');
3938
inherit (unpatched) rev shortRev lastModified lastModifiedDate;
4039
};
@@ -55,7 +54,7 @@ rec {
5554
}).defaultNix;
5655

5756
walletPackages = {
58-
x86_64-windows = walletFlake.packages.x86_64-linux.windowsPackages;
57+
x86_64-windows = walletFlake.packages.x86_64-linux.ci.artifacts.win64.windowsPackages;
5958
x86_64-linux = walletFlake.packages.x86_64-linux.musl64Packages;
6059
x86_64-darwin = walletFlake.packages.x86_64-darwin;
6160
aarch64-darwin = walletFlake.packages.aarch64-darwin;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "daedalus",
33
"productName": "Daedalus",
4-
"version": "7.1.0",
4+
"version": "7.2.0",
55
"description": "Cryptocurrency Wallet",
66
"main": "./dist/main/index.js",
77
"scripts": {

0 commit comments

Comments
 (0)