chore(deps): update dependency electron to v20 #109

Merged
konrad merged 1 commits from renovate/electron-20.x into main 2022-08-02 08:04:52 +00:00
Member

This PR contains the following updates:

Package Type Update Change
electron devDependencies major 19.0.10 -> 20.0.0

Release Notes

electron/electron

v20.0.0

Compare Source

Release Notes for v20.0.0

Stack Upgrades

Breaking Changes

  • Removed the skip-taskbar feature on Linux. #​35156
  • Renderers are now sandboxed by default unless nodeIntegration: true or sandbox: false is specified. #​35125
  • Added safeguards when building native modules with nan. Use node-gyp >=8.4.0 and electron-rebuild >=3.2.9 for when rebuilding native modules. #​35160

Features

Additions
  • Added a warning for building native modules with node-gyp and electron-rebuild, asking users to upgrade to >=8.4.0 for node-gyp and >=3.2.8 for electron-rebuild if using Electron 20 or higher. #​35160
  • Added app.isHidden() to check if the app is hidden (e.g. with Command-H) on macOS. #​32155
  • Added browserData to app.setPath/getPath. #​33554
  • Added immersive dark mode on Windows. #​34549
  • Added support for HIDDevice.forget(). #​34210
  • Added support for panel-like behavior. Window can float over full-screened apps. #​34665
  • Enabled systemPreferences.subscribe{Local|Workspace}Notification to take a null value for the event parameter. #​33641 (Also in 18, 19)
  • Fixed an issue where the PDF Viewer would fail if a user attempted to reload. #​33560 (Also in 18, 19)

Fixes

  • Fixed 20.0.0-beta.8 X11 crash regression. #​35092
  • Fixed _dyld_missing_symbol_abort crash on macOS when using c++ native modules. #​34944
  • Fixed serial-port-added and serial-port-removed events not firing. #​35047
  • Fixed a potential printing hang. #​34968
  • Fixed an issue where invalid print job settings would correctly call back Invalid print settings as the failure reason, but would then not terminate the print job, leading to an eventual crash on exit. #​35141
  • Fixed an issue with fullscreen transitions when HTML fullscreen is requested. #​34468
  • Fixed child about:blank windows from inheriting their parents' preload scripts when sandbox: false and nodeIntegrationInSubFrames: true. #​34585
  • Fixed initialization race when registering partition allocator on macOS. #​33832
  • Fixed native module compilation issues on arm. #​35137
  • Fixed spontaneous crashing in native modules that depended on nan. #​34851
  • Updated Windows Control Overlay buttons to look and feel more native on Windows 11. #​34888
