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

Bump the electron group with 5 updates #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 1, 2024

Bumps the electron group with 5 updates:

Package From To
electron 25.8.4 33.2.1
electron-builder 24.13.3 25.1.8
app-builder-lib 24.13.3 25.1.8
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.2.1

Release notes

Sourced from electron's releases.

electron v33.2.1

Release Notes for v33.2.1

Fixes

  • Fixed a crash that could occur when calling shell.readShortcutLink on Windows. #44803 (Also in 34)
  • Fixed an issue where WebContentsViews were being improperly removed. #44671 (Also in 31, 32, 34)
  • Fixed an issue where resize wasn't being emitted for single-pixel resizes on Windows. #44723 (Also in 32, 34)
  • Fixed an issue where a utilityProcess pid would not be undefined after exit. #44694 (Also in 32, 34)
  • Fixed an issue where buttons shown under the Window Controls Overlay API were missing tooltips. #44757 (Also in 32, 34)
  • Fixed an issue where the webContents context-menu event was not emitted when using -webkit-app-region: drag. #44800 (Also in 32, 34)
  • Fixed an issue where the windows control overlay was unexpectedly visible in fullscreen on Linux. #44640 (Also in 31, 32, 34)
  • Fixed crash in net api when utility process exits. #44729 (Also in 32, 34)
  • Fixed segfault when moving WebContentsView between BrowserWindows. #44613 (Also in 31, 32, 34)
  • Fixed theme does not work in DevTools. #44635 (Also in 32, 34)
  • Fixed update file extension bug. #44771 (Also in 34)
  • Return 0 exit code for normal termination of the utility process. #44732 (Also in 32, 34)

Other Changes

  • Fixed an issue where a deprecation warning was being incorrectly emitted for frameless windows on macOS. #44767 (Also in 34)
  • Fixed drag-and-drop session being canceled on wayland with empty dragData. #44753 (Also in 32)
  • Security: backported fix for CVE-2024-11110. #44647
  • Updated Chromium to 130.0.6723.137. #44781
  • Updated Node.js to v20.18.1. #44780

electron v33.2.0

Release Notes for v33.2.0

Features

  • Added GPU accelerated shared texture offscreen rendering. #44511

Other Changes

  • Updated Chromium to 130.0.6723.118. #44591

electron v33.1.0

Release Notes for v33.1.0

Features

  • Added WebFrameMain.detached for frames in an unloading state.
    • Added WebFrameMain.isDestroyed() to determine if a frame has been destroyed.
    • Fixed webFrameMain.fromId(processId, frameId) returning a WebFrameMain instance which doesn't match the given parameters when the frame is unloading. #44209

Fixes

  • Fixed an issue where EventSource was undefined in both renderer and worker processes when Node.js integration was enabled. #44496 (Also in 32, 34)
  • Fixed crash when network process terminates while a net log is running. #44420 (Also in 31, 32, 34)
  • Fixed crash when rendering super menu accelerator on linux. #44520 (Also in 34)
  • Fixed external window focus when using shell.openExternal. #44468 (Also in 34)
  • Fixed regression with dynamic dependency on libgdk_pixbuf. #44436 (Also in 32, 34)

