Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump the electron group across 1 directory with 6 updates #235

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 22, 2024

Bumps the electron group with 6 updates in the / directory:

Package From To
electron 25.8.4 33.0.2
electron-builder 24.13.3 25.1.8
app-builder-lib 24.13.3 25.1.8
builder-util 25.1.5 25.1.7
electron-squirrel-startup 1.0.0 1.0.1
electron-updater 6.3.0-alpha.6 6.3.9

Updates electron from 25.8.4 to 33.0.2

Release notes

Sourced from electron's releases.

electron v33.0.2

Release Notes for v33.0.2

Fixes

  • Fixed trace-startup not working on macOS. #44276 (Also in 32, 34)
  • Fixed an issue where closing a window after printing on Linux triggered a crash. #44285 (Also in 31, 32, 34)
  • Fixed an issue where the exit event could be emitted twice from the utilityProcess. #44266 (Also in 31, 32, 34)
  • Fixed calling setAlwaysOnTop on a hidden window which is then shown with showInactive on Linux under X11. #44324 (Also in 31, 32, 34)
  • Fixed race condition in which WebContents appears as white screen on VDI machines without hardware acceleration capabilities. #44352 (Also in 32, 34)

electron v33.0.1

Release Notes for v33.0.1

Other Changes

  • Updated Chromium to 130.0.6723.59. #44271

electron v33.0.0

Release Notes for 33.0.0

Stack Upgrades

Breaking Changes

  • Deprecated usage of textured BrowserWindow type option on macOS. #43133
  • Custom protocol URLs that use Windows file paths will no longer work correctly with the deprecated protocol.registerFileProtocol and the baseURLForDataURL property on BrowserWindow.loadURL, WebContents.loadURL, and <webview>.loadURL. #43977

Features

Additions

  • Added a handler, app.setClientCertRequestPasswordHandler(handler), to help unlock cryptographic devices when a PIN is needed. #41205
  • Added error event in utility process to support diagnostic reports on V8 fatal errors. #43997
  • Added View.setBorderRadius(radius) for customizing the border radius of views—with compatibility for WebContentsView. #42320
  • Added Linux support for the Windows Control Overlay API. #41769 (Also in 30, 31, 32)
  • Added support for the macOS system picker in desktopCapturer and setDisplayMediaRequestHandler. #43680 (Also in 32)
  • Added DownloadItem.getCurrentBytesPerSecond(), DownloadItem.getPercentComplete(), DownloadItem.getEndTime(). #42805 (Also in 30, 31, 32)
  • Added a new property prefersReducedTransparency to nativeTheme, which indicates whether the user has chosen to reduce OS-level transparency via system accessibility settings. #42862 (Also in 30, 31, 32)
  • Added support for responding to auth requests initiated from utility process via app#login event. #42631 (Also in 32)

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 (34.0)

Deprecated: level, message, line, and sourceId arguments in console-message event on WebContents

The console-message event on WebContents has been updated to provide details on the Event argument.

// Deprecated
webContents.on('console-message', (event, level, message, line, sourceId) => {})
// Replace with:
webContents.on('console-message', ({ level, message, lineNumber, sourceId, frame }) => {})

Additionally, level is now a string with possible values of info, warning, error, and debug.

Planned Breaking API Changes (33.0)

Behavior Changed: frame properties may retrieve detached WebFrameMain instances or none at all

APIs which provide access to a WebFrameMain instance may return an instance with frame.detached set to true, or possibly return null.

When a frame performs a cross-origin navigation, it enters into a detached state in which it's no longer attached to the page. In this state, it may be running unload handlers prior to being deleted. In the event of an IPC sent during this state, frame.detached will be set to true with the frame being destroyed shortly thereafter.

When receiving an event, it's important to access WebFrameMain properties immediately upon being received. Otherwise, it's not guaranteed to point to the same webpage as when received. To avoid misaligned expectations, Electron will return null in the case of late access where the webpage has changed.

... (truncated)