Also in earlier versions....
  • Added support for --ozone-platform-hint flag on Linux. #​35014 (Also in 19)
  • Apply senderFrame details to ipcMain port event. #​33756 (Also in 16, 17, 18, 19)
  • Ensures that requestMediaKeySystemAccess eventually resolves / rejects. #​34891 (Also in 19)
  • Fixed webContents.getUserAgent() incorrectly returning an empty string unless previously set. #​35131 (Also in 18, 19)
  • Fixed a Windows Control Overlay issue where a window taken directly from minimized to maximized state could have incorrect hover state. #​35074 (Also in 19)
  • Fixed a crash in safeStorage on Linux. #​33913 (Also in 15, 16, 17, 18, 19)
  • Fixed a crash on Windows when opening apps in multiple, separate user sessions. #​34139 (Also in 18, 19)
  • Fixed a crash when calling BrowserWindow.setEnabled(). #​34972 (Also in 18, 19)
  • Fixed a crash when calling loadExtension on an extension directory that's missing a manifest file. #​34168 (Also in 16, 17, 19)
  • Fixed a crash when loading a same-origin URL after a render process crash. #​34432 (Also in 18, 19)
  • Fixed a performance problem in crashReporter.start() on macOS. #​34639 (Also in 17, 18, 19)
  • Fixed a potential crash when calling webContents.print(). #​34271 (Also in 19)
  • Fixed a potential crash when changing window settings after initializing WCO with an invalid titleBarStyle. #​34875 (Also in 17, 18, 19)
  • Fixed alwaysOnTop BrowserWindow option for X11 Linux. #​34913 (Also in 18, 19)
  • Fixed an OSR crash happening when input select items were rendered. #​34069 (Also in 17, 18, 19)
  • Fixed an error where setWindowOpenHandler() would crash if the callback threw an error. #​34547 (Also in 17, 18, 19)
  • Fixed an issue in which calling setBounds() after e.preventDefault in a 'will-move' or 'will-resize' event wouldn't change the window's shape until the mouse button was released. #​35084 (Also in 19)
  • Fixed an issue where BrowserWindows on macOS were incorrectly marked as resizable. #​34433 (Also in 18, 19)
  • Fixed an issue where DataList bounds had part of the item text cut off vertically. #​34786 (Also in 19)
  • Fixed an issue where Windows Control Overlay buttons did not respect maximizable/minimizable/closable states of a BrowserWindow. #​34721 (Also in 17, 18, 19)
  • Fixed an issue where #ARGB ->#RGBA and #AARRGGBB ->#RRGGBBAA were converted improperly when setting background color. #​33707 (Also in 19)
  • Fixed an issue where BrowserWindow#isFocused() was returning false when blur() was called on macOS. #​33734 (Also in 17, 18, 19)
  • Fixed an issue where Escape keyboard events would not be properly propagated to the parent window after entering fullscreen and then exiting it again on Windows. #​33757 (Also in 18, 19)
  • Fixed an issue where bounds changes were incorrectly delayed in the case where a window was moved or resized and event.preventDefault was called in either will-resize or will-move on Windows. #​34204 (Also in 16, 17, 19)
  • Fixed an issue where calling BrowserWindow.setRepresentedFilename on macOS with titlebarStyle: 'hiddenInset' or titlebarStyle: 'hidden' inadvertently moves the traffic light location. #​34849 (Also in 18, 19)
  • Fixed an issue where calling SetLoginItemSettings() could potentially cause network volumes to be incorrectly mounted. #​34068 (Also in 17, 18, 19)
  • Fixed an issue where calling setTitlebarOverlay with an initially invalid titleBarStyle on Windows would result in a crash. #​34140 (Also in 19)
  • Fixed an issue where calling w.setWindowButtonVisibility(true) immediately after exiting fullscreen fails to show window buttons. #​34675 (Also in 18, 19)
  • Fixed an issue where draggable regions were not recalculated when BrowserView bounds changed on Windows. #​34612 (Also in 18, 19)
  • Fixed an issue where media keys would be sent to Electron on Windows no matter which window was in focus. #​34647 (Also in 19)
  • Fixed an issue where mixed-case extension filters in file dialogs were ignored on Linux. #​33918 (Also in 18, 19)
  • Fixed an issue where normal bounds would not be appropriately updated if the user minimized with the minimize button. #​34486 (Also in 18, 19)
  • Fixed an issue where passing { name: 'All Files', extensions: ['*'] } in the filters param of open or save dialogs on Linux would disallow choosing files without an extension. #​34516 (Also in 18, 19)
  • Fixed an issue where pressing escape would not un-fullscreen on Windows or Linux in some circumstances. #​34317 (Also in 18, 19)
  • Fixed an issue where printing with an invalid deviceName on Linux caused silent failures. #​34901 (Also in 19)
  • Fixed an issue where running second instances of the same application would cause a deadlock on Windows. #​34297 (Also in 18, 19)
  • Fixed an issue where some BrowserWindows opened from new links wouldn't properly load URLs. #​34159 (Also in 19)
  • Fixed an issue where the minimize button with WCO enabled would incorrectly be highlighted in some cases. #​34840 (Also in 17, 18, 19)
  • Fixed an issue where the window bounds would incorrectly change if BrowserWindow.unmaximize was called on a window whose user bounds were maximized. #​33480 (Also in 16, 17, 18, 19)
  • Fixed an issue where tray items wouldn't highlight in some scenarios on macOS. #​34173 (Also in 16, 17, 18, 19)
  • Fixed an issue where zombie windows can be created if window.close() is called during a fullscreen transition. #​34393 (Also in 17, 18, 19)
  • Fixed an issue with the app.requestSingleInstanceLock() API where it would sometimes hang. #​33777 (Also in 18, 19)
  • Fixed behavior of BrowserWindow.maximize on macOS for not shown windows. #​32949 (Also in 15, 16, 17, 18, 19)
  • Fixed building node modules with Visual Studio 2017. #​34109 (Also in 18, 19)
  • Fixed building node modules with Visual Studio 2017. #​34217 (Also in 19)
  • Fixed crash on startup due to missing gtk symbol on older distros. #​34141 (Also in 18, 19)
  • Fixed crash when calling navigator.serial.getPorts(). #​34280 (Also in 17, 18, 19)
  • Fixed crash when img without alt is shown with accessibility features enabled. #​33840 (Also in 19)
  • Fixed crash when opening gtk file dialogs due to mismatched versions. #​33650 (Also in 18, 19)
  • Fixed empty app_id when running under wayland. #​34879 (Also in 18, 19)
  • Fixed incorrect return value of app.requestSingleInstanceLock() when setting non-existent user data folder. #​33559 (Also in 16, 17, 18, 19)
  • Fixed issues with frameless window animations and styling. #​33599 (Also in 15, 16, 17, 18, 19)
  • Fixed linux arm64 builds to not require glibc 2.29+. #​34503 (Also in 19)
  • Fixed missing Sec-CH-UA headers and empty navigator.userAgentData. #​34524 (Also in 17, 18, 19)
  • Fixed potential crash in WebFrameMain when performing a cross-origin navigation. #​34417 (Also in 18, 19)
  • Fixed potential crash while generating accessibility trees for certain images. #​33614 (Also in 18, 19)
  • Fixed potential crash with WebFrameMain when navigating between cross-origin websites. #​33919 (Also in 18, 19)
  • Fixed service worker registration with custom protocols. #​34290 (Also in 18, 19)
  • Fixed symbol generation on 32-bit Windows release builds. #​35091 (Also in 18, 19)
  • Fixed the initialization of First Party Sets. #​33971 (Also in 19)
  • Fixed the initialization of first party sets in the browser process. #​33998 (Also in 19)
  • Mac] Fixed Partition Alloc related crash in pre-BigSur (macos <= 10.15). [#&#8203;33704](https://github.com/electron/electron/pull/33704) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/33965), [19](https://github.com/electron/electron/pull/33966))</span>
    
  • shell.openExternal() now reports more detailed errors on Windows. #​33620 (Also in 15, 16, 17, 18, 19)

Other Changes

  • Added a TRACE call named crash_reporter::Start under the electron category for crash_reporter::Start(). #​34268 (Also in 17, 18, 19)
  • Added deprecation warning for the new-window event. #​34593
  • Added minimum GITHUB_TOKEN permissions. #​34298
  • Fixed an issue where BrowserViews didn't always visually update after call to setBounds. #​34643 (Also in 18, 19)
  • Fixed child_process.spawn ENOENT error with cwd option. #​33815 (Also in 16, 17, 18, 19)
  • Minimum required node version to install the electron npm package is now >10. #​34166
  • On Linux, changed the libgdk-pixbuf dependency to be dynamically linked rather than statically linked. #​34635 (Also in 18, 19)
  • Re-enabled symbol generation on 32-bit Windows. #​34162 (Also in 19)
  • Temporarily disabled symbol generation on 32-bit Windows due to issues with symbol generation on that platform. #​33653 (Also in 19)
  • WebContents for <webview> are now only created after the 'will-attach-webview' event is emitted and preventDefault is not called. #​35016

Documentation


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [electron](https://github.com/electron/electron) | devDependencies | major | [`19.0.10` -> `20.0.0`](https://renovatebot.com/diffs/npm/electron/19.0.10/20.0.0) | --- ### Release Notes <details> <summary>electron/electron</summary> ### [`v20.0.0`](https://github.com/electron/electron/releases/tag/v20.0.0) [Compare Source](https://github.com/electron/electron/compare/v19.0.10...v20.0.0) ### Release Notes for v20.0.0 #### Stack Upgrades - Chromium 104.0.5112.65. - New in 104 - [New in 103](https://developer.chrome.com/blog/new-in-chrome-103/) - Node v16.15.0 - [v16.15.0 release notes](https://nodejs.org/en/blog/release/v16.15.0/) - V8 v10.4 #### Breaking Changes - Removed the skip-taskbar feature on Linux. [#&#8203;35156](https://github.com/electron/electron/pull/35156) - Renderers are now sandboxed by default unless `nodeIntegration: true` or `sandbox: false` is specified. [#&#8203;35125](https://github.com/electron/electron/pull/35125) - Added safeguards when building native modules with nan. Use node-gyp >=8.4.0 and electron-rebuild >=3.2.9 for when rebuilding native modules. [#&#8203;35160](https://github.com/electron/electron/pull/35160) #### Features ##### Additions - Added a warning for building native modules with node-gyp and electron-rebuild, asking users to upgrade to >=8.4.0 for node-gyp and >=3.2.8 for electron-rebuild if using Electron 20 or higher. [#&#8203;35160](https://github.com/electron/electron/pull/35160) - Added `app.isHidden()` to check if the app is hidden (e.g. with Command-H) on macOS. [#&#8203;32155](https://github.com/electron/electron/pull/32155) - Added `browserData` to `app.setPath/getPath`. [#&#8203;33554](https://github.com/electron/electron/pull/33554) - Added immersive dark mode on Windows. [#&#8203;34549](https://github.com/electron/electron/pull/34549) - Added support for HIDDevice.forget(). [#&#8203;34210](https://github.com/electron/electron/pull/34210) - Added support for panel-like behavior. Window can float over full-screened apps. [#&#8203;34665](https://github.com/electron/electron/pull/34665) - Enabled `systemPreferences.subscribe{Local|Workspace}Notification` to take a `null` value for the `event` parameter. [#&#8203;33641](https://github.com/electron/electron/pull/33641) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/33771), [19](https://github.com/electron/electron/pull/33770))</span> - Fixed an issue where the PDF Viewer would fail if a user attempted to reload. [#&#8203;33560](https://github.com/electron/electron/pull/33560) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/33711), [19](https://github.com/electron/electron/pull/33712))</span> #### Fixes - Fixed 20.0.0-beta.8 X11 crash regression. [#&#8203;35092](https://github.com/electron/electron/pull/35092) - Fixed `_dyld_missing_symbol_abort` crash on macOS when using c++ native modules. [#&#8203;34944](https://github.com/electron/electron/pull/34944) - Fixed `serial-port-added` and `serial-port-removed` events not firing. [#&#8203;35047](https://github.com/electron/electron/pull/35047) - Fixed a potential printing hang. [#&#8203;34968](https://github.com/electron/electron/pull/34968) - Fixed an issue where invalid print job settings would correctly call back `Invalid print settings` as the failure reason, but would then not terminate the print job, leading to an eventual crash on exit. [#&#8203;35141](https://github.com/electron/electron/pull/35141) - Fixed an issue with fullscreen transitions when HTML fullscreen is requested. [#&#8203;34468](https://github.com/electron/electron/pull/34468) - Fixed child `about:blank` windows from inheriting their parents' preload scripts when `sandbox: false` and `nodeIntegrationInSubFrames: true`. [#&#8203;34585](https://github.com/electron/electron/pull/34585) - Fixed initialization race when registering partition allocator on macOS. [#&#8203;33832](https://github.com/electron/electron/pull/33832) - Fixed native module compilation issues on arm. [#&#8203;35137](https://github.com/electron/electron/pull/35137) - Fixed spontaneous crashing in native modules that depended on `nan`. [#&#8203;34851](https://github.com/electron/electron/pull/34851) - Updated Windows Control Overlay buttons to look and feel more native on Windows 11. [#&#8203;34888](https://github.com/electron/electron/pull/34888) ##### Also in earlier versions.... - Added support for `--ozone-platform-hint` flag on Linux. [#&#8203;35014](https://github.com/electron/electron/pull/35014) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/35015))</span> - Apply senderFrame details to ipcMain port event. [#&#8203;33756](https://github.com/electron/electron/pull/33756) <span style="font-size:small;">(Also in [16](https://github.com/electron/electron/pull/33780), [17](https://github.com/electron/electron/pull/33781), [18](https://github.com/electron/electron/pull/33782), [19](https://github.com/electron/electron/pull/33783))</span> - Ensures that `requestMediaKeySystemAccess` eventually resolves / rejects. [#&#8203;34891](https://github.com/electron/electron/pull/34891) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34890))</span> - Fixed `webContents.getUserAgent()` incorrectly returning an empty string unless previously set. [#&#8203;35131](https://github.com/electron/electron/pull/35131) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/35130), [19](https://github.com/electron/electron/pull/35132))</span> - Fixed a Windows Control Overlay issue where a window taken directly from minimized to maximized state could have incorrect hover state. [#&#8203;35074](https://github.com/electron/electron/pull/35074) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/35073))</span> - Fixed a crash in `safeStorage` on Linux. [#&#8203;33913](https://github.com/electron/electron/pull/33913) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/34263), [16](https://github.com/electron/electron/pull/34262), [17](https://github.com/electron/electron/pull/34261), [18](https://github.com/electron/electron/pull/34148), [19](https://github.com/electron/electron/pull/34147))</span> - Fixed a crash on Windows when opening apps in multiple, separate user sessions. [#&#8203;34139](https://github.com/electron/electron/pull/34139) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34161), [19](https://github.com/electron/electron/pull/34160))</span> - Fixed a crash when calling `BrowserWindow.setEnabled()`. [#&#8203;34972](https://github.com/electron/electron/pull/34972) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34973), [19](https://github.com/electron/electron/pull/34971))</span> - Fixed a crash when calling `loadExtension` on an extension directory that's missing a manifest file. [#&#8203;34168](https://github.com/electron/electron/pull/34168) <span style="font-size:small;">(Also in [16](https://github.com/electron/electron/pull/34192), [17](https://github.com/electron/electron/pull/34193), [19](https://github.com/electron/electron/pull/34303))</span> - Fixed a crash when loading a same-origin URL after a render process crash. [#&#8203;34432](https://github.com/electron/electron/pull/34432) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34430), [19](https://github.com/electron/electron/pull/34431))</span> - Fixed a performance problem in `crashReporter.start()` on macOS. [#&#8203;34639](https://github.com/electron/electron/pull/34639) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34637), [18](https://github.com/electron/electron/pull/34640), [19](https://github.com/electron/electron/pull/34638))</span> - Fixed a potential crash when calling `webContents.print()`. [#&#8203;34271](https://github.com/electron/electron/pull/34271) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34299))</span> - Fixed a potential crash when changing window settings after initializing WCO with an invalid `titleBarStyle`. [#&#8203;34875](https://github.com/electron/electron/pull/34875) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/35031), [18](https://github.com/electron/electron/pull/34873), [19](https://github.com/electron/electron/pull/34874))</span> - Fixed alwaysOnTop BrowserWindow option for X11 Linux. [#&#8203;34913](https://github.com/electron/electron/pull/34913) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34911), [19](https://github.com/electron/electron/pull/34912))</span> - Fixed an OSR crash happening when input select items were rendered. [#&#8203;34069](https://github.com/electron/electron/pull/34069) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34091), [18](https://github.com/electron/electron/pull/34092), [19](https://github.com/electron/electron/pull/34093))</span> - Fixed an error where `setWindowOpenHandler()` would crash if the callback threw an error. [#&#8203;34547](https://github.com/electron/electron/pull/34547) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34772), [18](https://github.com/electron/electron/pull/34627), [19](https://github.com/electron/electron/pull/34546))</span> - Fixed an issue in which calling setBounds() after e.preventDefault in a 'will-move' or 'will-resize' event wouldn't change the window's shape until the mouse button was released. [#&#8203;35084](https://github.com/electron/electron/pull/35084) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/35083))</span> - Fixed an issue where BrowserWindows on macOS were incorrectly marked as resizable. [#&#8203;34433](https://github.com/electron/electron/pull/34433) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34907), [19](https://github.com/electron/electron/pull/34906))</span> - Fixed an issue where DataList bounds had part of the item text cut off vertically. [#&#8203;34786](https://github.com/electron/electron/pull/34786) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34785))</span> - Fixed an issue where Windows Control Overlay buttons did not respect maximizable/minimizable/closable states of a BrowserWindow. [#&#8203;34721](https://github.com/electron/electron/pull/34721) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34733), [18](https://github.com/electron/electron/pull/34720), [19](https://github.com/electron/electron/pull/34722))</span> - Fixed an issue where `#ARGB` ->`#RGBA` and `#AARRGGBB` ->`#RRGGBBAA` were converted improperly when setting background color. [#&#8203;33707](https://github.com/electron/electron/pull/33707) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/33755))</span> - Fixed an issue where `BrowserWindow#isFocused()` was returning `false` when `blur()` was called on macOS. [#&#8203;33734](https://github.com/electron/electron/pull/33734) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34029), [18](https://github.com/electron/electron/pull/34030), [19](https://github.com/electron/electron/pull/34031))</span> - Fixed an issue where `Escape` keyboard events would not be properly propagated to the parent window after entering fullscreen and then exiting it again on Windows. [#&#8203;33757](https://github.com/electron/electron/pull/33757) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/33787), [19](https://github.com/electron/electron/pull/33788))</span> - Fixed an issue where bounds changes were incorrectly delayed in the case where a window was moved or resized and `event.preventDefault` was called in either `will-resize` or `will-move` on Windows. [#&#8203;34204](https://github.com/electron/electron/pull/34204) <span style="font-size:small;">(Also in [16](https://github.com/electron/electron/pull/34282), [17](https://github.com/electron/electron/pull/34283), [19](https://github.com/electron/electron/pull/34285))</span> - Fixed an issue where calling `BrowserWindow.setRepresentedFilename` on macOS with `titlebarStyle: 'hiddenInset'` or `titlebarStyle: 'hidden'` inadvertently moves the traffic light location. [#&#8203;34849](https://github.com/electron/electron/pull/34849) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34847), [19](https://github.com/electron/electron/pull/34848))</span> - Fixed an issue where calling `SetLoginItemSettings()` could potentially cause network volumes to be incorrectly mounted. [#&#8203;34068](https://github.com/electron/electron/pull/34068) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34107), [18](https://github.com/electron/electron/pull/34106), [19](https://github.com/electron/electron/pull/34108))</span> - Fixed an issue where calling `setTitlebarOverlay` with an initially invalid `titleBarStyle` on Windows would result in a crash. [#&#8203;34140](https://github.com/electron/electron/pull/34140) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34302))</span> - Fixed an issue where calling `w.setWindowButtonVisibility(true)` immediately after exiting fullscreen fails to show window buttons. [#&#8203;34675](https://github.com/electron/electron/pull/34675) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34673), [19](https://github.com/electron/electron/pull/34674))</span> - Fixed an issue where draggable regions were not recalculated when BrowserView bounds changed on Windows. [#&#8203;34612](https://github.com/electron/electron/pull/34612) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34610), [19](https://github.com/electron/electron/pull/34611))</span> - Fixed an issue where media keys would be sent to Electron on Windows no matter which window was in focus. [#&#8203;34647](https://github.com/electron/electron/pull/34647) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34646))</span> - Fixed an issue where mixed-case extension filters in file dialogs were ignored on Linux. [#&#8203;33918](https://github.com/electron/electron/pull/33918) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34016), [19](https://github.com/electron/electron/pull/34015))</span> - Fixed an issue where normal bounds would not be appropriately updated if the user minimized with the minimize button. [#&#8203;34486](https://github.com/electron/electron/pull/34486) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34485), [19](https://github.com/electron/electron/pull/34484))</span> - Fixed an issue where passing `{ name: 'All Files', extensions: ['*'] }` in the `filters` param of open or save dialogs on Linux would disallow choosing files without an extension. [#&#8203;34516](https://github.com/electron/electron/pull/34516) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34518), [19](https://github.com/electron/electron/pull/34517))</span> - Fixed an issue where pressing escape would not un-fullscreen on Windows or Linux in some circumstances. [#&#8203;34317](https://github.com/electron/electron/pull/34317) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34361), [19](https://github.com/electron/electron/pull/34359))</span> - Fixed an issue where printing with an invalid `deviceName` on Linux caused silent failures. [#&#8203;34901](https://github.com/electron/electron/pull/34901) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34900))</span> - Fixed an issue where running second instances of the same application would cause a deadlock on Windows. [#&#8203;34297](https://github.com/electron/electron/pull/34297) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34295), [19](https://github.com/electron/electron/pull/34312))</span> - Fixed an issue where some `BrowserWindow`s opened from new links wouldn't properly load URLs. [#&#8203;34159](https://github.com/electron/electron/pull/34159) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34189))</span> - Fixed an issue where the minimize button with WCO enabled would incorrectly be highlighted in some cases. [#&#8203;34840](https://github.com/electron/electron/pull/34840) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34837), [18](https://github.com/electron/electron/pull/34838), [19](https://github.com/electron/electron/pull/34839))</span> - Fixed an issue where the window bounds would incorrectly change if `BrowserWindow.unmaximize` was called on a window whose user bounds were maximized. [#&#8203;33480](https://github.com/electron/electron/pull/33480) <span style="font-size:small;">(Also in [16](https://github.com/electron/electron/pull/33552), [17](https://github.com/electron/electron/pull/33551), [18](https://github.com/electron/electron/pull/33550), [19](https://github.com/electron/electron/pull/33549))</span> - Fixed an issue where tray items wouldn't highlight in some scenarios on macOS. [#&#8203;34173](https://github.com/electron/electron/pull/34173) <span style="font-size:small;">(Also in [16](https://github.com/electron/electron/pull/34205), [17](https://github.com/electron/electron/pull/34206), [18](https://github.com/electron/electron/pull/34207), [19](https://github.com/electron/electron/pull/34208))</span> - Fixed an issue where zombie windows can be created if `window.close()` is called during a fullscreen transition. [#&#8203;34393](https://github.com/electron/electron/pull/34393) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34390), [18](https://github.com/electron/electron/pull/34392), [19](https://github.com/electron/electron/pull/34391))</span> - Fixed an issue with the `app.requestSingleInstanceLock()` API where it would sometimes hang. [#&#8203;33777](https://github.com/electron/electron/pull/33777) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/33778), [19](https://github.com/electron/electron/pull/34071))</span> - Fixed behavior of BrowserWindow.maximize on macOS for not shown windows. [#&#8203;32949](https://github.com/electron/electron/pull/32949) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/33523), [16](https://github.com/electron/electron/pull/33535), [17](https://github.com/electron/electron/pull/33536), [18](https://github.com/electron/electron/pull/33537), [19](https://github.com/electron/electron/pull/34365))</span> - Fixed building node modules with Visual Studio 2017. [#&#8203;34109](https://github.com/electron/electron/pull/34109) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34110), [19](https://github.com/electron/electron/pull/34164))</span> - Fixed building node modules with Visual Studio 2017. [#&#8203;34217](https://github.com/electron/electron/pull/34217) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34316))</span> - Fixed crash on startup due to missing gtk symbol on older distros. [#&#8203;34141](https://github.com/electron/electron/pull/34141) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34150), [19](https://github.com/electron/electron/pull/34151))</span> - Fixed crash when calling navigator.serial.getPorts(). [#&#8203;34280](https://github.com/electron/electron/pull/34280) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34328), [18](https://github.com/electron/electron/pull/34327), [19](https://github.com/electron/electron/pull/34323))</span> - Fixed crash when img without `alt` is shown with accessibility features enabled. [#&#8203;33840](https://github.com/electron/electron/pull/33840) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/33841))</span> - Fixed crash when opening gtk file dialogs due to mismatched versions. [#&#8203;33650](https://github.com/electron/electron/pull/33650) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/33812), [19](https://github.com/electron/electron/pull/33813))</span> - Fixed empty app_id when running under wayland. [#&#8203;34879](https://github.com/electron/electron/pull/34879) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34877), [19](https://github.com/electron/electron/pull/34878))</span> - Fixed incorrect return value of `app.requestSingleInstanceLock()` when setting non-existent user data folder. [#&#8203;33559](https://github.com/electron/electron/pull/33559) <span style="font-size:small;">(Also in [16](https://github.com/electron/electron/pull/33590), [17](https://github.com/electron/electron/pull/33591), [18](https://github.com/electron/electron/pull/33592), [19](https://github.com/electron/electron/pull/33593))</span> - Fixed issues with frameless window animations and styling. [#&#8203;33599](https://github.com/electron/electron/pull/33599) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/33608), [16](https://github.com/electron/electron/pull/33607), [17](https://github.com/electron/electron/pull/33611), [18](https://github.com/electron/electron/pull/33610), [19](https://github.com/electron/electron/pull/33609))</span> - Fixed linux arm64 builds to not require glibc 2.29+. [#&#8203;34503](https://github.com/electron/electron/pull/34503) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34502))</span> - Fixed missing Sec-CH-UA headers and empty navigator.userAgentData. [#&#8203;34524](https://github.com/electron/electron/pull/34524) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34760), [18](https://github.com/electron/electron/pull/34758), [19](https://github.com/electron/electron/pull/34757))</span> - Fixed potential crash in WebFrameMain when performing a cross-origin navigation. [#&#8203;34417](https://github.com/electron/electron/pull/34417) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34415), [19](https://github.com/electron/electron/pull/34416))</span> - Fixed potential crash while generating accessibility trees for certain images. [#&#8203;33614](https://github.com/electron/electron/pull/33614) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/33616), [19](https://github.com/electron/electron/pull/33617))</span> - Fixed potential crash with WebFrameMain when navigating between cross-origin websites. [#&#8203;33919](https://github.com/electron/electron/pull/33919) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34293), [19](https://github.com/electron/electron/pull/34294))</span> - Fixed service worker registration with custom protocols. [#&#8203;34290](https://github.com/electron/electron/pull/34290) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34291), [19](https://github.com/electron/electron/pull/34315))</span> - Fixed symbol generation on 32-bit Windows release builds. [#&#8203;35091](https://github.com/electron/electron/pull/35091) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/35096), [19](https://github.com/electron/electron/pull/35090))</span> - Fixed the initialization of First Party Sets. [#&#8203;33971](https://github.com/electron/electron/pull/33971) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/33972))</span> - Fixed the initialization of first party sets in the browser process. [#&#8203;33998](https://github.com/electron/electron/pull/33998) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34011))</span> - \[Mac] Fixed Partition Alloc related crash in pre-BigSur (macos <= 10.15). [#&#8203;33704](https://github.com/electron/electron/pull/33704) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/33965), [19](https://github.com/electron/electron/pull/33966))</span> - `shell.openExternal()` now reports more detailed errors on Windows. [#&#8203;33620](https://github.com/electron/electron/pull/33620) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/33656), [16](https://github.com/electron/electron/pull/33657), [17](https://github.com/electron/electron/pull/33658), [18](https://github.com/electron/electron/pull/33705), [19](https://github.com/electron/electron/pull/33660))</span> #### Other Changes - Added a TRACE call named `crash_reporter::Start` under the `electron` category for `crash_reporter::Start()`. [#&#8203;34268](https://github.com/electron/electron/pull/34268) <span style="font-size:small;">(Also in [17](https://github.com/electron/electron/pull/34324), [18](https://github.com/electron/electron/pull/34325), [19](https://github.com/electron/electron/pull/34326))</span> - Added deprecation warning for the `new-window` event. [#&#8203;34593](https://github.com/electron/electron/pull/34593) - Added minimum GITHUB_TOKEN permissions. [#&#8203;34298](https://github.com/electron/electron/pull/34298) - Fixed an issue where BrowserViews didn't always visually update after call to `setBounds`. [#&#8203;34643](https://github.com/electron/electron/pull/34643) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34641), [19](https://github.com/electron/electron/pull/34642))</span> - Fixed child_process.spawn ENOENT error with cwd option. [#&#8203;33815](https://github.com/electron/electron/pull/33815) <span style="font-size:small;">(Also in [16](https://github.com/electron/electron/pull/33869), [17](https://github.com/electron/electron/pull/33870), [18](https://github.com/electron/electron/pull/33871), [19](https://github.com/electron/electron/pull/33872))</span> - Minimum required node version to install the `electron` npm package is now >10. [#&#8203;34166](https://github.com/electron/electron/pull/34166) - On Linux, changed the libgdk-pixbuf dependency to be dynamically linked rather than statically linked. [#&#8203;34635](https://github.com/electron/electron/pull/34635) <span style="font-size:small;">(Also in [18](https://github.com/electron/electron/pull/34601), [19](https://github.com/electron/electron/pull/34602))</span> - Re-enabled symbol generation on 32-bit Windows. [#&#8203;34162](https://github.com/electron/electron/pull/34162) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/34179))</span> - Temporarily disabled symbol generation on 32-bit Windows due to issues with symbol generation on that platform. [#&#8203;33653](https://github.com/electron/electron/pull/33653) <span style="font-size:small;">(Also in [19](https://github.com/electron/electron/pull/33689))</span> - WebContents for `<webview>` are now only created after the `'will-attach-webview'` event is emitted and `preventDefault` is not called. [#&#8203;35016](https://github.com/electron/electron/pull/35016) #### Documentation - Documentation changes: - [#&#8203;34278](https://github.com/electron/electron/pull/34278) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
renovate added 1 commit 2022-08-01 23:01:19 +00:00
continuous-integration/drone/push Build is passing Details
ecca96fa72
chore(deps): update dependency electron to v20
konrad merged commit 0f77a95414 into main 2022-08-02 08:04:52 +00:00
This repo is archived. You cannot comment on pull requests.
No reviewers
No Milestone
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: vikunja/desktop#109
No description provided.