Bump electron from 1.8.2-beta.5 to 18.3.7
Bumps electron from 1.8.2-beta.5 to 18.3.7.
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 (25.0)
Deprecated:
protocol.{register,intercept}{Buffer,String,Stream,File,Http}ProtocolThe
protocol.register*Protocolandprotocol.intercept*Protocolmethods have been replaced withprotocol.handle.The new method can either register a new protocol or intercept an existing protocol, and responses can be of any type.
// Deprecated in Electron 25 protocol.registerBufferProtocol('some-protocol', () => { callback({ mimeType: 'text/html', data: Buffer.from('<h5>Response</h5>') }) })// Replace with protocol.handle('some-protocol', () => { return new Response( Buffer.from('<h5>Response</h5>'), // Could also be a string or ReadableStream. { headers: { 'content-type': 'text/html' } } ) })
// Deprecated in Electron 25 protocol.registerHttpProtocol('some-protocol', () => { callback({ url: 'https://electronjs.org' }) })// Replace with protocol.handle('some-protocol', () => { return net.fetch('https://electronjs.org') })
... (truncated)
Commits
dee6e01Bump v18.3.7483e39cchore: cherry-pick 97193a64b431 from chromium (#35184)cd7490dfix: consider dock space when showing menu (#35198)b990bd6fix: allow setsize to be called within a move or resize for preventDefault (#...56a0b45fix: modify file extension generation on Windows (#35171)5871f81fix: touch events not recognized by WCO on windows (#35117) (#35177)511f275ci: turn off windows on arm test result comments (#35167)8189ee6chore: add electron deps to //src gitignore (#35148)cc52f07ci: switch to GHA for WOA (#35127)890adefdocs: new main -> renderers messageChannel example (#35133)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by electron-nightly, a new releaser for electron since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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) You can disable automated security fix PRs for this repo from the Security Alerts page.