Commits
  • 777d447 fix: software compositing infinite loop (#44352)
  • e0d14a6 build: fixup reclient use for prod builds (#44342)
  • 739df86 fix: respect setAlwaysOnTop before showInactive on Linux under X11 (#44324)
  • 9a087b9 chore: fixup reclient read only access on forks (#44304)
  • 8b3f2c5 fix: trace-startup crashing child process on macOS (#44276)
  • ad9bf6b fix: Linux crash after webContents.print() with no parent window (#44285)
  • 32822cd build: remove dead code in prepare release script (#44289)
  • e1419b2 fix: ensure utilityProcess only emits one 'exit' event (#44266)
  • 11c2b61 chore: bump chromium to 130.0.6723.59 (33-x-y) (#44271)
  • 6b458c7 fix: -Wunsafe-buffer-usage warnings in TaskbarHost::SetThumbarButtons() (#44260)
  • Additional commits viewable in compare view

Updates electron-builder from 24.13.3 to 25.1.8

Release notes

Sourced from electron-builder's releases.

v25.1.8

What's Changed

Full Changelog: https://github.com/electron-userland/electron-builder/compare/[email protected]@25.1.8

v25.1.7

What's Changed

Full Changelog: https://github.com/electron-userland/electron-builder/compare/[email protected]

Changelog

Sourced from electron-builder's changelog.

25.1.8

Patch Changes

25.1.7

Patch Changes

25.1.6

Patch Changes

25.1.5

Patch Changes

25.1.4

Patch Changes

25.1.3

... (truncated)

Commits

Updates app-builder-lib from 24.13.3 to 25.1.8

Release notes

Sourced from app-builder-lib's releases.

v25.1.8

What's Changed

Full Changelog: https://github.com/electron-userland/electron-builder/compare/[email protected]@25.1.8

v25.1.7

What's Changed

Full Changelog: https://github.com/electron-userland/electron-builder/compare/[email protected]

v25.1.6

What's Changed

Full Changelog: electron-userland/electron-builder@v25.1.5...v25.1.6

v25.1.5

What's Changed

Full Changelog: electron-userland/electron-builder@v25.1.4...v25.1.5

v25.1.4

What's Changed

... (truncated)

Changelog

Sourced from app-builder-lib's changelog.

25.1.8

Patch Changes

25.1.7

Patch Changes

25.1.6

Patch Changes

25.1.5

Patch Changes

  • #8516 d1cb6bdb Thanks @​mmaietta! - fix(chore): upgrading typescript and fixing compiler errors

  • #8524 62fd74dc Thanks @​mmaietta! - fix: moving cscInfo logic into signtoolManager to distinguish the logic between custom sign, csc info, and azure signing

... (truncated)

Commits

Updates builder-util from 25.1.5 to 25.1.7

Release notes

Sourced from builder-util's releases.

v25.1.7

What's Changed

Full Changelog: https://github.com/electron-userland/electron-builder/compare/[email protected]

v25.1.6

What's Changed

Full Changelog: electron-userland/electron-builder@v25.1.5...v25.1.6

Changelog

Sourced from builder-util's changelog.

25.1.7

Patch Changes

25.1.6

Patch Changes

Commits

Updates electron-squirrel-startup from 1.0.0 to 1.0.1

Commits
Maintainer changes

This version was pushed to npm by addaleax, a new releaser for electron-squirrel-startup since your current version.


Updates electron-updater from 6.3.0-alpha.6 to 6.3.9

Release notes

Sourced from electron-updater's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

... (truncated)

Changelog

Sourced from electron-updater's changelog.

6.3.9

Patch Changes

6.3.8

Patch Changes

6.3.7

Patch Changes

6.3.6

Patch Changes

6.3.5

Patch Changes

6.3.4

Patch Changes

... (truncated)

Commits

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 will merge this PR once CI passes on it, as requested by @lichtblick-bot.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgra...

Description has been truncated

…dates

Bumps the electron group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [electron](https://github.com/electron/electron) | `25.8.4` | `33.0.2` |
| [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder) | `24.13.3` | `25.1.8` |
| [app-builder-lib](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/app-builder-lib) | `24.13.3` | `25.1.8` |
| [builder-util](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/builder-util) | `25.1.5` | `25.1.7` |
| [electron-squirrel-startup](https://github.com/mongodb-js/electron-squirrel-startup) | `1.0.0` | `1.0.1` |
| [electron-updater](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater) | `6.3.0-alpha.6` | `6.3.9` |



Updates `electron` from 25.8.4 to 33.0.2
- [Release notes](https://github.com/electron/electron/releases)
- [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md)
- [Commits](electron/electron@v25.8.4...v33.0.2)

Updates `electron-builder` from 24.13.3 to 25.1.8
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/master/packages/electron-builder/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/[email protected]/packages/electron-builder)

Updates `app-builder-lib` from 24.13.3 to 25.1.8
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/[email protected]/packages/app-builder-lib)

Updates `builder-util` from 25.1.5 to 25.1.7
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/master/packages/builder-util/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/[email protected]/packages/builder-util)

Updates `electron-squirrel-startup` from 1.0.0 to 1.0.1
- [Commits](mongodb-js/electron-squirrel-startup@v1.0.0...v1.0.1)

Updates `electron-updater` from 6.3.0-alpha.6 to 6.3.9
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/master/packages/electron-updater/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/[email protected]/packages/electron-updater)

---
updated-dependencies:
- dependency-name: electron
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: electron
- dependency-name: electron-builder
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: electron
- dependency-name: app-builder-lib
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: electron
- dependency-name: builder-util
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: electron
- dependency-name: electron-squirrel-startup
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: electron
- dependency-name: electron-updater
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: electron
...

Signed-off-by: dependabot[bot] <[email protected]>
lichtblick-bot
lichtblick-bot previously approved these changes Oct 22, 2024
@lichtblick-bot
Copy link
Collaborator

@dependabot squash and merge

Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 22, 2024

One of your CI runs failed on this pull request, so Dependabot won't merge it.

Dependabot will still automatically merge this pull request if you amend it and your tests pass.

Copy link

sonarcloud bot commented Oct 22, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant