Skip to content

Commit 9f18ff7

Browse files
authored
Merge pull request #3010 from input-output-hk/chore/node-1.35.1
Update `cardano-node` to 1.35.1
2 parents 2798d8a + 39e69e4 commit 9f18ff7

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ let
3737
chmod -R +w $out
3838
cd $out
3939
patch -p1 -i ${./nix/cardano-wallet--enable-aarch64-darwin.patch}
40+
patch -p1 -i ${./nix/cardano-wallet--node-1.35.1.patch}
4041
'';
4142
};
4243
haskellNix = import sources."haskell.nix" {};
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
diff --git a/cabal.project b/cabal.project
2+
index 40f1ec889..9eb3a27fd 100644
3+
--- a/cabal.project
4+
+++ b/cabal.project
5+
@@ -213,8 +213,8 @@ source-repository-package
6+
source-repository-package
7+
type: git
8+
location: https://github.com/input-output-hk/cardano-node
9+
- tag: 9f1d7dc163ee66410d912e48509d6a2300cfa68a
10+
- --sha256: 06arx9hv7dn3qxfy83f0b6018rxbsvh841nvfyg5w6qclm1hddj7
11+
+ tag: c75451f0ffd7a60b5ad6c4263891e6c8acac105a
12+
+ --sha256: 1z0zv1i58ikmbqg878f9z573jkwp4lzhmmswshm6c96rq6lprzh8
13+
subdir:
14+
cardano-api
15+
cardano-git-rev

nix/sources.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"cardano-node": {
3-
"branch": "tags/1.35.0",
3+
"branch": "tags/1.35.1",
44
"description": null,
55
"homepage": null,
66
"owner": "input-output-hk",
77
"repo": "cardano-node",
8-
"rev": "9f1d7dc163ee66410d912e48509d6a2300cfa68a",
9-
"sha256": "06arx9hv7dn3qxfy83f0b6018rxbsvh841nvfyg5w6qclm1hddj7",
8+
"rev": "c75451f0ffd7a60b5ad6c4263891e6c8acac105a",
9+
"sha256": "1z0zv1i58ikmbqg878f9z573jkwp4lzhmmswshm6c96rq6lprzh8",
1010
"type": "tarball",
11-
"url": "https://github.com/input-output-hk/cardano-node/archive/9f1d7dc163ee66410d912e48509d6a2300cfa68a.tar.gz",
11+
"url": "https://github.com/input-output-hk/cardano-node/archive/c75451f0ffd7a60b5ad6c4263891e6c8acac105a.tar.gz",
1212
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
1313
},
1414
"cardano-shell": {

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.35.0'; // TODO: pick up this value from process.env
49+
const NODE_VERSION = '1.35.1'; // 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)