From c194cef2cc720f88d072e77b039a85f6128e24e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bugsounet=20-=20C=C3=A9dric?= Date: Thu, 26 Sep 2024 17:16:48 +0200 Subject: [PATCH 1/3] Update electron-rebuild.yaml remove onoff library (deprecated) add node-libgpiod library --- .github/workflows/electron-rebuild.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/electron-rebuild.yaml b/.github/workflows/electron-rebuild.yaml index 2d22fcedb0..fa09f43d82 100644 --- a/.github/workflows/electron-rebuild.yaml +++ b/.github/workflows/electron-rebuild.yaml @@ -21,8 +21,10 @@ jobs: run: npm run install-mm - name: Install @electron/rebuild run: npm install @electron/rebuild + - name: Install node-libgpiod deps + run: sudo apt-get install gpiod libgpiod2 libgpiod-dev - name: Install some test library to be rebuilded - run: npm install onoff node-pty drivelist + run: npm install node-libgpiod node-pty drivelist - name: Run electron-rebuild run: npx electron-rebuild continue-on-error: false From ead32c7bccd797b39e37c70a4a8f8fd08413fe9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bugsounet=20-=20C=C3=A9dric?= Date: Thu, 26 Sep 2024 17:22:46 +0200 Subject: [PATCH 2/3] Update CHANGELOG.md * remove onoff library (deprecated) * add node-libgpiod library --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d53acf2d3..75fc01736b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,12 +18,14 @@ _This release is scheduled to be released on 2024-10-01._ - [core] elements are now removed from `index.html` when loading script or stylesheet files fails - [core] Added `MODULE_DOM_UPDATED` notification each time the DOM is re-rendered via `updateDom` (#3534) - [tests] added minimal needed node version to tests (currently v20.9.0) to avoid releases with wrong node version info +- [tests] Added `node-libgpiod` library to electron-rebuild tests (#) ### Removed - [core] removed installer only files (#3492) - [core] removed raspberry object from systeminformation (#3505) - [linter] removed `eslint-plugin-import`, because it doesn't support ESLint v9. We will reenter it later when it does. +- [tests] removed `onoff` library from electron-rebuild tests (#) ### Updated From a7a47ab11c917b679d715d3e5b3ac69fefc3d613 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bugsounet=20-=20C=C3=A9dric?= Date: Thu, 26 Sep 2024 17:28:23 +0200 Subject: [PATCH 3/3] Update CHANGELOG.md add PR number --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75fc01736b..1ae91acb83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,14 +18,14 @@ _This release is scheduled to be released on 2024-10-01._ - [core] elements are now removed from `index.html` when loading script or stylesheet files fails - [core] Added `MODULE_DOM_UPDATED` notification each time the DOM is re-rendered via `updateDom` (#3534) - [tests] added minimal needed node version to tests (currently v20.9.0) to avoid releases with wrong node version info -- [tests] Added `node-libgpiod` library to electron-rebuild tests (#) +- [tests] Added `node-libgpiod` library to electron-rebuild tests (#3563) ### Removed - [core] removed installer only files (#3492) - [core] removed raspberry object from systeminformation (#3505) - [linter] removed `eslint-plugin-import`, because it doesn't support ESLint v9. We will reenter it later when it does. -- [tests] removed `onoff` library from electron-rebuild tests (#) +- [tests] removed `onoff` library from electron-rebuild tests (#3563) ### Updated