Skip to content

Commit 976d6a0

Browse files
author
Marcin Mazurek
committed
Merge branch 'feat/ddw-809-implement-analytics-part-3' into feat/ddw-809-implement-analytics-remaining-tracking
2 parents 61923c8 + 1cc122e commit 976d6a0

File tree

7 files changed

+12
-82
lines changed

7 files changed

+12
-82
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
### Chores
1111

12+
- Updated cardano-node to 1.35.2 ([PR 3021](https://github.com/input-output-hk/daedalus/pull/3021))
1213
- Fix `darwin-launcher.go` to replace its process image with `cardano-launcher` (binary), and not swallow `stdout` ([PR 3023](https://github.com/input-output-hk/daedalus/pull/3023))
1314
- Updated cardano-node to 1.35.1 ([PR 3012](https://github.com/input-output-hk/daedalus/pull/3012))
1415

default.nix

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,6 @@ let
3737
chmod -R +w $out
3838
cd $out
3939
patch -p1 -i ${./nix/cardano-wallet--enable-aarch64-darwin.patch}
40-
patch -p1 -i ${builtins.path {
41-
# XXX: unfortunately, GitHub changed lengths of hashes in patches it returns for PRs,
42-
# that’s why we’re providing this patch inside our repo, with the same exact SHA-256,
43-
# to the one released in 4.12.0:
44-
path = ./nix/cardano-wallet--pr-3382--ledger-bug.patch;
45-
recursive = false;
46-
sha256 = "1ii12g2zikv4197c7bsh4v5dc1jzygn1jap8xvnr7mvh3a09pdgn";
47-
}}
4840
'';
4941
};
5042
haskellNix = import sources."haskell.nix" {};

nix/cardano-wallet--pr-3382--ledger-bug.patch

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

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.35.1",
3+
"branch": "tags/1.35.2",
44
"description": null,
55
"homepage": null,
66
"owner": "input-output-hk",
77
"repo": "cardano-node",
8-
"rev": "c75451f0ffd7a60b5ad6c4263891e6c8acac105a",
9-
"sha256": "1z0zv1i58ikmbqg878f9z573jkwp4lzhmmswshm6c96rq6lprzh8",
8+
"rev": "7612a245a6e2c51d0f1c3e0d65d7fe9363850043",
9+
"sha256": "01a5qdrmsag18s2mlf8axfbrag59j2fp6xyc89pwmzgs7x77ldsr",
1010
"type": "tarball",
11-
"url": "https://github.com/input-output-hk/cardano-node/archive/c75451f0ffd7a60b5ad6c4263891e6c8acac105a.tar.gz",
11+
"url": "https://github.com/input-output-hk/cardano-node/archive/7612a245a6e2c51d0f1c3e0d65d7fe9363850043.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": "v2022-07-01",
27+
"branch": "master",
2828
"description": "Official Wallet Backend & API for Cardano decentralized",
2929
"homepage": null,
3030
"owner": "input-output-hk",
3131
"repo": "cardano-wallet",
32-
"rev": "211c357a91d48b30fdf77a3a169499b38822f9cd",
33-
"sha256": "0ii631ak757kjzs7jm625zfv2g28ffjrfkmgslxbbgvwpqxkdbaj",
32+
"rev": "7ed8f067dd6d5dc78e7353bf65ea5e3423cdfca8",
33+
"sha256": "1f9lwqi4qghaqi3754732h0cz98f7qbjhcx416jliqy6nibly6lp",
3434
"type": "tarball",
35-
"url": "https://github.com/input-output-hk/cardano-wallet/archive/211c357a91d48b30fdf77a3a169499b38822f9cd.tar.gz",
35+
"url": "https://github.com/input-output-hk/cardano-wallet/archive/7ed8f067dd6d5dc78e7353bf65ea5e3423cdfca8.tar.gz",
3636
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
3737
},
3838
"flake-compat": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@
242242
"json-bigint": "1.0.0",
243243
"lodash": "4.17.21",
244244
"lodash-es": "4.17.15",
245-
"matomo-tracker": "^2.2.4",
245+
"matomo-tracker": "2.2.4",
246246
"mime-types": "2.1.27",
247247
"mkdirp": "1.0.4",
248248
"mobx": "5.15.7",

source/main/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const isDevelopment = checkIsDevelopment(NETWORK);
4747
const analyticsFeatureEnabled = true;
4848
const keepLocalClusterRunning = process.env.KEEP_LOCAL_CLUSTER_RUNNING;
4949
const API_VERSION = process.env.API_VERSION || 'dev';
50-
const NODE_VERSION = '1.35.1'; // TODO: pick up this value from process.env
50+
const NODE_VERSION = '1.35.2'; // TODO: pick up this value from process.env
5151

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

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11556,7 +11556,7 @@ mathml-tag-names@^2.1.3:
1155611556
version "2.1.3"
1155711557
resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3"
1155811558

11559-
matomo-tracker@^2.2.4:
11559+
1156011560
version "2.2.4"
1156111561
resolved "https://registry.yarnpkg.com/matomo-tracker/-/matomo-tracker-2.2.4.tgz#ee397d915d7b2e7964996ca28a0a03f4f0692453"
1156211562

0 commit comments

Comments
 (0)