chore(deps): update dependency electron to v16 #65

Merged
konrad merged 1 commits from renovate/electron-16.x into main 2021-11-16 16:46:41 +00:00
Member

This PR contains the following updates:

Package Type Update Change
electron devDependencies major 15.3.2 -> 16.0.0

Release Notes

electron/electron

v16.0.0

Compare Source

Release Notes for v16.0.0

Stack Upgrades

Breaking Changes

  • The crashReporter API is now powered by Crashpad on Linux. #​30278
  • Usage of the desktopCapturer.getSources API from the renderer process has been deprecated and will be removed. 30721

Release Notes for v16.0.0

Features

Additions
  • Added 'dom-ready' event to WebFrameMain which emits when the frame's document is ready.
    • Added 'frame-created' event to WebContents which emits when a frame is created in the page. #​29290 (Also in 15)
  • Added WebHID support. #​31090 (Also in 15)
  • Added <webview>.sendToFrame() / frameId to 'ipc-message' event. #​30451 (Also in 15)
  • Added <webview> 'did-redirect-navigation' event. #​30457 (Also in 15)
  • Added app.configureHostResolver API for configuring DNS-over-HTTPS. #​30576 (Also in 15)
  • Added commandLine.removeSwitch to allow apps to remove command line switches from Chromiums internal command line representation. #​31327 (Also in 15)
  • Added frame property to the params object of the 'context-menu' event. #​30831 (Also in 15)
  • Added isIssuedByKnownRoot to ses.setCertificateVerifyProc callback. #​30174
  • Added isMainFrame argument to 'certificate-error' event. #​30879 (Also in 15)
  • Added safeStorage string encryption API. #​30020 (Also in 15)
  • Added textWidth option to dialog.showMessageBox() / dialog.showMessageBoxSync(). #​31089 (Also in 15)
  • Added webContents.fromDevToolsTargetId(targetId) to lookup a WebContents instance from an associated Chrome DevTools Protocol TargetID. #​29399 (Also in 14)
  • Added an Electron Fuse for enforcing code signatures on the app.asar file your application loads. Requires the latest asar module. #​30667 (Also in 15)
  • Added fuses to disable NODE_OPTIONS and --inspect debug arguments in packaged apps. #​30190 (Also in 15)
  • Added new data parameter to app.requestSingleInstanceLock(). #​31444
  • Added support for Windows Control Overlay on Windows. #​29600 (Also in 14, 15)
  • Added support for the U2F Web API. #​30438
  • Added warning when ipcRenderer.sendSync() is called with no listeners for channel on ipcMain. #​31435 (Also in 13, 14, 15)
Improvements
  • Began passing securityOrigin in details for permission request handlers for media requests in addition to permission check handlers. #​31416 (Also in 13, 14, 15)
  • Clicking a hyperlink in a PDF now does what you'd expect. #​30069
  • Emit a warning when setting a crash key name longer than the maximum allowed length. #​30742
  • Enabled sandboxing by default on WebContents which do not use Node or preloads. #​30197
  • NativeImage objects are now serializable over IPC. #​30729
  • The crashReporter API is now powered by Crashpad on Linux. #​30278
Removed/Deprecated
  • Usage of the desktopCapturer.getSources API from the renderer process has been deprecated and will be removed. #​30721

Fixes

  • Enables support for navigator.keyboard.lock(). #​31621
  • Fixed <webview> background transparency regression. #​31728
  • Fixed BrowserView.setBackgroundColor() not working correctly. #​31772
  • Fixed an issue where some transparent windows would show with a white background. #​31003
  • Fixed an issue where transparency was not always set correctly on webContents. #​31700
  • Fixed an issue where windows with vibrancy types set on them would incorrectly have a white instead of transparent background. #​31537
  • Fixed behaviour on posix when passing lists into app.requestSingleInstanceLock(additionalData) API. #​31708
  • Fixed crash in webview creation caused by UAF in the browser process. #​24344
  • Fixed crash when using singleton api with packaged apps on macOS. #​31612
  • Fixed detached DevTools window not closing when a menu item with the toggleDevTools role was triggered. #​29922
  • Fixed imageAnimationPolicy not being respected. #​30403
  • Having a secure CSP will no longer cause a CSP violation warning to appear in console. #​31589
  • ~/.config/{App Name} will no longer be incorrectly deleted if it is a symlink on unix systems. #​31852
