Electron 29.0.0
Electron 29.0.0 已发布!它包括升级到 Chromium 122.0.6261.39
、V8 12.2
和 Node.js 20.9.0
。
Electron 团队很高兴宣布发布 Electron 29.0.0!您可以使用 npm 通过 npm install electron@latest
安装它,或者从我们的发布网站下载它。继续阅读以了解有关此版本的详细信息。
如果您有任何反馈,请在 Twitter 或 Mastodon 上与我们分享,或加入我们的社区 Discord!错误和功能请求可以在 Electron 的 问题跟踪器中报告。
值得注意的更改
亮点
- 添加了一个新的顶层
webUtils
模块,这是一个渲染器进程模块,提供了一个用于与 Web API 对象交互的实用程序层。该模块中第一个可用的 API 是webUtils.getPathForFile
。Electron 之前的File.path
增强偏离了 Web 标准;这个新的 API 更符合当前的 Web 标准行为。
堆栈更改
- Chromium
122.0.6261.39
- Chrome 122 和 DevTools 122 中的新功能
- Chrome 121 和 DevTools 121 中的新功能
- Node
20.9.0
- V8
12.2
Electron 29 将 Chromium 从 120.0.6099.56
升级到 122.0.6261.39
,将 Node 从 18.18.2
升级到 20.9.0
,并将 V8 从 12.0
升级到 12.2
。
新功能
- 添加了新的
webUtils
模块,这是一个用于与 Web API 对象交互的实用程序层,以替换File.path
增强。#38776 - 将 net 模块添加到 实用程序进程。#40890
- 添加了一个新的 Electron Fuse,
grantFileProtocolExtraPrivileges
,它使file://
协议采用更安全和限制性的行为,该行为与 Chromium 匹配。#40372 - 在
protocol.registerSchemesAsPrivileged
中添加了一个选项,以允许在自定义方案中使用 V8 代码缓存。#40544 - 将
app.{set|get}LoginItemSettings(settings)
迁移到在 macOS 13.0+ 上使用 Apple 新推荐的底层框架。#37244
重大更改
行为已更改:ipcRenderer
不能再通过 contextBridge
发送
尝试通过 contextBridge
将整个 ipcRenderer
模块作为对象发送,现在会导致桥的接收端出现一个空对象。此更改是为了删除/缓解安全隐患。您不应该通过桥直接暴露 ipcRenderer 或其方法。相反,请提供一个如下所示的安全包装器
contextBridge.exposeInMainWorld('app', {
onEvent: (cb) => ipcRenderer.on('foo', (e, ...args) => cb(args)),
});
已删除:app
上的 renderer-process-crashed
事件
已删除 app
上的 renderer-process-crashed
事件。请改用新的 render-process-gone
事件。
// Removed
app.on('renderer-process-crashed', (event, webContents, killed) => {
/* ... */
});
// Replace with
app.on('render-process-gone', (event, webContents, details) => {
/* ... */
});
已删除:WebContents
和 <webview>
上的 crashed
事件
已删除 WebContents
和 <webview>
上的 crashed
事件。请改用新的 render-process-gone
事件。
// Removed
win.webContents.on('crashed', (event, killed) => {
/* ... */
});
webview.addEventListener('crashed', (event) => {
/* ... */
});
// Replace with
win.webContents.on('render-process-gone', (event, details) => {
/* ... */
});
webview.addEventListener('render-process-gone', (event) => {
/* ... */
});
已删除:app
上的 gpu-process-crashed
事件
已删除 app
上的 gpu-process-crashed
事件。请改用新的 child-process-gone
事件。
// Removed
app.on('gpu-process-crashed', (event, killed) => {
/* ... */
});
// Replace with
app.on('child-process-gone', (event, details) => {
/* ... */
});
26.x.y 版本停止支持
根据项目的支持策略,Electron 26.x.y 版本已停止支持。 建议开发者和应用程序升级到较新版本的 Electron。
E29 (24 年 2 月) | E30 (24 年 4 月) | E31 (24 年 6 月) |
---|---|---|
29.x.y | 30.x.y | 31.x.y |
28.x.y | 29.x.y | 30.x.y |
27.x.y | 28.x.y | 29.x.y |
下一步
您是否知道 Electron 最近添加了一个社区征求意见 (RFC) 流程? 如果您想向框架添加功能,RFC 可以成为与维护人员就其设计展开对话的有用工具。您还可以在拉取请求中查看正在讨论的即将发生的变化。要了解更多信息,请查看我们的介绍 electron/rfcs博客文章,或直接查看 electron/rfcs 存储库的 README 文件。
短期内,您可以预期该团队将继续专注于跟进构成 Electron 的主要组件(包括 Chromium、Node 和 V8)的开发。
您可以在此处找到 Electron 的公共时间表。
有关未来变更的更多信息,请访问 计划的重大更改 页面。