From ac3ec4000d999aa204d16367feea22004a619686 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Fri, 11 Oct 2024 17:15:38 +0100 Subject: [PATCH 1/3] fix: run electron without sandbox --- src/test/electron.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/electron.js b/src/test/electron.js index 341805730..78854d8ce 100644 --- a/src/test/electron.js +++ b/src/test/electron.js @@ -39,6 +39,7 @@ export default async (argv, execaOptions) => { await execa(findBinary('electron-mocha'), [ + '--no-sandbox', ...files, ...watch, ...grep, From 1087ac544802708238e33b6bcaaaa19e06bd6067 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Fri, 11 Oct 2024 17:16:53 +0100 Subject: [PATCH 2/3] chore: add why --- src/test/electron.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/electron.js b/src/test/electron.js index 78854d8ce..3d3093c8c 100644 --- a/src/test/electron.js +++ b/src/test/electron.js @@ -39,6 +39,7 @@ export default async (argv, execaOptions) => { await execa(findBinary('electron-mocha'), [ + // workaround for https://github.com/jprichardson/electron-mocha/issues/195 '--no-sandbox', ...files, ...watch, From 257909b682fc48a5e39faa7382200cccb19b0f27 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 11 Oct 2024 16:23:43 +0000 Subject: [PATCH 3/3] chore(release): 44.1.4 [skip ci] ## [44.1.4](https://github.com/ipfs/aegir/compare/v44.1.3...v44.1.4) (2024-10-11) ### Bug Fixes * run electron without sandbox ([ac3ec40](https://github.com/ipfs/aegir/commit/ac3ec4000d999aa204d16367feea22004a619686)) ### Trivial Changes * add why ([1087ac5](https://github.com/ipfs/aegir/commit/1087ac544802708238e33b6bcaaaa19e06bd6067)) --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de2f30c9e..21e47d407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [44.1.4](https://github.com/ipfs/aegir/compare/v44.1.3...v44.1.4) (2024-10-11) + +### Bug Fixes + +* run electron without sandbox ([ac3ec40](https://github.com/ipfs/aegir/commit/ac3ec4000d999aa204d16367feea22004a619686)) + +### Trivial Changes + +* add why ([1087ac5](https://github.com/ipfs/aegir/commit/1087ac544802708238e33b6bcaaaa19e06bd6067)) + ## [44.1.3](https://github.com/ipfs/aegir/compare/v44.1.2...v44.1.3) (2024-10-11) ### Dependencies diff --git a/package.json b/package.json index 312e28f70..5093f3db5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aegir", - "version": "44.1.3", + "version": "44.1.4", "description": "JavaScript project management", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/aegir#readme",