Also in earlier versions....
  • Changed WebHID to use disable-hid-blocklist flag to enable FIDO devices. #​31650 (Also in 15)
  • Fixed "Failed to serialize arguments" error when emitting 'context-menu' event for webview. #​31278 (Also in 15)
  • Fixed Let's Encrypt DST Root CA X3 certificate expiration. #​31217 (Also in 12, 13, 14, 15)
  • Fixed clipboard.writeBuffer(), clipboard.readBuffer() and clipboard.read()'s ability to manipulate platform-specific clipboard formats. #​31719 (Also in 15)
  • Fixed documentEdited status not updating close button for frameless window on macOS. #​30322 (Also in 13, 14, 15)
  • Fixed a JavaScript exception from webContents if render frame was disposed in WebFrameMain, resets the value of render_frame_disposed_ after updating render frame host. #​31427 (Also in 14, 15)
  • Fixed a crash in navigator.fonts.query(). #​30930 (Also in 14, 15)
  • Fixed a crash in the repl when SharedArrayBuffer is disabled. #​30456 (Also in 14)
  • Fixed a crash when process.exit is called and nativeWindowOpen is enabled. #​30218 (Also in 14, 15)
  • Fixed a crash when a BrowserWindow is closed subsequent to its webContents being destroyed. #​31646 (Also in 14, 15)
  • Fixed a crash when selecting files in a native file dialog on Windows and Linux. #​30916 (Also in 15)
  • Fixed a potential crash that would occur with draggable regions on Windows. #​30304 (Also in 13, 14, 15)
  • Fixed a potential crash when setting nativeTheme.themeSource on macOS. #​31430 (Also in 14, 15)
  • Fixed a tracing agent-related crash when initializing Node.js in service workers. #​31477 (Also in 14, 15)
  • Fixed an issue on Mac where an application could not capture its own window using the desktop capture or getMediaSourceId APIs. #​30507 (Also in 13, 14, 15)
  • Fixed an issue on Windows where empty console windows were appearing when --enable-logging was present. #​30375 (Also in 14, 15)
  • Fixed an issue present in webView where the leave-html-full-screen event is not emitted if the user exits fullscreen with esc instead of by clicking into the webView. #​30537 (Also in 12, 13, 14, 15)
  • Fixed an issue where BrowserView dragging behavior was inconsistent with MacOS window dragging. #​31178 (Also in 13, 14, 15)
  • Fixed an issue where BrowserView webContents would appear not to load in some circumstances. #​29919 (Also in 14, 15)
  • Fixed an issue where Content-Disposition filenames would be incorrectly truncated at the first comma for a filename attachment which contained one. #​31694 (Also in 13, 14, 15)
  • Fixed an issue where MediaMetadata did not work properly. #​31535 (Also in 13, 14, 15)
  • Fixed an issue where app.getPath('crashDumps') returned an incorrect path for Linux. #​31711 (Also in 15)
  • Fixed an issue where clipboard.read() could cause crashes with custom clipboard formats. #​31592 (Also in 15)
  • Fixed an issue where a specified aspect ratio could become incorrect when maximizing a window on macOS. #​30305 (Also in 12, 13, 14, 15)
  • Fixed an issue where background color would not be correctly applied to BrowserViews on Windows when either the x or y coordinate is negative (off-screen). #​30510 (Also in 13, 14, 15)
  • Fixed an issue where button labels in file choosers were improperly localized on Linux. #​31067 (Also in 14, 15)
  • Fixed an issue where changes to draggable regions in a BrowserWindow incorrectly affected those in an attached BrowserView. #​31199 (Also in 13, 14, 15)
  • Fixed an issue where multiple calls toBrowserWindow.setResizable() can cause the zoom button to incorrectly be disabled on macOS. #​30999 (Also in 14, 15)
  • Fixed an issue where non-resizable non-fullscreenable windows with aspect ratios set could return incorrect results for isMaximized(). #​30989 (Also in 13, 14, 15)
  • Fixed an issue where out-of-focus BrowserViews could not be immediately dragged. #​31101 (Also in 13, 14, 15)
  • Fixed an issue where some calls to crypto.createPrivateKey made with algorithms unsupported by BoringSSL cause a crash when invoking methods on their return values. #​31136 (Also in 15)
  • Fixed an issue where the TouchBarScrubber crashes when showArrowButtons is enabled if items is an empty array. #​30661 (Also in 13, 14, 15)
  • Fixed an issue where toggling documentEdited status on macOS with titlebarStyle: 'hiddenInset' inadvertently moves the traffic light location. #​30565 (Also in 13, 14, 15)
  • Fixed an issue where undocked devtools was not resizable on Windows. #​30823 (Also in 14, 15)
  • Fixed an issue which caused print settings to not work properly when printing silently. #​31615 (Also in 13, 14, 15)
  • Fixed an potential crash in WebContents::MessageTo when a render frame has been destroyed. #​31336 (Also in 13, 14, 15)
  • Fixed beta-only bug that caused mouse clicks to not be processed in frameless windows. #​30447 (Also in 14, 15)
  • Fixed black border around the page after resizing is disabled. #​31080 (Also in 13, 14, 15)
  • Fixed black window when screen capturing a content-protected BrowserWindow on Windows 10. #​31386 (Also in 13, 14, 15)
  • Fixed child windows not inheriting the correct transparency and background color settings. #​31031 (Also in 14, 15)
  • Fixed clipboard.read to once again work like clipboard.readBuffer. #​31652 (Also in 15)
  • Fixed crash caused by double free when destroying WebContents. #​31132 (Also in 14, 15)
    • Fixed crash in GTK open dialog when trying to preview huge image files. #​31821 (Also in 14, 15)
  • Fixed crash caused by GetHostNameW on Windows 7. #​31814
  • Fixed crash in v8 due to (Check failed: !regexp_stack_->is_in_use()). #​31145 (Also in 13, 14, 15)
  • Fixed crash when changing zoom level for webview. #​31375 (Also in 14, 15)
  • Fixed crash when using sync dialog APIs immediately after async dialog APIs. #​31657 (Also in 15)
  • Fixed default label text in GTK dialogs. #​31824 (Also in 14, 15)
  • Fixed default setting used when setting an insecure cookie on a secure site. #​31839
  • Fixed event with invalid timestamp in trace log. #​31423 (Also in 14, 15)
  • Fixed frameless window having wrong traffic lights position on macOS 11. #​30263 (Also in 13, 14, 15)
  • Fixed issue where non-resizable frameless windows aren't draggable. #​31300 (Also in 13, 14, 15)
  • Fixed media key globalShortcuts on macOS. #​30552 (Also in 14, 15)
  • Fixed navigator.serial.getPorts() to return previously selected ports. #​30209 (Also in 12, 13)
  • Fixed possible 'Object has been destroyed' error when calling window.open with a frame name and using setWindowOpenHandler. #​31469 (Also in 14, 15)
  • Fixed potential crash when programatically closing a draggable frameless child window. #​30571 (Also in 15)
  • Fixed rare crash in UpdateDraggableRegions. #​30556 (Also in 13, 14, 15)
  • Fixed some console messages still being printed to logs when the LogJsConsoleMessages feature was disabled. #​30312 (Also in 14, 15)
  • Fixed stack overflow crash in v8 on windows 32-bit builds. #​29474 (Also in 12, 13, 14, 15)
  • Fixed titlebar showing under simple fullscreen mode. #​30671 (Also in 13, 14, 15)
  • Fixed transparent frameless windows having an opaque background when opened in a maximized state. #​30804 (Also in 12, 13, 14, 15)
  • Fixed window frame glitch when calling setContentProtection. #​31832 (Also in 14)
  • Generate valid config.gypi file in Node.js headers. #​31441 (Also in 14, 15)
  • Fixed a crash when selecting and opening files in a native file dialog on Mac. #​30935 (Also in 15)
  • Removes several Chromium private enterprise APIs from Mac Apple Store builds. #​31488 (Also in 12, 13, 14, 15)

