-
Notifications
You must be signed in to change notification settings - Fork 205
docs: add Electron 40 blog post #980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
619bc42
docs: add Electron 40 blog post
mlaurencin 8c06b18
fix lint
erickzhao eff4a06
fix lint again
erickzhao c820ca4
Update blog/electron-40-0.md
mlaurencin 477a3f4
add link to v8 roll increment
mlaurencin e7f4427
updated Chromium version
mlaurencin a9146da
add missed Chromium updated
mlaurencin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| --- | ||
| title: Electron 40.0.0 | ||
| date: 2026-1-13T00:00:00.000Z | ||
| authors: | ||
| - mlaurencin | ||
| slug: electron-40-0 | ||
| tags: [release] | ||
| --- | ||
|
|
||
| Electron 40.0.0 has been released! It includes upgrades to Chromium 144.0.7559.31, V8 14.4, and Node 24.11.1. | ||
|
|
||
| --- | ||
|
|
||
| The Electron team is excited to announce the release of Electron 40.0.0! You can install it with npm via `npm install electron@latest` or download it from our [releases website](https://releases.electronjs.org/release?channel=stable). Continue reading for details about this release. | ||
|
|
||
| If you have any feedback, please share it with us on [Bluesky](https://bsky.app/profile/electronjs.org) or [Mastodon](https://social.lfx.dev/@electronjs), or join our community [Discord](https://discord.com/invite/electronjs)! Bugs and feature requests can be reported in Electron's [issue tracker](https://github.com/electron/electron/issues). | ||
|
|
||
| ## Notable Changes | ||
|
|
||
| ### Stack Changes | ||
|
|
||
| - Chromium `144.0.7559.31` | ||
| - [New in 144](https://developer.chrome.com/blog/new-in-chrome-144/) | ||
| - [New in 143](https://developer.chrome.com/blog/new-in-chrome-143/) | ||
| * Node `v24.11.1` | ||
| - [Node 24.11.1 blog post](https://nodejs.org/en/blog/release/v24.11.1/) | ||
| - V8 `14.4` | ||
| - [V8 roll increment] | ||
erickzhao marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Electron 40 upgrades Chromium from `142.0.7444.52` to `144.0.7559.31`, Node.js from `v22.20.0` to `v24.11.1`, and V8 from `14.2` to `14.4`. | ||
|
|
||
| ### New Features and Improvements | ||
|
|
||
| - Added "memory-eviction" as a possible reason for a child process to exit. [#48362](https://github.com/electron/electron/pull/48362) | ||
| - Added `RGBAF16` output format with scRGB HDR color space support to Offscreen Rendering. [#48265](https://github.com/electron/electron/pull/48265) <sup>(Also in [39](https://github.com/electron/electron/pull/48504))</sup> | ||
| - Added `app.isHardwareAccelerationEnabled()`. [#47614](https://github.com/electron/electron/pull/47614) <sup>(Also in [37](https://github.com/electron/electron/pull/48679), [38](https://github.com/electron/electron/pull/48681), [39](https://github.com/electron/electron/pull/48680))</sup> | ||
| - Added bypassCustomProtocolHandlers option to net.request. [#48883](https://github.com/electron/electron/pull/48883) <sup>(Also in [38](https://github.com/electron/electron/pull/48881), [39](https://github.com/electron/electron/pull/48882))</sup> | ||
| - Added methods to enable more granular accessibility support management. [#48042](https://github.com/electron/electron/pull/48042) <sup>(Also in [37](https://github.com/electron/electron/pull/48627), [38](https://github.com/electron/electron/pull/48626), [39](https://github.com/electron/electron/pull/48625))</sup> | ||
| - Added support to import external shared texture as VideoFrame. [#48831](https://github.com/electron/electron/pull/48831) | ||
| - Added the ability to retrieve the system accent color on Linux using `systemPreferences.getAccentColor`. [#48027](https://github.com/electron/electron/pull/48027) <sup>(Also in [39](https://github.com/electron/electron/pull/48628))</sup> | ||
| - Allowed for persisting File System API grant status within a given session. [#48170](https://github.com/electron/electron/pull/48170) <sup>(Also in [37](https://github.com/electron/electron/pull/48328), [38](https://github.com/electron/electron/pull/48327), [39](https://github.com/electron/electron/pull/48344))</sup> | ||
| - Automatically focus DevTools when element is inspected or breakpoint is triggered. [#46386](https://github.com/electron/electron/pull/46386) <sup>(Also in [37](https://github.com/electron/electron/pull/48703), [38](https://github.com/electron/electron/pull/48701), [39](https://github.com/electron/electron/pull/48702))</sup> | ||
| - Enables resetting accent color to follow system accent settings if a previous color has been set via `window.setAccentColor(null)`. [#48274](https://github.com/electron/electron/pull/48274) <sup>(Also in [38](https://github.com/electron/electron/pull/48853), [39](https://github.com/electron/electron/pull/48852))</sup> | ||
| - Support dynamic ESM imports in non-context isolated preloads. [#48375](https://github.com/electron/electron/pull/48375) <sup>(Also in [37](https://github.com/electron/electron/pull/48487), [38](https://github.com/electron/electron/pull/48489), [39](https://github.com/electron/electron/pull/48488))</sup> | ||
| - Updated `nativeImage.createFromNamedImage` to support SF Symbol names. [#48772](https://github.com/electron/electron/pull/48772) <sup>(Also in [39](https://github.com/electron/electron/pull/48773))</sup> | ||
|
|
||
| ### Breaking Changes | ||
|
|
||
| #### Deprecated: clipboard API access from renderer processes | ||
|
|
||
| Using the clipboard API directly in the renderer process is deprecated. If you want to call this API from a renderer process, place the API call in your preload script and expose it using the contextBridge API. | ||
|
|
||
| #### Behavior Changed: MacOS dSYM files now compressed with tar.xz | ||
|
|
||
| Debug symbols for MacOS (dSYM) now use xz compression in order to handle larger file sizes. dsym.zip files are now dsym.tar.xz files. End users using debug symbols may need to update their zip utilities. | ||
|
|
||
| ## End of Support for 37.x.y | ||
|
|
||
| Electron 37.x.y has reached end-of-support as per the project's [support policy](https://www.electronjs.org/docs/latest/tutorial/electron-timelines#version-support-policy). Developers and applications are encouraged to upgrade to a newer version of Electron. | ||
|
|
||
| | E40 (Jan'26) | E41 (Mar'26) | E42 (May'26) | | ||
| | ------------ | ------------ | ------------ | | ||
| | 40.x.y | 41.x.y | 42.x.y | | ||
| | 39.x.y | 40.x.y | 41.x.y | | ||
| | 38.x.y | 39.x.y | 40.x.y | | ||
|
|
||
| ## What's Next | ||
|
|
||
| In the short term, you can expect the team to continue to focus on keeping up with the development of the major components that make up Electron, including Chromium, Node, and V8. | ||
|
|
||
| You can find [Electron's public timeline here](https://www.electronjs.org/docs/latest/tutorial/electron-timelines). | ||
|
|
||
| More information about future changes can be found on the [Planned Breaking Changes](https://github.com/electron/electron/blob/main/docs/breaking-changes.md) page. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.