Skip to content

Commit a51114f

Browse files
committed
Merge branch 'develop' into chore/line-up-nodejs-to-electrons-14.16.0
2 parents d7a7fee + 3b34f67 commit a51114f

File tree

12 files changed

+774
-251
lines changed

12 files changed

+774
-251
lines changed

CHANGELOG.md

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

3+
## vNext
4+
5+
### Fixes
6+
7+
- Fixed downloaded installer being left in Downloads after latest update installs ([PR 2941](https://github.com/input-output-hk/daedalus/pull/2941))
8+
- Fixed incorrect amount of token sent ([PR 2962](https://github.com/input-output-hk/daedalus/pull/2962))
9+
10+
### Chores
11+
12+
- Added Vasil-supported cardano-wallet ([PR 3001](https://github.com/input-output-hk/daedalus/pull/3001))
13+
- Upgraded webpack to version 5 ([PR 2772](https://github.com/input-output-hk/daedalus/pull/2772))
14+
315
## 4.11.0
416

517
### Fixes
@@ -15,7 +27,6 @@
1527

1628
### Chores
1729

18-
- Upgraded webpack to version 5 ([PR 2772](https://github.com/input-output-hk/daedalus/pull/2772))
1930
- Bumped vulnerable dependencies versions ([PR 2943](https://github.com/input-output-hk/daedalus/pull/2943))
2031
- Added support for Trezor firmware 2.5.1 ([PR 2991](https://github.com/input-output-hk/daedalus/pull/2991))
2132
- Added steps on how to link with `react-polymorph` and other external UI libraries ([PR 2948](https://github.com/input-output-hk/daedalus/pull/2948))

default.nix

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,14 @@ let
3131
};
3232
};
3333
pkgs = import sources.nixpkgs { inherit system config; };
34-
sources = localLib.sources;
34+
sources = localLib.sources // {
35+
cardano-wallet = pkgs.runCommand "cardano-wallet" {} ''
36+
cp -r ${localLib.sources.cardano-wallet} $out
37+
chmod -R +w $out
38+
cd $out
39+
patch -p1 -i ${./nix/cardano-wallet--enable-aarch64-darwin.patch}
40+
'';
41+
};
3542
haskellNix = import sources."haskell.nix" {};
3643
inherit (import haskellNix.sources.nixpkgs-unstable haskellNix.nixpkgsArgs) haskell-nix;
3744
flake-compat = import sources.flake-compat;
@@ -61,7 +68,7 @@ let
6168
ostable.aarch64-darwin = "macos64-arm";
6269

6370
packages = self: {
64-
inherit cluster pkgs version target nodeImplementation;
71+
inherit walletFlake cluster pkgs version target nodeImplementation;
6572
cardanoLib = localLib.iohkNix.cardanoLib;
6673
daedalus-bridge = self.bridgeTable.${nodeImplementation};
6774

installers/common/WindowsInstaller.hs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,15 +204,13 @@ writeInstallerNSIS outName (Version fullVersion') InstallerConfig{installDirecto
204204
file [] "genesis-shelley.json"
205205
file [] "genesis-alonzo.json"
206206
file [] "libsodium-23.dll"
207+
file [] "libsecp256k1-0.dll"
207208
when (clusterName == Selfnode) $ do
208209
file [] "signing.key"
209210
file [] "delegation.cert"
210211
file [] "local-cluster.exe"
211-
file [] "libgcc_s_seh-1.dll"
212212
file [] "libgmpxx-4.dll"
213-
file [] "libstdc++-6.dll"
214213
file [] "libwinpthread-1.dll"
215-
file [] "mcfgthread-12.dll"
216214
file [] "mock-token-metadata-server.exe"
217215
file [Recursive] "test\\"
218216
file [] "token-metadata.json"
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
diff --git a/flake.nix b/flake.nix
2+
index e17573394..9afa5b2bd 100644
3+
--- a/flake.nix
4+
+++ b/flake.nix
5+
@@ -388,7 +388,14 @@
6+
lib.recursiveUpdate (removeAttrs systems [ "systemHydraJobs" "systemHydraJobsPr" "systemHydraJobsBors" ])
7+
{
8+
inherit overlay nixosModule nixosModules;
9+
- hydraJobs = mkHydraJobs systems.systemHydraJobs;
10+
+ # Temporarily fix some merge bug – @michalrus
11+
+ hydraJobs =
12+
+ let hj = mkHydraJobs systems.systemHydraJobs; in
13+
+ hj // {
14+
+ macos = hj.macos // {
15+
+ silicon = systems.systemHydraJobs.aarch64-darwin.macos.silicon;
16+
+ };
17+
+ };
18+
hydraJobsPr = mkHydraJobs systems.systemHydraJobsPr;
19+
hydraJobsBors = mkHydraJobs systems.systemHydraJobsBors;
20+
}
21+
diff --git a/nix/supported-systems.nix b/nix/supported-systems.nix
22+
index 6e3f0d94e..5de7138b3 100644
23+
--- a/nix/supported-systems.nix
24+
+++ b/nix/supported-systems.nix
25+
@@ -1,6 +1,5 @@
26+
[
27+
"x86_64-linux"
28+
"x86_64-darwin"
29+
- # TODO: Enable aarch64-darwin when there are Hydra builders for it
30+
- # "aarch64-darwin"
31+
+ "aarch64-darwin"
32+
]

nix/sources.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"cardano-node": {
3-
"branch": "tags/1.34.1",
3+
"branch": "tags/1.35.0",
44
"description": null,
55
"homepage": null,
66
"owner": "input-output-hk",
77
"repo": "cardano-node",
8-
"rev": "73f9a746362695dc2cb63ba757fbcabb81733d23",
9-
"sha256": "1hh53whcj5y9kw4qpkiza7rmkniz18r493vv4dzl1a8r5fy3b2bv",
8+
"rev": "9f1d7dc163ee66410d912e48509d6a2300cfa68a",
9+
"sha256": "06arx9hv7dn3qxfy83f0b6018rxbsvh841nvfyg5w6qclm1hddj7",
1010
"type": "tarball",
11-
"url": "https://github.com/input-output-hk/cardano-node/archive/73f9a746362695dc2cb63ba757fbcabb81733d23.tar.gz",
11+
"url": "https://github.com/input-output-hk/cardano-node/archive/9f1d7dc163ee66410d912e48509d6a2300cfa68a.tar.gz",
1212
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
1313
},
1414
"cardano-shell": {
@@ -24,15 +24,15 @@
2424
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
2525
},
2626
"cardano-wallet": {
27-
"branch": "hkm/enable-aarch64-darwin",
27+
"branch": "v2022-07-01",
2828
"description": "Official Wallet Backend & API for Cardano decentralized",
2929
"homepage": null,
3030
"owner": "input-output-hk",
3131
"repo": "cardano-wallet",
32-
"rev": "a0f5096828105085e57c11bb208ae058e1060795",
33-
"sha256": "0143drwghi2k29imfh554j6k59l5dqy2w70sv5m0q5w640dbk7d9",
32+
"rev": "211c357a91d48b30fdf77a3a169499b38822f9cd",
33+
"sha256": "0ii631ak757kjzs7jm625zfv2g28ffjrfkmgslxbbgvwpqxkdbaj",
3434
"type": "tarball",
35-
"url": "https://github.com/input-output-hk/cardano-wallet/archive/a0f5096828105085e57c11bb208ae058e1060795.tar.gz",
35+
"url": "https://github.com/input-output-hk/cardano-wallet/archive/211c357a91d48b30fdf77a3a169499b38822f9cd.tar.gz",
3636
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
3737
},
3838
"flake-compat": {

source/main/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const isSelfnode = checkIsSelfnode(NETWORK);
4646
const isDevelopment = checkIsDevelopment(NETWORK);
4747
const keepLocalClusterRunning = process.env.KEEP_LOCAL_CLUSTER_RUNNING;
4848
const API_VERSION = process.env.API_VERSION || 'dev';
49-
const NODE_VERSION = '1.34.1'; // TODO: pick up this value from process.env
49+
const NODE_VERSION = '1.35.0'; // TODO: pick up this value from process.env
5050

5151
const mainProcessID = get(process, 'ppid', '-');
5252
const rendererProcessID = process.pid;

0 commit comments

Comments
 (0)