... (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
  • cd6e3d7 refactor: fix modernize-return-braced-init-list warnings (#44857)
  • 7152209 fix: modernize-use-using clang-tidy warnings (#44836)
  • 51e31de fix: modernize-use-nodiscard clang-tidy warnings (#44832)
  • fe3467e docs: correct stable release dates for v34.0.0 (#44830)
  • d0e24fc fix: clang-tidy performance-inefficient-vector-operation warnings (33-x-y) ...
  • 3483cd6 refactor: remove unnecessary constructor code (#44825)
  • 1ef8b47 fix: remove unused local variables (#44822)
  • 71c1149 docs: update new GitHub issue link (#44810)
  • bd5c8d7 fix: crash calling shell.readShortcutLink (#44803)
  • 52b5d8a fix: big endian bug in V8 serialization (#44796)
  • 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/electron-builder@25.1.7...electron-builder@25.1.8

v25.1.7

What's Changed

Full Changelog: https://github.com/electron-userland/electron-builder/compare/v25.1.6...electron-builder@25.1.7

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

  • Updated dependencies [d1cb6bdb, 62fd74dc]:
    • app-builder-lib@25.1.5
    • builder-util@25.1.5
    • builder-util-runtime@9.2.9
    • dmg-builder@25.1.5

25.1.4

Patch Changes

25.1.3

... (truncated)

Commits
  • 1d61d6f chore(deploy): Release v25.1.8 (#8561)
  • 8992911 chore(deploy): Release v25.1.7 (electron-updater@6.3.9) (#8542)
  • 8ef226a chore(deploy): Release v25.1.6 (#8532)
  • 2db6272 chore(deploy): Release v25.1.5 (electron-updater@6.3.8) (#8517)
  • 59767b0 chore(deploy): Release v25.1.4 (#8496)
  • afc6a34 chore(deploy): Release v25.1.3 (electron-updater@6.3.7) (#8488)
  • 178a3c4 chore(docs): migrating to typedoc and upgrading mkdocs+material package...
  • 0dd4616 chore(deploy): Release v25.1.2 (electron-updater@6.3.6) (#8487)
  • d56cd27 fix(deploy): redeploy all packages to sync semver ranges (#8486)
  • 2b5933a chore(deploy): Release v25.1.0 (#8464)
  • Additional commits viewable in compare view

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/electron-builder@25.1.7...electron-builder@25.1.8

v25.1.7

What's Changed

Full Changelog: https://github.com/electron-userland/electron-builder/compare/v25.1.6...electron-builder@25.1.7

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

  • #8533 cc8c70f7 Thanks @​mmaietta! - fix: add CodeSigningAccountName as required prop in Azure Signing Options

  • #8531 eaf274d4 Thanks @​mmaietta! - fix: always produce Release .node builds

  • Updated dependencies [097eeced]:

    • builder-util@25.1.6
    • dmg-builder@25.1.6
    • electron-builder-squirrel-windows@25.1.6
    • electron-publish@25.1.6

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
  • 1d61d6f chore(deploy): Release v25.1.8 (#8561)
  • 4ff778e fix: Path does not end with the package name (#8560)
  • 8992911 chore(deploy): Release v25.1.7 (electron-updater@6.3.9) (#8542)
  • 57cebf4 fix: check if the file already starts with a UTF-8 BOM (#8551)
  • 7488456 fix: fix the main matcher patterns for !node_modules/@​test/xxxx (#8547)
  • 21dfd73 chore(deps): eslint and prettier upgrade to v9 (#8552)
  • 2e84f01 fix: pass in platform to electron-rebuild (#8537)
  • 8ef226a chore(deploy): Release v25.1.6 (#8532)
  • cc8c70f fix: add CodeSigningAccountName as required prop in Azure Signing Options (...
  • eaf274d fix: always produce Release .node builds (#8531)
  • Additional commits viewable in compare view

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.

electron-updater@6.3.9

Patch Changes

electron-updater@6.3.8

Patch Changes

electron-updater@6.3.7

Patch Changes

  • #8491 178a3c40 Thanks @​mmaietta! - chore: migrating to typedoc and updating/improving type+interface definitions

  • Updated dependencies [178a3c40]:

    • builder-util-runtime@9.2.8

electron-updater@6.3.6

Patch Changes

electron-updater@6.3.5

Patch Changes

electron-updater@6.3.4

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

  • #8491 178a3c40 Thanks @​mmaietta! - chore: migrating to typedoc and updating/improving type+interface definitions

  • Updated dependencies [178a3c40]:

    • builder-util-runtime@9.2.8

6.3.6

Patch Changes

6.3.5

Patch Changes

6.3.4

Patch Changes

... (truncated)

Commits
  • 8992911 chore(deploy): Release v25.1.7 (electron-updater@6.3.9) (#8542)
  • 21dfd73 chore(deps): eslint and prettier upgrade to v9 (#8552)
  • b6d6ea9 fix(updater): Unable to copy file for caching: ENOENT (#8541)
  • 2db6272 chore(deploy): Release v25.1.5 (electron-updater@6.3.8) (#8517)
  • d1cb6bd chore(deps): update typescript 5.x lockfile (#8516)
  • 7dceec7 chore(deps): update typescript eslint monorepo packages (major semver bump) (...
  • afc6a34 chore(deploy): Release v25.1.3 (electron-updater@6.3.7) (#8488)
  • 178a3c4 chore(docs): migrating to typedoc and upgrading mkdocs+material package...
  • 0dd4616 chore(deploy): Release v25.1.2 (electron-updater@6.3.6) (#8487)
  • d56cd27 fix(deploy): redeploy all packages to sync semver ranges (#8486)
  • Additional commits viewable in compare view

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 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 upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the electron group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [electron](https://github.com/electron/electron) | `25.8.4` | `33.2.1` |
| [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` |
| [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.2.1
- [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.2.1)

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/electron-builder@25.1.8/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/electron-builder@25.1.8/packages/app-builder-lib)

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/electron-updater@6.3.9/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: 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] <support@github.com>
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.

0 participants