Electron 10.0.0
Electron 10.0.0 wurde veröffentlicht! Es enthält Upgrades auf Chromium 85
, V8 8.5
und Node.js 12.16
. Wir haben einige neue API-Integrationen und Verbesserungen hinzugefügt. Lesen Sie unten für weitere Details!
Das Electron-Team freut sich über die Veröffentlichung von Electron 10.0.0! Sie können es mit npm über npm install electron@latest
installieren oder von unserer Release-Website herunterladen. Der Release ist voll mit Upgrades, Korrekturen und neuen Features.
In der Version Electron 10 haben wir auch eine Änderung an unseren Release-Notizen vorgenommen. Um es einfacher zu machen, was in Electron 10 brandneu ist und was sich zwischen Electron 10 und früheren Versionen geändert haben könnte, haben wir nun auch Änderungen enthalten, die an Electron 10 eingeführt wurden, aber auf frühere Versionen zurückportiert wurden. Wir hoffen, dass dies es Apps einfacher macht, neue Funktionen und Fehlerbehebungen beim Upgrade von Electron zu finden.
Wir können nicht warten, was du mit ihnen baust! Lesen Sie weiter für Details zu dieser Version und teilen Sie bitte Ihr Feedback!
Bemerkenswerte Änderungen
Stack-Änderungen
- Chromium
85.0.4183.84
- Node.js
12.16.3
- V8
8.5
Hervorgehobene Features
- Added
contents.getBackgroundThrottling()
method andcontents.backgroundThrottling
property. [#21036] - Exposed the
desktopCapturer
module in the main process. #23548 - Can now check if a given
session
is persistent by calling theses.isPersistent()
API. #22622 - Resolve network issues that prevented RTC calls from being connected due to network IP address changes and ICE. (Chromium issue 1113227). #24998
Eine vollständige Liste der neuen Funktionen und Änderungen finden Sie in den 10.0.0 Versionshinweisen.
Breaking Changes
- Standardwert von
enableRemoteModule
auffalse
geändert. #22091- This is part of our plans for deprecating the
remote
module and moving it to userland. You can read and follow this issue that details our reasons for this and includes a proposed timeline for deprecation.
- This is part of our plans for deprecating the
- Changed the default value of
app.allowRendererProcessReuse
totrue
. #22336 (Also in Electron 9)- This will prevent loading of non-context-aware native modules in renderer processes.
- You can read and follow this issue that details our reasons for this and includes a proposed timeline for deprecation.
- Fixed the positioning of window buttons on macOS when the OS locale is set to an RTL language (like Arabic or Hebrew). Frameless window apps may have to account for this change while styling their windows. #22016
Weitere Informationen zu diesen und zukünftigen Änderungen finden Sie auf der geplante Änderungen Seite.
API-Änderungen
- Session: Can now check if a given
session
is persistent by calling theses.isPersistent()
API. #22622 - Contents: Added
contents.getBackgroundThrottling()
method andcontents.backgroundThrottling
property. #21036
Veraltete APIs
Die folgenden APIs sind jetzt veraltet oder entfernt:
- Die veraltete
currentlyLoggingPath
Eigenschaft vonnetLog
wurde entfernt. Zusätzlich gibtnetLog.stopLogging
den Pfad zur aufgezeichneten Log nicht mehr zurück. #22732 - Deprecated uncompressed crash uploads in
crashReporter
. #23598
Ende der Unterstützung für 7.x.y
Electron 7.x.y hat das Ende der Unterstützung gemäß der Unterstützungsrichtlinien des Projekts erreicht. Developers and applications are encouraged to upgrade to a newer version of Electron.
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 release new major versions of Electron with new versions of those components approximately quarterly. The tentative 11.0.0 schedule maps out key dates in the Electron 11.0 development life cycle. Also, see our versioning document for more detailed information about versioning in Electron.
For information on planned breaking changes in upcoming versions of Electron, see our Planned Breaking Changes doc.
Continued Work for Deprecation of remote
Module (in Electron 11)
We started work to remove the remote module in Electron 9 and we're continuing plans to remove the remote
module. In Electron 11, we plan to continue refactor work for implementing WeakRef as we have done in Electron 10. Please read and follow this issue for full plans and details for deprecation.
Final Step for Requiring Native Node Modules to be Context Aware or N-API (in Electron 12)
Edit: Originally, this blog post stated that we would disable renderer process reuse in Electron 11. Disabling renderer process reuse has now been pushed to Electron 12.
From Electron 6 onwards, we've been laying the groundwork to require native Node modules loaded in the renderer process to be either N-API or Context Aware. Enforcing this change allows for stronger security, faster performance, and reduced maintenance workload. The final step of this plan is to remove the ability to disable render process reuse in Electron 12. Read this issue for full details including the proposed timeline.