Skip to content

chore(deps): bump the electron group across 1 directory with 4 updates#38

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/auto-codex-ui/electron-170397a6da
Open

chore(deps): bump the electron group across 1 directory with 4 updates#38
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/auto-codex-ui/electron-170397a6da

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 6, 2026

Bumps the electron group with 4 updates in the /auto-codex-ui directory: electron-updater, @electron/rebuild, electron and electron-builder.

Updates electron-updater from 6.7.3 to 6.8.3

Release notes

Sourced from electron-updater's releases.

electron-updater@6.8.3

Patch Changes

electron-updater@6.8.2

Patch Changes

electron-updater@6.8.1

Patch Changes

electron-updater@6.8.0

Minor Changes

Changelog

Sourced from electron-updater's changelog.

6.8.3

Patch Changes

6.8.2

Patch Changes

6.8.1

Patch Changes

6.8.0

Minor Changes

Commits
  • 3a3f439 chore(deploy): Release v26.8.0 (electron-updater@6.8.3) (#9556)
  • 9c67fd3 chore: Remove console logs for linux autoupdater platform check (#9561)
  • f1c2ec3 chore(deploy): Release v26.7.0 (electron-updater@6.8.2) (#9549)
  • 8aee1e6 fix(updater): don't throw on releases with non-semver tags when collecting fu...
  • 7b5901b chore(deploy): Release v26.5.0 (electron-updater@6.8.1) (#9503)
  • 6c20eeb chore: running eslint --fix on more files (#9502)
  • 06de969 chore(deploy): Release v26.4.1 (electron-updater@6.8.0) (#9458)
  • 3533a3e feat: Provide progress updates for multiple range differential downloads (#9448)
  • See full diff in compare view

Updates @electron/rebuild from 4.0.2 to 4.0.4

Release notes

Sourced from @​electron/rebuild's releases.

v4.0.4

4.0.4 (2026-04-21)

Bug Fixes

v4.0.3

4.0.3 (2026-01-27)

Bug Fixes

Commits
  • 21ceb5b fix: minimize production dependency tree (#1244)
  • 7dd7e0e chore(deps): bump vite from 8.0.3 to 8.0.5 (#1263)
  • b887fae chore(deps): bump minimatch from 3.1.2 to 3.1.5 (#1262)
  • e3d2323 chore(deps-dev): bump electron from 35.7.5 to 39.8.5 (#1254)
  • 2ed0cf7 chore: migrate test suite from Mocha/Chai to Vitest (#1257)
  • b182f39 chore: resolve dependabot alerts in test fixture lockfiles (#1258)
  • 8abcd5e chore: resolve dependabot security alerts (#1256)
  • 551b5e0 chore(deps): bump picomatch from 2.3.0 to 2.3.2 (#1255)
  • d5e48a3 ci: fix zizmor audit findings (#1252)
  • 608120c chore(deps): bump azure/login from 2.3.0 to 3.0.0 (#1249)
  • Additional commits viewable in compare view

Updates electron from 40.0.0 to 42.1.0

Release notes

Sourced from electron's releases.

electron v42.1.0

Release Notes for v42.1.0

Fixes

  • Fixed a crash in the macOS Touch ID WebAuthn prompt caused by a missing string resource, and added touchID.promptReason to app.configureWebAuthn() to customize the prompt text. #51594 (Also in 41, 43)
  • Fixed a crash on MacOS when a user clicked into a title bar or top view. #51605 (Also in 43)

Other Changes

  • Improved performance of webRequest header conversions and several other gin converter hot paths. #51607 (Also in 43)
  • Improved performance of native event emission, IPC dispatch, and option-dictionary parsing. #51614 (Also in 41)

electron v42.0.1

Release Notes for v42.0.1

Fixes

  • Fixed DesktopCapturer crash on macOS. #51506
  • Fixed ELECTRON_INSTALL_PLATFORM being ignored when resolving the Electron executable path during postinstall, which caused path.txt to be written for the host platform instead of the requested target and made isInstalled() always re-download on subsequent installs. #51370
  • Fixed app.getLoginItemSettings() returning undefined for executableWillLaunchAtLogin on macOS; the property is now always a boolean. #51507 (Also in 40, 41)
  • Fixed a potential race condition crash when closing DevTools. #51473 (Also in 41)

Other Changes

  • Updated Chromium to 148.0.7778.97. #51517

electron v42.0.0

Release Notes for v42.0.0

Stack Upgrades

Breaking Changes

Behavior Changed: macOS notifications now use UNNotification API

Electron has migrated from the deprecated NSUserNotification API to the UNNotification API on macOS. The new API requires that an application be code-signed in order for notifications to be displayed. If an application is not code-signed, notifications will emit a failed event on the Notification object. #47817

Behavior Changed: electron no longer downloads itself via postinstall script

Previously, the electron npm package would download the Electron binary from the repository's GitHub Releases in the package's postinstall script. With recent supply chain security attacks against the npm ecosystem with postinstall scripts as a common attack vector, Electron will now download itself dynamically the first time that its main bin script is run (e.g. via npx electron). See [RFC #22](electron/rfcs#22) for more context. #49328

Behavior Changed: Offscreen rendering default device scale factor

Previously, OSR used the primary display's device scale factor for rendering. Starting from Electron 42, the default changes to a constant value of 1.0 for more consistent output sizes. Use webPreferences.offscreen.deviceScaleFactor to specify a custom value. #49683

... (truncated)

Commits
  • 9604c46 refactor: simplify content_view_ hit-test transparency on macOS (#51626)
  • e229b1d perf: reduce per-call overhead in gin converters (#51607)
  • e639fa0 fix: don't return a nullptr from TargetForRect (#51605)
  • bce23fc perf: reduce per-call overhead in gin_helper hot paths (#51614)
  • eac794f fix: ship IDS_WEBAUTHN_TOUCH_ID_PROMPT_REASON and allow overriding it (#51594)
  • b133532 ci: pin Homebrew version in CI runs (#51545)
  • a8a9854 chore: update breaking changes for Electron 42 (#51550)
  • e7021e3 fix: test idempotency issues (#51526)
  • e49c3c6 test: make sure there are no orphaned electron processes running (#51485)
  • 90ef05b chore: bump chromium to 148.0.7778.97 (42-x-y) (#51517)
  • Additional commits viewable in compare view

Updates electron-builder from 26.4.0 to 26.8.1

Release notes

Sourced from electron-builder's releases.

electron-builder@26.8.1

What's Changed

Full Changelog: https://github.com/electron-userland/electron-builder/compare/electron-builder@26.8.0...electron-builder@26.8.1

electron-builder@26.8.0

What's Changed

New Contributors

Full Changelog: https://github.com/electron-userland/electron-builder/compare/electron-builder@26.7.0...electron-builder@26.8.0

electron-builder@26.7.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from electron-builder's changelog.

26.8.1

Patch Changes

4edd695 8940ec6 4edd695 dde4309

  • app-builder-lib@26.8.1
  • builder-util@26.8.1
  • dmg-builder@26.8.1

26.8.0

Minor Changes

Patch Changes

cd7c0d9 c18f0eb 769b608 9ba36f9 1b113b7 1b39a8e

  • app-builder-lib@26.8.0
  • builder-util@26.8.0
  • dmg-builder@26.8.0

26.7.0

Patch Changes

bfee115 3fa2d89 ec9e2db aec9157 64b40fe

... (truncated)

Commits
  • 9418d2c chore(deploy): Release v26.8.1 (#9585)
  • 3a3f439 chore(deploy): Release v26.8.0 (electron-updater@6.8.3) (#9556)
  • 1b39a8e feat: adding additional toolsets support for win-codesign/windows-kits (#9430)
  • f1c2ec3 chore(deploy): Release v26.7.0 (electron-updater@6.8.2) (#9549)
  • e394e0c chore(deploy): Release v26.6.0 (#9531)
  • 7b5901b chore(deploy): Release v26.5.0 (electron-updater@6.8.1) (#9503)
  • 06de969 chore(deploy): Release v26.4.1 (electron-updater@6.8.0) (#9458)
  • See full diff in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 6, 2026
Bumps the electron group with 4 updates in the /auto-codex-ui directory: [electron-updater](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater), [@electron/rebuild](https://github.com/electron/rebuild), [electron](https://github.com/electron/electron) and [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder).


Updates `electron-updater` from 6.7.3 to 6.8.3
- [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.8.3/packages/electron-updater)

Updates `@electron/rebuild` from 4.0.2 to 4.0.4
- [Release notes](https://github.com/electron/rebuild/releases)
- [Commits](electron/rebuild@v4.0.2...v4.0.4)

Updates `electron` from 40.0.0 to 42.1.0
- [Release notes](https://github.com/electron/electron/releases)
- [Commits](electron/electron@v40.0.0...v42.1.0)

Updates `electron-builder` from 26.4.0 to 26.8.1
- [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@26.8.1/packages/electron-builder)

---
updated-dependencies:
- dependency-name: "@electron/rebuild"
  dependency-version: 4.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: electron
- dependency-name: electron
  dependency-version: 41.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: electron
- dependency-name: electron-builder
  dependency-version: 26.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: electron
- dependency-name: electron-updater
  dependency-version: 6.8.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: electron
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the electron group in /auto-codex-ui with 4 updates chore(deps): bump the electron group across 1 directory with 4 updates May 18, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/auto-codex-ui/electron-170397a6da branch from 9214150 to 058b280 Compare May 18, 2026 16:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants