Skip to content

Commit a4382ec

Browse files
fix(deps): update dependency electron to v30 (#1676)
* fix(deps): update dependency electron to v30 * Test installing chromedriver * Test * Revert "Test" This reverts commit 473f872. * Test * Update * Typo? :fingers-crossed: --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
1 parent d9cdc25 commit a4382ec

File tree

4 files changed

+147
-28
lines changed

4 files changed

+147
-28
lines changed

extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
"@types/react": "^18.3.3",
6161
"@types/react-dom": "^18.3.0",
6262
"@types/styled-components": "^5.1.34",
63-
"chromedriver": "^118.0.1",
63+
"chromedriver": "^124.0.4",
6464
"cross-env": "^7.0.3",
65-
"electron": "^27.3.11",
65+
"electron": "^30.1.0",
6666
"esbuild": "^0.21.4",
6767
"eslint": "^8.57.0",
6868
"eslint-config-airbnb": "^19.0.4",

extension/test/electron/devpanel.spec.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,14 @@ describe('DevTools panel for Electron', function () {
5252
if (attempts === 0) {
5353
return callback('Redux panel not found');
5454
}
55-
if (UI.inspectorView) {
56-
const tabs = UI.inspectorView.tabbedPane.tabs;
55+
if (EUI.InspectorView) {
56+
const instance = EUI.InspectorView.InspectorView.instance();
57+
const tabs = instance.tabbedPane.tabs;
5758
const idList = tabs.map((tab) => tab.id);
5859
const reduxPanelId =
5960
'chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljdRedux';
6061
if (idList.indexOf(reduxPanelId) !== -1) {
61-
UI.inspectorView.showPanel(reduxPanelId);
62+
instance.showPanel(reduxPanelId);
6263
return callback(reduxPanelId);
6364
}
6465
}

packages/redux-devtools-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"chalk": "^5.3.0",
5050
"cors": "^2.8.5",
5151
"cross-spawn": "^7.0.3",
52-
"electron": "^27.3.11",
52+
"electron": "^30.1.0",
5353
"express": "^4.19.2",
5454
"get-port": "^7.1.0",
5555
"graphql": "^16.8.1",

pnpm-lock.yaml

Lines changed: 140 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)