Other Changes

  • Backported fix for 1251688, 1219656. #​31331
  • Changed Web Serial to use ses.setDevicePermissionHandler to allow developers more control over Web Serial permissioning. #​31324 (Also in 15)
  • Web Serial API is no longer experimental. #​30237 (Also in 14, 15)

Documentation

End of Support for 12.x.y

Electron 12.x.y has reached end-of-support. As per Electron's new 8-week cadence, we are supporting the latest four versions of Electron until May 2022, with the release of Electron 19. After Electron 19 is released, we'll return to supporting the latest three major versions, as well as the alpha, beta, and nightly releases.

E16 (Nov'21) E17 (Feb'22) E18 (Mar'22) E19 (May'22)
16.x.y 17.x.y 18.x.y 19.x.y
15.x.y 16.x.y 17.x.y 18.x.y
14.x.y 15.x.y 16.x.y 17.x.y
13.x.y 14.x.y 15.x.y --

Configuration

📅 Schedule: 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, check this box.

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 | [`15.3.2` -> `16.0.0`](https://renovatebot.com/diffs/npm/electron/15.3.2/16.0.0) | --- ### Release Notes <details> <summary>electron/electron</summary> ### [`v16.0.0`](https://github.com/electron/electron/releases/v16.0.0) [Compare Source](https://github.com/electron/electron/compare/v15.3.2...v16.0.0) ### Release Notes for v16.0.0 #### Stack Upgrades - Chromium 96.0.4664.4 - [New in 96](https://developer.chrome.com/blog/new-in-chrome-96/) - [New in 95](https://developer.chrome.com/blog/new-in-chrome-95/) - Node v16.9.1 - [v16.9.1 release notes](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V16.md#&#8203;16.9.1) - [v16.9.0 release notes](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V16.md#&#8203;16.9.0) - [v16.8.0 release notes](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V16.md#&#8203;16.8.0) - [v16.7.0 release notes](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V16.md#&#8203;16.7.0) - [v16.6.2 release notes](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V16.md#&#8203;16.6.2) - [v16.6.1 release notes](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V16.md#&#8203;16.6.1) - [v16.6.0 release notes](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V16.md#&#8203;16.6.0) - V8 v9.6 - [V8 9.6 blog post](https://v8.dev/blog/v8-release-96) - [V8 9.5 blog post](https://v8.dev/blog/v8-release-95) #### Breaking Changes - The `crashReporter` API is now powered by Crashpad on Linux. [#&#8203;30278](https://github.com/electron/electron/pull/30278) - Usage of the `desktopCapturer.getSources` API from the renderer process has been deprecated and will be removed. [30721](https://github.com/electron/electron/pull/30721) ### Release Notes for v16.0.0 #### Features ##### Additions - Added 'dom-ready' event to `WebFrameMain` which emits when the frame's document is ready. - Added 'frame-created' event to `WebContents` which emits when a frame is created in the page. [#&#8203;29290](https://github.com/electron/electron/pull/29290) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30801))</span> - Added WebHID support. [#&#8203;31090](https://github.com/electron/electron/pull/31090) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31095))</span> - Added `<webview>.sendToFrame()` / `frameId` to `'ipc-message'` event. [#&#8203;30451](https://github.com/electron/electron/pull/30451) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30704))</span> - Added `<webview>` `'did-redirect-navigation'` event. [#&#8203;30457](https://github.com/electron/electron/pull/30457) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30664))</span> - Added `app.configureHostResolver` API for configuring DNS-over-HTTPS. [#&#8203;30576](https://github.com/electron/electron/pull/30576) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30775))</span> - Added `commandLine.removeSwitch` to allow apps to remove command line switches from Chromiums internal command line representation. [#&#8203;31327](https://github.com/electron/electron/pull/31327) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31326))</span> - Added `frame` property to the `params` object of the 'context-menu' event. [#&#8203;30831](https://github.com/electron/electron/pull/30831) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31057))</span> - Added `isIssuedByKnownRoot` to `ses.setCertificateVerifyProc` callback. [#&#8203;30174](https://github.com/electron/electron/pull/30174) - Added `isMainFrame` argument to `'certificate-error'` event. [#&#8203;30879](https://github.com/electron/electron/pull/30879) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31038))</span> - Added `safeStorage` string encryption API. [#&#8203;30020](https://github.com/electron/electron/pull/30020) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30430))</span> - Added `textWidth` option to `dialog.showMessageBox()` / `dialog.showMessageBoxSync()`. [#&#8203;31089](https://github.com/electron/electron/pull/31089) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31088))</span> - Added `webContents.fromDevToolsTargetId(targetId)` to lookup a WebContents instance from an associated Chrome DevTools Protocol TargetID. [#&#8203;29399](https://github.com/electron/electron/pull/29399) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30732))</span> - Added an [Electron Fuse](https://www.electronjs.org/docs/tutorial/fuses) for enforcing code signatures on the `app.asar` file your application loads. Requires the latest `asar` module. [#&#8203;30667](https://github.com/electron/electron/pull/30667) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30900))</span> - Added fuses to disable `NODE_OPTIONS` and `--inspect` debug arguments in packaged apps. [#&#8203;30190](https://github.com/electron/electron/pull/30190) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30420))</span> - Added new data parameter to `app.requestSingleInstanceLock()`. [#&#8203;31444](https://github.com/electron/electron/pull/31444) - Added support for Windows Control Overlay on Windows. [#&#8203;29600](https://github.com/electron/electron/pull/29600) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30678), [15](https://github.com/electron/electron/pull/30512))</span> - Added support for the U2F Web API. [#&#8203;30438](https://github.com/electron/electron/pull/30438) - Added warning when `ipcRenderer.sendSync()` is called with no listeners for channel on `ipcMain`. [#&#8203;31435](https://github.com/electron/electron/pull/31435) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31432), [14](https://github.com/electron/electron/pull/31433), [15](https://github.com/electron/electron/pull/31434))</span> ##### Improvements - Began passing securityOrigin in details for permission request handlers for media requests in addition to permission check handlers. [#&#8203;31416](https://github.com/electron/electron/pull/31416) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31437), [14](https://github.com/electron/electron/pull/31436), [15](https://github.com/electron/electron/pull/31417))</span> - Clicking a hyperlink in a PDF now does what you'd expect. [#&#8203;30069](https://github.com/electron/electron/pull/30069) - Emit a warning when setting a crash key name longer than the maximum allowed length. [#&#8203;30742](https://github.com/electron/electron/pull/30742) - Enabled sandboxing by default on WebContents which do not use Node or preloads. [#&#8203;30197](https://github.com/electron/electron/pull/30197) - NativeImage objects are now serializable over IPC. [#&#8203;30729](https://github.com/electron/electron/pull/30729) - The `crashReporter` API is now powered by Crashpad on Linux. [#&#8203;30278](https://github.com/electron/electron/pull/30278) ##### Removed/Deprecated - Usage of the `desktopCapturer.getSources` API from the renderer process has been deprecated and will be removed. [#&#8203;30721](https://github.com/electron/electron/pull/30721) #### Fixes - Enables support for `navigator.keyboard.lock()`. [#&#8203;31621](https://github.com/electron/electron/pull/31621) - Fixed `<webview>` background transparency regression. [#&#8203;31728](https://github.com/electron/electron/pull/31728) - Fixed `BrowserView.setBackgroundColor()` not working correctly. [#&#8203;31772](https://github.com/electron/electron/pull/31772) - Fixed an issue where some transparent windows would show with a white background. [#&#8203;31003](https://github.com/electron/electron/pull/31003) - Fixed an issue where transparency was not always set correctly on webContents. [#&#8203;31700](https://github.com/electron/electron/pull/31700) - Fixed an issue where windows with vibrancy types set on them would incorrectly have a white instead of transparent background. [#&#8203;31537](https://github.com/electron/electron/pull/31537) - Fixed behaviour on posix when passing lists into `app.requestSingleInstanceLock(additionalData)` API. [#&#8203;31708](https://github.com/electron/electron/pull/31708) - Fixed crash in webview creation caused by UAF in the browser process. [#&#8203;24344](https://github.com/electron/electron/pull/24344) - Fixed crash when using singleton api with packaged apps on macOS. [#&#8203;31612](https://github.com/electron/electron/pull/31612) - Fixed detached DevTools window not closing when a menu item with the toggleDevTools role was triggered. [#&#8203;29922](https://github.com/electron/electron/pull/29922) - Fixed imageAnimationPolicy not being respected. [#&#8203;30403](https://github.com/electron/electron/pull/30403) - Having a secure CSP will no longer cause a CSP violation warning to appear in console. [#&#8203;31589](https://github.com/electron/electron/pull/31589) - `~/.config/{App Name}` will no longer be incorrectly deleted if it is a symlink on unix systems. [#&#8203;31852](https://github.com/electron/electron/pull/31852) ##### Also in earlier versions.... - Changed WebHID to use `disable-hid-blocklist` flag to enable FIDO devices. [#&#8203;31650](https://github.com/electron/electron/pull/31650) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31649))</span> - Fixed "Failed to serialize arguments" error when emitting 'context-menu' event for webview. [#&#8203;31278](https://github.com/electron/electron/pull/31278) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31279))</span> - Fixed Let's Encrypt DST Root CA X3 certificate expiration. [#&#8203;31217](https://github.com/electron/electron/pull/31217) <span style="font-size:small;">(Also in [12](https://github.com/electron/electron/pull/31214), [13](https://github.com/electron/electron/pull/31215), [14](https://github.com/electron/electron/pull/31216), [15](https://github.com/electron/electron/pull/31218))</span> - Fixed `clipboard.writeBuffer()`, `clipboard.readBuffer()` and `clipboard.read()`'s ability to manipulate platform-specific clipboard formats. [#&#8203;31719](https://github.com/electron/electron/pull/31719) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31720))</span> - Fixed `documentEdited` status not updating close button for frameless window on macOS. [#&#8203;30322](https://github.com/electron/electron/pull/30322) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30393), [14](https://github.com/electron/electron/pull/30391), [15](https://github.com/electron/electron/pull/30392))</span> - Fixed a JavaScript exception from webContents if render frame was disposed in WebFrameMain, resets the value of `render_frame_disposed_` after updating render frame host. [#&#8203;31427](https://github.com/electron/electron/pull/31427) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31425), [15](https://github.com/electron/electron/pull/31426))</span> - Fixed a crash in `navigator.fonts.query()`. [#&#8203;30930](https://github.com/electron/electron/pull/30930) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30984), [15](https://github.com/electron/electron/pull/30985))</span> - Fixed a crash in the repl when `SharedArrayBuffer` is disabled. [#&#8203;30456](https://github.com/electron/electron/pull/30456) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30484))</span> - Fixed a crash when `process.exit` is called and `nativeWindowOpen` is enabled. [#&#8203;30218](https://github.com/electron/electron/pull/30218) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30235), [15](https://github.com/electron/electron/pull/30238))</span> - Fixed a crash when a `BrowserWindow` is closed subsequent to its `webContents` being destroyed. [#&#8203;31646](https://github.com/electron/electron/pull/31646) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31645), [15](https://github.com/electron/electron/pull/31644))</span> - Fixed a crash when selecting files in a native file dialog on Windows and Linux. [#&#8203;30916](https://github.com/electron/electron/pull/30916) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30927))</span> - Fixed a potential crash that would occur with draggable regions on Windows. [#&#8203;30304](https://github.com/electron/electron/pull/30304) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30326), [14](https://github.com/electron/electron/pull/30327), [15](https://github.com/electron/electron/pull/30328))</span> - Fixed a potential crash when setting `nativeTheme.themeSource` on macOS. [#&#8203;31430](https://github.com/electron/electron/pull/31430) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31428), [15](https://github.com/electron/electron/pull/31429))</span> - Fixed a tracing agent-related crash when initializing Node.js in service workers. [#&#8203;31477](https://github.com/electron/electron/pull/31477) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31475), [15](https://github.com/electron/electron/pull/31476))</span> - Fixed an issue on Mac where an application could not capture its own window using the desktop capture or getMediaSourceId APIs. [#&#8203;30507](https://github.com/electron/electron/pull/30507) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30523), [14](https://github.com/electron/electron/pull/30524), [15](https://github.com/electron/electron/pull/30525))</span> - Fixed an issue on Windows where empty console windows were appearing when `--enable-logging` was present. [#&#8203;30375](https://github.com/electron/electron/pull/30375) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30385), [15](https://github.com/electron/electron/pull/30386))</span> - Fixed an issue present in `webView` where the `leave-html-full-screen` event is not emitted if the user exits fullscreen with `esc` instead of by clicking into the `webView`. [#&#8203;30537](https://github.com/electron/electron/pull/30537) <span style="font-size:small;">(Also in [12](https://github.com/electron/electron/pull/30669), [13](https://github.com/electron/electron/pull/30560), [14](https://github.com/electron/electron/pull/30561), [15](https://github.com/electron/electron/pull/30562))</span> - Fixed an issue where BrowserView dragging behavior was inconsistent with MacOS window dragging. [#&#8203;31178](https://github.com/electron/electron/pull/31178) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31175), [14](https://github.com/electron/electron/pull/31176), [15](https://github.com/electron/electron/pull/31177))</span> - Fixed an issue where `BrowserView` webContents would appear not to load in some circumstances. [#&#8203;29919](https://github.com/electron/electron/pull/29919) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30335), [15](https://github.com/electron/electron/pull/30336))</span> - Fixed an issue where `Content-Disposition` filenames would be incorrectly truncated at the first comma for a filename attachment which contained one. [#&#8203;31694](https://github.com/electron/electron/pull/31694) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31691), [14](https://github.com/electron/electron/pull/31692), [15](https://github.com/electron/electron/pull/31693))</span> - Fixed an issue where `MediaMetadata` did not work properly. [#&#8203;31535](https://github.com/electron/electron/pull/31535) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31532), [14](https://github.com/electron/electron/pull/31533), [15](https://github.com/electron/electron/pull/31534))</span> - Fixed an issue where `app.getPath('crashDumps')` returned an incorrect path for Linux. [#&#8203;31711](https://github.com/electron/electron/pull/31711) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31712))</span> - Fixed an issue where `clipboard.read()` could cause crashes with custom clipboard formats. [#&#8203;31592](https://github.com/electron/electron/pull/31592) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31591))</span> - Fixed an issue where a specified aspect ratio could become incorrect when maximizing a window on macOS. [#&#8203;30305](https://github.com/electron/electron/pull/30305) <span style="font-size:small;">(Also in [12](https://github.com/electron/electron/pull/30329), [13](https://github.com/electron/electron/pull/30330), [14](https://github.com/electron/electron/pull/30331), [15](https://github.com/electron/electron/pull/30332))</span> - Fixed an issue where background color would not be correctly applied to `BrowserViews` on Windows when either the `x` or `y` coordinate is negative (off-screen). [#&#8203;30510](https://github.com/electron/electron/pull/30510) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30540), [14](https://github.com/electron/electron/pull/30541), [15](https://github.com/electron/electron/pull/30542))</span> - Fixed an issue where button labels in file choosers were improperly localized on Linux. [#&#8203;31067](https://github.com/electron/electron/pull/31067) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31065), [15](https://github.com/electron/electron/pull/31066))</span> - Fixed an issue where changes to draggable regions in a `BrowserWindow` incorrectly affected those in an attached `BrowserView`. [#&#8203;31199](https://github.com/electron/electron/pull/31199) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31197), [14](https://github.com/electron/electron/pull/31200), [15](https://github.com/electron/electron/pull/31198))</span> - Fixed an issue where multiple calls to`BrowserWindow.setResizable()` can cause the zoom button to incorrectly be disabled on macOS. [#&#8203;30999](https://github.com/electron/electron/pull/30999) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31013), [15](https://github.com/electron/electron/pull/31014))</span> - Fixed an issue where non-resizable non-fullscreenable windows with aspect ratios set could return incorrect results for `isMaximized()`. [#&#8203;30989](https://github.com/electron/electron/pull/30989) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31039), [14](https://github.com/electron/electron/pull/31040), [15](https://github.com/electron/electron/pull/31041))</span> - Fixed an issue where out-of-focus BrowserViews could not be immediately dragged. [#&#8203;31101](https://github.com/electron/electron/pull/31101) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31098), [14](https://github.com/electron/electron/pull/31099), [15](https://github.com/electron/electron/pull/31100))</span> - Fixed an issue where some calls to `crypto.createPrivateKey` made with algorithms unsupported by BoringSSL cause a crash when invoking methods on their return values. [#&#8203;31136](https://github.com/electron/electron/pull/31136) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31137))</span> - Fixed an issue where the TouchBarScrubber crashes when `showArrowButtons` is enabled if `items` is an empty array. [#&#8203;30661](https://github.com/electron/electron/pull/30661) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30680), [14](https://github.com/electron/electron/pull/30679), [15](https://github.com/electron/electron/pull/30681))</span> - Fixed an issue where toggling `documentEdited` status on macOS with `titlebarStyle: 'hiddenInset'` inadvertently moves the traffic light location. [#&#8203;30565](https://github.com/electron/electron/pull/30565) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30603), [14](https://github.com/electron/electron/pull/30605), [15](https://github.com/electron/electron/pull/30604))</span> - Fixed an issue where undocked devtools was not resizable on Windows. [#&#8203;30823](https://github.com/electron/electron/pull/30823) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30847), [15](https://github.com/electron/electron/pull/30848))</span> - Fixed an issue which caused print settings to not work properly when printing silently. [#&#8203;31615](https://github.com/electron/electron/pull/31615) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31618), [14](https://github.com/electron/electron/pull/31617), [15](https://github.com/electron/electron/pull/31616))</span> - Fixed an potential crash in `WebContents::MessageTo` when a render frame has been destroyed. [#&#8203;31336](https://github.com/electron/electron/pull/31336) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31335), [14](https://github.com/electron/electron/pull/31333), [15](https://github.com/electron/electron/pull/31334))</span> - Fixed beta-only bug that caused mouse clicks to not be processed in frameless windows. [#&#8203;30447](https://github.com/electron/electron/pull/30447) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30459), [15](https://github.com/electron/electron/pull/30460))</span> - Fixed black border around the page after resizing is disabled. [#&#8203;31080](https://github.com/electron/electron/pull/31080) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31078), [14](https://github.com/electron/electron/pull/31079), [15](https://github.com/electron/electron/pull/31081))</span> - Fixed black window when screen capturing a content-protected BrowserWindow on Windows 10. [#&#8203;31386](https://github.com/electron/electron/pull/31386) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31550), [14](https://github.com/electron/electron/pull/31551), [15](https://github.com/electron/electron/pull/31385))</span> - Fixed child windows not inheriting the correct transparency and background color settings. [#&#8203;31031](https://github.com/electron/electron/pull/31031) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31048), [15](https://github.com/electron/electron/pull/31049))</span> - Fixed clipboard.read to once again work like clipboard.readBuffer. [#&#8203;31652](https://github.com/electron/electron/pull/31652) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31651))</span> - Fixed crash caused by double free when destroying WebContents. [#&#8203;31132](https://github.com/electron/electron/pull/31132) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31131), [15](https://github.com/electron/electron/pull/31133))</span> - - Fixed crash in GTK open dialog when trying to preview huge image files. [#&#8203;31821](https://github.com/electron/electron/pull/31821) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31819), [15](https://github.com/electron/electron/pull/31820))</span> - Fixed crash caused by `GetHostNameW` on Windows 7. [#&#8203;31814](https://github.com/electron/electron/pull/31814) - Fixed crash in v8 due to `(Check failed: !regexp_stack_->is_in_use())`. [#&#8203;31145](https://github.com/electron/electron/pull/31145) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31142), [14](https://github.com/electron/electron/pull/31143), [15](https://github.com/electron/electron/pull/31144))</span> - Fixed crash when changing zoom level for webview. [#&#8203;31375](https://github.com/electron/electron/pull/31375) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31374), [15](https://github.com/electron/electron/pull/31376))</span> - Fixed crash when using sync dialog APIs immediately after async dialog APIs. [#&#8203;31657](https://github.com/electron/electron/pull/31657) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31658))</span> - Fixed default label text in GTK dialogs. [#&#8203;31824](https://github.com/electron/electron/pull/31824) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31822), [15](https://github.com/electron/electron/pull/31823))</span> - Fixed default setting used when setting an insecure cookie on a secure site. [#&#8203;31839](https://github.com/electron/electron/pull/31839) - Fixed event with invalid timestamp in trace log. [#&#8203;31423](https://github.com/electron/electron/pull/31423) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31421), [15](https://github.com/electron/electron/pull/31422))</span> - Fixed frameless window having wrong traffic lights position on macOS 11. [#&#8203;30263](https://github.com/electron/electron/pull/30263) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30319), [14](https://github.com/electron/electron/pull/30269), [15](https://github.com/electron/electron/pull/30270))</span> - Fixed issue where non-resizable frameless windows aren't draggable. [#&#8203;31300](https://github.com/electron/electron/pull/31300) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/31414), [14](https://github.com/electron/electron/pull/31298), [15](https://github.com/electron/electron/pull/31299))</span> - Fixed media key `globalShortcut`s on macOS. [#&#8203;30552](https://github.com/electron/electron/pull/30552) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30569), [15](https://github.com/electron/electron/pull/30570))</span> - Fixed navigator.serial.getPorts() to return previously selected ports. [#&#8203;30209](https://github.com/electron/electron/pull/30209) <span style="font-size:small;">(Also in [12](https://github.com/electron/electron/pull/31193), [13](https://github.com/electron/electron/pull/31190))</span> - Fixed possible 'Object has been destroyed' error when calling `window.open` with a frame name and using `setWindowOpenHandler`. [#&#8203;31469](https://github.com/electron/electron/pull/31469) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31467), [15](https://github.com/electron/electron/pull/31468))</span> - Fixed potential crash when programatically closing a draggable frameless child window. [#&#8203;30571](https://github.com/electron/electron/pull/30571) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31027))</span> - Fixed rare crash in UpdateDraggableRegions. [#&#8203;30556](https://github.com/electron/electron/pull/30556) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30557), [14](https://github.com/electron/electron/pull/30559), [15](https://github.com/electron/electron/pull/30558))</span> - Fixed some console messages still being printed to logs when the LogJsConsoleMessages feature was disabled. [#&#8203;30312](https://github.com/electron/electron/pull/30312) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30355), [15](https://github.com/electron/electron/pull/30356))</span> - Fixed stack overflow crash in v8 on windows 32-bit builds. [#&#8203;29474](https://github.com/electron/electron/pull/29474) <span style="font-size:small;">(Also in [12](https://github.com/electron/electron/pull/30244), [13](https://github.com/electron/electron/pull/30241), [14](https://github.com/electron/electron/pull/30242), [15](https://github.com/electron/electron/pull/30243))</span> - Fixed titlebar showing under simple fullscreen mode. [#&#8203;30671](https://github.com/electron/electron/pull/30671) <span style="font-size:small;">(Also in [13](https://github.com/electron/electron/pull/30706), [14](https://github.com/electron/electron/pull/30707), [15](https://github.com/electron/electron/pull/30708))</span> - Fixed transparent frameless windows having an opaque background when opened in a maximized state. [#&#8203;30804](https://github.com/electron/electron/pull/30804) <span style="font-size:small;">(Also in [12](https://github.com/electron/electron/pull/30863), [13](https://github.com/electron/electron/pull/30862), [14](https://github.com/electron/electron/pull/30864), [15](https://github.com/electron/electron/pull/30865))</span> - Fixed window frame glitch when calling `setContentProtection`. [#&#8203;31832](https://github.com/electron/electron/pull/31832) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31831))</span> - Generate valid config.gypi file in Node.js headers. [#&#8203;31441](https://github.com/electron/electron/pull/31441) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/31443), [15](https://github.com/electron/electron/pull/31442))</span> - Fixed a crash when selecting and opening files in a native file dialog on Mac. [#&#8203;30935](https://github.com/electron/electron/pull/30935) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/30936))</span> - Removes several Chromium private enterprise APIs from Mac Apple Store builds. [#&#8203;31488](https://github.com/electron/electron/pull/31488) <span style="font-size:small;">(Also in [12](https://github.com/electron/electron/pull/31527), [13](https://github.com/electron/electron/pull/31486), [14](https://github.com/electron/electron/pull/31487), [15](https://github.com/electron/electron/pull/31483))</span> #### Other Changes - Backported fix for [`1251688`](https://github.com/electron/electron/commit/1251688), [`1219656`](https://github.com/electron/electron/commit/1219656). [#&#8203;31331](https://github.com/electron/electron/pull/31331) - Changed Web Serial to use `ses.setDevicePermissionHandler` to allow developers more control over Web Serial permissioning. [#&#8203;31324](https://github.com/electron/electron/pull/31324) <span style="font-size:small;">(Also in [15](https://github.com/electron/electron/pull/31418))</span> - Web Serial API is no longer experimental. [#&#8203;30237](https://github.com/electron/electron/pull/30237) <span style="font-size:small;">(Also in [14](https://github.com/electron/electron/pull/30333), [15](https://github.com/electron/electron/pull/30334))</span> #### Documentation - Documentation changes: - [#&#8203;30071](https://github.com/electron/electron/pull/30071) - [#&#8203;30768](https://github.com/electron/electron/pull/30768) - [#&#8203;30898](https://github.com/electron/electron/pull/30898) #### End of Support for 12.x.y Electron 12.x.y has reached end-of-support. As per [Electron's new 8-week cadence](https://www.electronjs.org/blog/8-week-cadence), we are supporting the latest four versions of Electron until May 2022, with the release of Electron 19. After Electron 19 is released, we'll return to supporting the latest three major versions, as well as the alpha, beta, and nightly releases. | E16 (Nov'21) | E17 (Feb'22) | E18 (Mar'22) | E19 (May'22) | | ---- | ---- | ---- | ---- | | 16.x.y | 17.x.y | 18.x.y | 19.x.y | | 15.x.y | 16.x.y | 17.x.y | 18.x.y | | 14.x.y | 15.x.y | 16.x.y | 17.x.y | | 13.x.y | 14.x.y | 15.x.y | -- | </details> --- ### Configuration 📅 **Schedule**: 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, check this box. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovate added 1 commit 2021-11-16 02:01:45 +00:00
continuous-integration/drone/push Build is passing Details
7f35127d8d
chore(deps): update dependency electron to v16
renovate force-pushed renovate/electron-16.x from 7f35127d8d to d6d4384274 2021-11-16 08:01:47 +00:00 Compare
konrad merged commit b03a2b5de7 into main 2021-11-16 16:46:41 +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#65
No description provided.