Electron 16.0.0
¡Electron 16.0.0 ha sido liberado! Incluye actualizaciones a Chromium 96
, V8 9.6
y Node.js 16.9.1
. ¡Lea a continuación para más detalles!
El equipo de Electron esta emocionado de anunciar el lanzamiento de Electron 16.0.0! You can install it with npm via npm install electron@latest
or download it from our releases website. Continue reading for details about this release and please share any feedback you have!
Notable Changes
Electron Release Cadence Change
As of Electron 15, Electron will release a new major stable version every 8 weeks. You can read the full details here.
Additionally, Electron has changed supported versions from latest three versions to latest four versions until May 2022. See our versioning document for more detailed information about versioning in Electron. After May 2022, we will return to supporting latest three versions.
Stack Changes
- Chromium
96
- Node.js
16.9.1
- V8
9.6
Highlighted Features
- Now supports the WebHID API. #30213
- Add data parameter to
app.requestSingleInstanceLock
to share data between instances. #30891 - Pass securityOrigin to media permissions request handler. #31357
- Add
commandLine.removeSwitch
. #30933
Vea la notas de lanzamiento 16.0.0 para la lista completa de nuevas características y cambios.
Restaurar archivos borrados
Below are breaking changes introduced in Electron 16. More information about these and future changes can be found on the Planned Breaking Changes page.
Building Native Modules
If your project uses node-gyp to build native modules, you may need to call it with --force-process-config
depending on your project's setup and your Electron version. More information about this change can be found at #2497.
Behavior Changed: crashReporter
implementation switched to Crashpad on Linux
The underlying implementation of the crashReporter
API on Linux has changed from Breakpad to Crashpad, bringing it in line with Windows and Mac. As a result of this, child processes are now automatically monitored, and calling process.crashReporter.start
in Node child processes is no longer needed (and is not advisable, as it will start a second instance of the Crashpad reporter).
There are also some subtle changes to how annotations will be reported on Linux, including that long values will no longer be split between annotations appended with __1
, __2
and so on, and instead will be truncated at the (new, longer) annotation value limit.
API Modificada
There were no API changes in Electron 16.
Cambios Eliminado/Obsoletos
- Usage of the
desktopCapturer.getSources
API in the renderer has been deprecated and will be removed. This change improves the default security of Electron apps. See here for details on how to replace this API in your app.
Fin de soporte para 12.x.y
Electron 12.x.y ha alcanzado el fin de soporte según la política de soporte del proyecto. Developers and applications are encouraged to upgrade to a newer version of Electron.
As of Electron 15, we have changed supported versions from latest three versions to latest four versions until May 2022 with Electron 19. After Electron 19, we will return to supporting the latest three versions. This version support change is part of our new cadence change. Please see our blog post for full details here.
E15 (Sept'21) | E16 (Nov'21) | E17 (Feb'22) | E18 (Mar'22) | E19 (May'22) |
---|---|---|---|---|
15.x.y | 16.x.y | 17.x.y | 18.x.y | 19.x.y |
14.x.y | 15.x.y | 16.x.y | 17.x.y | 18.x.y |
13.x.y | 14.x.y | 15.x.y | 16.x.y | 17.x.y |
12.x.y | 13.x.y | 14.x.y | 15.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. Although we are careful not to make promises about release dates, our plan is to release new major versions of Electron with new versions of those components approximately every 2 months.
You can find Electron's public timeline here.
More information about future changes can be found on the Planned Breaking Changes page.