bloom
bloom copied to clipboard
chore(deps-dev): bump electron from 30.0.9 to 34.0.2 in /packages/desktop
Bumps electron from 30.0.9 to 34.0.2.
Release notes
Sourced from electron's releases.
electron v34.0.2
Release Notes for v34.0.2
Fixes
- Fixed a crash when calling
shell.readShortcutLinkcaused byPKEY_AppUserModel_ToastActivatorCLSIDsometimes being represented by a string uuid. #45350 (Also in 33)- Fixed a potential crash in
chrome.tabs.update(). #45304 (Also in 33, 35)- Fixed an issue where print scaling could be too small during silent print. #45283 (Also in 35)
- Fixed crash in gin::wrappable::secondweakcallback. #45376
Other Changes
- Updated Chromium to 132.0.6834.159. #45313
electron v34.0.1
Release Notes for v34.0.1
Fixes
- Addressed two possible crashes in the File System Access API. #45260 (Also in 35)
- Fixed an issue where drag-dropping two directories would cause
getAsFileSystemHandleto never resolve. #45258 (Also in 33, 35)- The
avoidClosingConnectionsoption forsession.clearDatanow properly defaults tofalsewhen thedataTypesoption is not set. #45208 (Also in 33)electron v34.0.0
Release Notes for v34.0.0
Stack Upgrades
- Chromium
132.0.6834.83- Node
20.18.1- V8
13.2Breaking Changes
- Made menu bar hidden on fullscreen in Windows. #43402
Features
Additions
- Added APIs to manage shared dictionaries for compression efficiency using Brotli or ZStandard. The new APIs are
session.getSharedDictionaryUsageInfo(),session.getSharedDictionaryInfo(options),session.clearSharedDictionaryCache(), andsession.clearSharedDictionaryCacheForIsolationKey(options). #44950 (Also in 33)- Added
WebFrameMain.collectJavaScriptCallStack()for accessing the JavaScript call stack of unresponsive renderers. #44938 (Also in 33)- Added
WebFrameMain.detachedfor frames in an unloading state.- Added error event in utility process to support diagnostic reports on V8 fatal errors. #43774 (Also in 33)
- Added support for the macOS system picker in
desktopCapturerandsetDisplayMediaRequestHandler. #43581 (Also in 32, 33)- Feat: GPU accelerated shared texture offscreen rendering. #42953 (Also in 33)
Improvements
... (truncated)
Changelog
Sourced from electron's changelog.
Breaking Changes
Breaking changes will be documented here, and deprecation warnings added to JS code where possible, at least one major version before the change is made.
Types of Breaking Changes
This document uses the following convention to categorize breaking changes:
- API Changed: An API was changed in such a way that code that has not been updated is guaranteed to throw an exception.
- Behavior Changed: The behavior of Electron has changed, but not in such a way that an exception will necessarily be thrown.
- Default Changed: Code depending on the old default may break, not necessarily throwing an exception. The old behavior can be restored by explicitly specifying the value.
- Deprecated: An API was marked as deprecated. The API will continue to function, but will emit a deprecation warning, and will be removed in a future release.
- Removed: An API or feature was removed, and is no longer supported by Electron.
Planned Breaking API Changes (35.0)
Deprecated:
getFromVersionIDonsession.serviceWorkersThe
session.serviceWorkers.fromVersionID(versionId)API has been deprecated in favor ofsession.serviceWorkers.getInfoFromVersionID(versionId). This was changed to make it more clear which object is returned with the introduction of thesession.serviceWorkers.getWorkerFromVersionID(versionId)API.// Deprecated session.serviceWorkers.fromVersionID(versionId)// Replace with session.serviceWorkers.getInfoFromVersionID(versionId)
Deprecated:
setPreloads,getPreloadsonSession
registerPreloadScript,unregisterPreloadScript, andgetPreloadScriptsare introduced as a replacement for the deprecated methods. These new APIs allow third-party libraries to register preload scripts without replacing existing scripts. Also, the newtypeoption allows for additional preload targets beyondframe.// Deprecated session.setPreloads([path.join(__dirname, 'preload.js')])// Replace with: session.registerPreloadScript({ type: 'frame', id: 'app-preload', filePath: path.join(__dirname, 'preload.js') })
... (truncated)
Commits
61cddcafix: crash in gin::wrappable::secondweakcallback (#45376)0fed0b7chore: bump chromium to 132.0.6834.159 (34-x-y) (#45313)af9ea0bfix: crash parsing CLSID inshell.readShortcutLink()(#45350)a41a0b1build: use Python311 exe (#45362)6005517docs: fix broken code in drag and drop example (#45337)c538aa8docs: Add note about directly exposing Electron APIs in preload (#45323)2d6dd64fix: potential crash inchrome.tabs.update()(#45304)bb616bafix: page scaling in silent mode printing (#45283)4a1c029refactor: inStopTracing(), use string literals instead of `optional<strin...a1816f3docs: add DocCardList component for index doc (#45295)- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)