[PR #460] [MERGED] chore(deps): update dev-dependencies (major) #763

Closed
opened 2025-11-01 21:03:40 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-vikunja/vikunja/pull/460
Author: @renovate[bot]
Created: 3/31/2025
Status: Merged
Merged: 3/31/2025
Merged by: @kolaente

Base: mainHead: renovate/major-dev-dependencies


📝 Commits (1)

  • d74de77 chore(deps): update dev-dependencies

📊 Changes

4 files changed (+182 additions, -368 deletions)

View changed files

📝 desktop/package.json (+2 -2)
📝 desktop/pnpm-lock.yaml (+147 -289)
📝 frontend/package.json (+3 -3)
📝 frontend/pnpm-lock.yaml (+30 -74)

📄 Description

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
electron 34.4.1 -> 35.1.2 age adoption passing confidence
electron-builder (source) 25.1.8 -> 26.0.12 age adoption passing confidence
eslint-plugin-vue (source) 9.33.0 -> 10.0.0 age adoption passing confidence
happy-dom 16.8.1 -> 17.4.4 age adoption passing confidence
vite-plugin-pwa 0.21.2 -> 1.0.0 age adoption passing confidence

Release Notes

electron/electron (electron)

v35.1.2: electron v35.1.2

Compare Source

Release Notes for v35.1.2

Fixes

  • Fixed an issue where navigationHistory.restore() failed to restore the userAgent if it was overridden. #​46300 (Also in 34, 36)

Other Changes

  • Security: backported fix for CVE-2025-2783. #​46303
  • Updated Chromium to 134.0.6998.178. #​46287

v35.1.1: electron v35.1.1

Compare Source

Release Notes for v35.1.1

Fixes

  • Fixed build failure when building with printing disabled. #​46285 (Also in 34, 36)

v35.1.0: electron v35.1.0

Compare Source

Release Notes for v35.1.0

Features

  • Added ffmpeg.dll to delay load configuration. #​46172 (Also in 34, 36)

Fixes

  • Fixed NODE_OPTIONS parsing for child processes on macOS. #​46244 (Also in 34, 36)
  • Fixed a crash seen on Linux when calling webContents.print(). #​46147 (Also in 36)
  • Fixed an issue where system-context-menu incorrectly fired for all regions in frameless windows. #​46178 (Also in 33, 34, 36)
  • Fixed an issue where webContents.printToPDF() didn't work as expected with cross-process subframes. #​46257 (Also in 34, 36)
  • Fixed an issue where the resizing border didn't work as expected on Wayland windows. #​46224 (Also in 33, 34, 36)
  • Fixed an issue with token formatting for tokens received after calling pushNotifications.registerForAPNSNotifications(). #​46148 (Also in 34, 36)
  • Fixed crash on Linux when PipeWire screenshare source selection is cancelled. #​46234 (Also in 36)
  • Fixed crash with out-of-bounds string read when parsing NODE_OPTIONS. #​46248 (Also in 34, 36)

Other Changes

  • Improved performance of desktopCapturer.getSources when not requesting thumbnails on macOS. #​46249 (Also in 34, 36)
  • Updated Chromium to 134.0.6998.165. #​46196

v35.0.3: electron v35.0.3

Compare Source

Release Notes for v35.0.3

Fixes

  • Fixed an issue where snapped windows in Windows may sometimes be improperly restored. #​46040 (Also in 33, 34, 36)
  • Fixed incorrect titlebar in file save dialogs. #​46074 (Also in 33, 34, 36)

Documentation

v35.0.2: electron v35.0.2

Compare Source

Release Notes for v35.0.2

Fixes

  • Fixed an issue where Web Workers crashed on unhandled rejections. #​46020 (Also in 34, 36)
  • Fixed an issue where packages could be mistakenly not found in asar. #​46022 (Also in 36)
  • Fixed title changes to not occur while navigating within a page. #​46035 (Also in 34, 36)

Other Changes

  • Fixed an issue where Electron could fail to load on some older Linux distributions. #​45983 (Also in 34, 36)
  • Updated Chromium to 134.0.6998.88. #​45972

v35.0.1: electron v35.0.1

Compare Source

Release Notes for v35.0.1

Fixes

  • Fixed an issue where Node.js OOM errors terminate the process directly without raising an OOM exception. #​45911 (Also in 36)
  • Fixed an issue where setContentProtection(true) was reverted when a given window was hidden. #​45889 (Also in 34)
  • Fixed invalid memory access in pdf viewer which lead to random crashes. #​45879 (Also in 34)
  • Improved webContents loading time when resolving fonts for uncommon scripts. #​45918 (Also in 34, 36)

Other Changes

v35.0.0: electron v35.0.0

Compare Source

Release Notes for v35.0.0
Stack Upgrades
Breaking Changes
  • Added excludeUrls to webRequest filter and deprecated the use of empty arrays in urls property. #​45678
  • Added fromVersionID on ServiceWorkers to get an instance of ServiceWorkerMain. #​45341
  • Deprecated getPreloads and setPreloads on Session. #​45329
  • Fixed file chooser dialogs for flaptak applications. #​44426 (Also in 34)
  • Moved 'console-message' arguments into event object. #​43617
  • The systemPreferences.isAeroGlassEnabled() API has been deprecated and will be removed without replacement. #​45554
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(), and session.clearSharedDictionaryCacheForIsolationKey(options). #​44750 (Also in 33, 34)
  • Added NSPrefersDisplaySafeAreaCompatibilityMode = false to Info.plist to remove "Scale to fit below built-in camera." from app options. #​45357 (Also in 33, 34)
  • Added ServiceWorkerMain class to interact with service workers in the main process. #​45341
    • Added running-status-changed event on ServiceWorkers to indicate when a service worker's running status has changed.
    • Added startWorkerForScope on ServiceWorkers to start a worker that may have been previously stopped.
  • Added WebFrameMain.collectJavaScriptCallStack() for accessing the JavaScript call stack of unresponsive renderers. #​44204 (Also in 33, 34)
  • Added contextBridge.executeInMainWorld to safely execute code across world boundaries. #​45330
  • Added frame to 'console-message' event. #​43617
  • Added query-session-end event and improved session-end events on Windows. #​44598
  • Added view.getVisible(). #​45409 (Also in 34)
  • Added webContents.navigationHistory.restore(index, entries) API that allows restoration of navigation history. #​45583 (Also in 34)
  • Added optional animation parameter to BrowserWindow.setVibrancy. #​35987
  • Added permission support for document.executeCommand("paste"). #​45471 (Also in 33, 34)
  • Added support for roundedCorners BrowserWindow constructor option on Windows. #​45740 (Also in 34)
  • Added support for service worker preload scripts. #​45408
  • Support Portal's globalShortcuts. Electron must be run with --enable-features=GlobalShortcutsPortal in order to have the feature working. #​45297
Improvements
  • Performance improvements when processing microtasks. #​44439 (Also in 32, 33, 34)
  • Redesigned preload script APIs by introducing registerPreloadScript, unregisterPreloadScript, getPreloadScripts on Session.#​45329
Removed/Deprecated
  • Removed 240 FPS limit when use shared texture OSR. #​45781
Fixes
  • Fixed webContents.print() after switch to OOP printing on macOS and Linux. #​45285
  • Fixed an issue where the renderer process crashed when loading about:blank in subframes. #​45758
  • Fixed broken OOP window.print() on macOS/Linux. #​45259
  • Fixed desktopCapturer.getSources not returning electron windows on Windows. #​45000
  • Fixed spellcheck suggestions not correctly populating on Windows. #​45763
  • Optimized webFrame.getZoomLevel and webFrame.getZoomFactor APIs. #​45557
  • Re-enables the MacWebContentsOcclusion feature flag for Mac, with plans to make it enabled by default in a future release. #​45801
Also in earlier versions...
  • Addressed two possible crashes in the File System Access API. #​45261 (Also in 34)
  • Backported fix for a upstream bug that cause Offscreen Rendering to stutter. #​45660 (Also in 32, 33, 34)
  • Fixed WebFrameMain crash related to accessing speculative frames that have been destroyed. #​45686 (Also in 33, 34)
  • Fixed chrome.i18n extension API being unavailable in service workers. #​45031 (Also in 31, 32, 33, 34)
  • Fixed trace-startup not working on macOS. #​44257 (Also in 32, 33, 34)
  • Fixed v8.setHeapSnapshotNearHeapLimit api in main and utility process, along with support for --diagnostic-dir Node.js cli flag to specify the directory to save the heap snapshots. #​45632 (Also in 33, 34)
  • Fixed a bug where the default path didn't always correctly fill the Name field in KDialogs on Linux. #​45420 (Also in 34)
  • Fixed a crash that could occur in OSR on window close. #​45630 (Also in 34)
  • Fixed a crash that could occur when calling shell.readShortcutLink on Windows. #​44784 (Also in 33, 34)
  • Fixed a crash when calling shell.readShortcutLink caused by PKEY_AppUserModel_ToastActivatorCLSID sometimes being represented by a string uuid. #​45348 (Also in 33, 34)
  • Fixed a potential crash in chrome.tabs.update(). #​45302 (Also in 33, 34)
  • Fixed a potential crash when calling legacy getUserMedia with an invalid chromeMediaSourceId. #​45755 (Also in 34)
  • Fixed a potential issues permissions in the Pointer Lock API after focus loss and regain. #​45628 (Also in 34)
  • Fixed an issue where RTL tooltips could be incorrect when using WCO on Windows. #​45425 (Also in 33, 34)
  • Fixed an issue where Windows Control Overlay didn't work with some window configurations. #​45477 (Also in 33, 34)
  • Fixed an issue where EventSource was undefined in both renderer and worker processes when Node.js integration was enabled. #​44475 (Also in 32, 33, 34)
  • Fixed an issue where WebContentsViews were being improperly removed. #​44656 (Also in 31, 32, 33, 34)
  • Fixed an issue where contextmenu events wouldn't be correctly dispatched in draggable regions on Linux. #​45841 (Also in 34)
  • Fixed an issue where resize wasn't being emitted for single-pixel resizes on Windows. #​44700 (Also in 32, 33, 34)
  • Fixed an issue where a utilityProcess pid would not be undefined after exit. #​44677 (Also in 32, 33, 34)
  • Fixed an issue where buttons shown under the Window Controls Overlay API were missing tooltips. #​44721 (Also in 32, 33, 34)
  • Fixed an issue where closing a window after printing on Linux triggered a crash. #​44246 (Also in 31, 32, 33, 34)
  • Fixed an issue where drag-dropping two directories would cause getAsFileSystemHandle to never resolve. #​45256 (Also in 33, 34)
  • Fixed an issue where print scaling could be too small during silent print. #​45262 (Also in 34)
  • Fixed an issue where selection of multiple directories with the dialog module didn't work on Linux. #​45394 (Also in 34)
  • Fixed an issue where the exit event could be emitted twice from the utilityProcess. #​44243 (Also in 31, 32, 33, 34)
  • Fixed an issue where the webContents context-menu event was not emitted when using -webkit-app-region: drag. #​44761 (Also in 32, 33, 34)
  • Fixed an issue where the windows control overlay was unexpectedly visible in fullscreen on Linux. #​44621 (Also in 31, 32, 33, 34)
  • Fixed an issue where windows on Windows with backgroundMaterial lost effect on maximization. #​45525 (Also in 34)
  • Fixed an possible crash when using draggable regions and BaseWindows to get the context-menu event. #​44940 (Also in 32, 33, 34)
  • Fixed build failure when the PDF viewer is disabled. #​44960 (Also in 33, 34)
  • Fixed calling setAlwaysOnTop on a hidden window which is then shown with showInactive on Linux under X11. #​44078 (Also in 31, 32, 33, 34)
  • Fixed crash in gin::wrappable::secondweakcallback. #​45378 (Also in 33, 34)
  • Fixed crash in net api when utility process exits. #​44574 (Also in 32, 33, 34)
  • Fixed crash on startup with asan build on macOS. #​45569 (Also in 33, 34)
  • Fixed crash when accessing WebFrameMain frames and name attributes on destroyed frames. #​45508 (Also in 33, 34)
  • Fixed crash when network process terminates while a net log is running. #​44406 (Also in 31, 32, 33, 34)
  • Fixed crash when rendering super menu accelerator on linux. #​44341 (Also in 32, 33, 34)
  • Fixed custom spell checker getting stuck in infinite loop using 100% CPU. #​45001 (Also in 31, 32, 33, 34)
  • Fixed drag and drop icons not showing on Windows. #​45777 (Also in 34)
  • Fixed external window focus when using shell.openExternal. #​44408 (Also in 33, 34)
  • Fixed file preview window reappearing when calling win.closeFilePreview twice on macOS. #​45664 (Also in 32, 33, 34)
  • Fixed issue where 'contextmenu' event is emitted twice on macOS. #​44978 (Also in 34)
  • Fixed issue with missing index arg for webContents.canGoToOffset. #​44989 (Also in 32, 33, 34)
  • Fixed race condition in which WebContents appears as white screen on VDI machines without hardware acceleration capabilities. #​44318 (Also in 32, 33, 34)
  • Fixed regression with dynamic dependency on libgdk_pixbuf. #​44423 (Also in 32, 33, 34)
  • Fixed segfault when moving WebContentsView between BrowserWindows. #​44599 (Also in 31, 32, 33, 34)
  • Fixed the path for a needed library used for mksnapshot. #​45546 (Also in 32, 33, 34)
  • Fixed theme does not work in DevTools. #​44114 (Also in 32, 33, 34)
  • Fixed update file extension bug. #​44296 (Also in 33, 34)
  • Fixed web worker scripts failing to load for chrome extensions. #​45708 (Also in 32, 33, 34)
  • Return 0 exit code for normal termination of the utility process. #​44726 (Also in 32, 33, 34)
  • The avoidClosingConnections option for session.clearData now properly defaults to false when the dataTypes option is not set. #​45187 (Also in 33, 34)
Other Changes
  • Added more helpful logging if Node.js fails to initialize. #​45317
  • Backported fix for 3872580,383070811. #​45496
  • Fixed all -Wunsafe-buffer-usage Clang warnings and enabled the compiler warning in new builds. #​44056
  • Fixed an issue where a deprecation warning was being incorrectly emitted for frameless windows on macOS. #​44728 (Also in 33, 34)
Documentation
Notices
End of Support for 32.x.y

Electron 32.x.y has reached end-of-support as per the project's support policy. Developers and applications are encouraged to upgrade to a newer version of Electron.

electron-userland/electron-builder (electron-builder)

v26.0.12

Compare Source

Patch Changes

v26.0.11

Compare Source

Patch Changes

v26.0.10

Compare Source

Patch Changes

v26.0.9

Compare Source

Patch Changes

v26.0.8

Compare Source

Patch Changes

v26.0.7

Compare Source

Patch Changes
  • Updated dependencies [c12f86f2, 3fe27d77]:
    • builder-util@26.0.7
    • app-builder-lib@26.0.7
    • dmg-builder@26.0.7

v26.0.6

Compare Source

Patch Changes
  • Updated dependencies [7fc78460, 0f2c9637]:
    • app-builder-lib@26.0.6
    • dmg-builder@26.0.6

v26.0.5

Compare Source

Patch Changes
  • Updated dependencies [53ee6c6c]:
    • app-builder-lib@26.0.5
    • dmg-builder@26.0.5

v26.0.4

Compare Source

Patch Changes
  • Updated dependencies [8b059ad3]:
    • app-builder-lib@26.0.4
    • builder-util@26.0.4
    • dmg-builder@26.0.4

v26.0.3

Compare Source

Patch Changes
  • Updated dependencies [27b2ba81, 6261c9a0]:
    • app-builder-lib@26.0.3
    • dmg-builder@26.0.3

v26.0.2

Compare Source

Patch Changes

v26.0.1

Compare Source

Patch Changes

v26.0.0

Compare Source

Major Changes
  • #​8779 74355da9 Thanks @​mmaietta! - chore: upgrade buildpack-deps base image from focal to jammy. This also forces upgrading python->python3 package and wine-stable
Patch Changes
vuejs/eslint-plugin-vue (eslint-plugin-vue)

v10.0.0

Compare Source

💥 Breaking changes

  • #​2630 Changed Versioning Policy:
    • Allow minor versions of this plugin to enhance the checks for new features in Vue and Nuxt.
    • Allow updating deprecated/reserved HTML+SVG element ta

Configuration

📅 Schedule: Branch creation - "* 0-3 * * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-vikunja/vikunja/pull/460 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 3/31/2025 **Status:** ✅ Merged **Merged:** 3/31/2025 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `renovate/major-dev-dependencies` --- ### 📝 Commits (1) - [`d74de77`](https://github.com/go-vikunja/vikunja/commit/d74de77b153a4295ee4e4ff163632037426d05db) chore(deps): update dev-dependencies ### 📊 Changes **4 files changed** (+182 additions, -368 deletions) <details> <summary>View changed files</summary> 📝 `desktop/package.json` (+2 -2) 📝 `desktop/pnpm-lock.yaml` (+147 -289) 📝 `frontend/package.json` (+3 -3) 📝 `frontend/pnpm-lock.yaml` (+30 -74) </details> ### 📄 Description This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [electron](https://redirect.github.com/electron/electron) | [`34.4.1` -> `35.1.2`](https://renovatebot.com/diffs/npm/electron/34.4.1/35.1.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/electron/35.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/electron/35.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/electron/34.4.1/35.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/electron/34.4.1/35.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [electron-builder](https://redirect.github.com/electron-userland/electron-builder) ([source](https://redirect.github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder)) | [`25.1.8` -> `26.0.12`](https://renovatebot.com/diffs/npm/electron-builder/25.1.8/26.0.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/electron-builder/26.0.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/electron-builder/26.0.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/electron-builder/25.1.8/26.0.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/electron-builder/25.1.8/26.0.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [eslint-plugin-vue](https://eslint.vuejs.org) ([source](https://redirect.github.com/vuejs/eslint-plugin-vue)) | [`9.33.0` -> `10.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-vue/9.33.0/10.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-vue/10.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-vue/10.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-vue/9.33.0/10.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-vue/9.33.0/10.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [happy-dom](https://redirect.github.com/capricorn86/happy-dom) | [`16.8.1` -> `17.4.4`](https://renovatebot.com/diffs/npm/happy-dom/16.8.1/17.4.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/happy-dom/17.4.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/happy-dom/17.4.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/happy-dom/16.8.1/17.4.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/happy-dom/16.8.1/17.4.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [vite-plugin-pwa](https://redirect.github.com/vite-pwa/vite-plugin-pwa) | [`0.21.2` -> `1.0.0`](https://renovatebot.com/diffs/npm/vite-plugin-pwa/0.21.2/1.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite-plugin-pwa/1.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-plugin-pwa/1.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-plugin-pwa/0.21.2/1.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-plugin-pwa/0.21.2/1.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>electron/electron (electron)</summary> ### [`v35.1.2`](https://redirect.github.com/electron/electron/releases/tag/v35.1.2): electron v35.1.2 [Compare Source](https://redirect.github.com/electron/electron/compare/v35.1.1...v35.1.2) ### Release Notes for v35.1.2 #### Fixes - Fixed an issue where `navigationHistory.restore()` failed to restore the `userAgent` if it was overridden. [#&#8203;46300](https://redirect.github.com/electron/electron/pull/46300) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46298), [36](https://redirect.github.com/electron/electron/pull/46299))</span> #### Other Changes - Security: backported fix for CVE-2025-2783. [#&#8203;46303](https://redirect.github.com/electron/electron/pull/46303) - Updated Chromium to 134.0.6998.178. [#&#8203;46287](https://redirect.github.com/electron/electron/pull/46287) ### [`v35.1.1`](https://redirect.github.com/electron/electron/releases/tag/v35.1.1): electron v35.1.1 [Compare Source](https://redirect.github.com/electron/electron/compare/v35.1.0...v35.1.1) ### Release Notes for v35.1.1 #### Fixes - Fixed build failure when building with printing disabled. [#&#8203;46285](https://redirect.github.com/electron/electron/pull/46285) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46286), [36](https://redirect.github.com/electron/electron/pull/46284))</span> ### [`v35.1.0`](https://redirect.github.com/electron/electron/releases/tag/v35.1.0): electron v35.1.0 [Compare Source](https://redirect.github.com/electron/electron/compare/v35.0.3...v35.1.0) ### Release Notes for v35.1.0 #### Features - Added `ffmpeg.dll` to delay load configuration. [#&#8203;46172](https://redirect.github.com/electron/electron/pull/46172) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46174), [36](https://redirect.github.com/electron/electron/pull/46173))</span> #### Fixes - Fixed NODE_OPTIONS parsing for child processes on macOS. [#&#8203;46244](https://redirect.github.com/electron/electron/pull/46244) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46242), [36](https://redirect.github.com/electron/electron/pull/46243))</span> - Fixed a crash seen on Linux when calling `webContents.print()`. [#&#8203;46147](https://redirect.github.com/electron/electron/pull/46147) <span style="font-size:small;">(Also in [36](https://redirect.github.com/electron/electron/pull/46146))</span> - Fixed an issue where `system-context-menu` incorrectly fired for all regions in frameless windows. [#&#8203;46178](https://redirect.github.com/electron/electron/pull/46178) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/46025), [34](https://redirect.github.com/electron/electron/pull/46175), [36](https://redirect.github.com/electron/electron/pull/46002))</span> - Fixed an issue where `webContents.printToPDF()` didn't work as expected with cross-process subframes. [#&#8203;46257](https://redirect.github.com/electron/electron/pull/46257) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46258), [36](https://redirect.github.com/electron/electron/pull/46259))</span> - Fixed an issue where the resizing border didn't work as expected on Wayland windows. [#&#8203;46224](https://redirect.github.com/electron/electron/pull/46224) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/46222), [34](https://redirect.github.com/electron/electron/pull/46223), [36](https://redirect.github.com/electron/electron/pull/46225))</span> - Fixed an issue with token formatting for tokens received after calling `pushNotifications.registerForAPNSNotifications()`. [#&#8203;46148](https://redirect.github.com/electron/electron/pull/46148) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46150), [36](https://redirect.github.com/electron/electron/pull/46149))</span> - Fixed crash on Linux when PipeWire screenshare source selection is cancelled. [#&#8203;46234](https://redirect.github.com/electron/electron/pull/46234) <span style="font-size:small;">(Also in [36](https://redirect.github.com/electron/electron/pull/46235))</span> - Fixed crash with out-of-bounds string read when parsing NODE_OPTIONS. [#&#8203;46248](https://redirect.github.com/electron/electron/pull/46248) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46246), [36](https://redirect.github.com/electron/electron/pull/46247))</span> #### Other Changes - Improved performance of desktopCapturer.getSources when not requesting thumbnails on macOS. [#&#8203;46249](https://redirect.github.com/electron/electron/pull/46249) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46250), [36](https://redirect.github.com/electron/electron/pull/46251))</span> - Updated Chromium to 134.0.6998.165. [#&#8203;46196](https://redirect.github.com/electron/electron/pull/46196) ### [`v35.0.3`](https://redirect.github.com/electron/electron/releases/tag/v35.0.3): electron v35.0.3 [Compare Source](https://redirect.github.com/electron/electron/compare/v35.0.2...v35.0.3) ### Release Notes for v35.0.3 #### Fixes - Fixed an issue where snapped windows in Windows may sometimes be improperly restored. [#&#8203;46040](https://redirect.github.com/electron/electron/pull/46040) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/46038), [34](https://redirect.github.com/electron/electron/pull/46039), [36](https://redirect.github.com/electron/electron/pull/46041))</span> - Fixed incorrect titlebar in file save dialogs. [#&#8203;46074](https://redirect.github.com/electron/electron/pull/46074) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/46075), [34](https://redirect.github.com/electron/electron/pull/46076), [36](https://redirect.github.com/electron/electron/pull/46077))</span> #### Documentation - Documentation changes: [#&#8203;46102](https://redirect.github.com/electron/electron/pull/46102) ### [`v35.0.2`](https://redirect.github.com/electron/electron/releases/tag/v35.0.2): electron v35.0.2 [Compare Source](https://redirect.github.com/electron/electron/compare/v35.0.1...v35.0.2) ### Release Notes for v35.0.2 #### Fixes - Fixed an issue where Web Workers crashed on unhandled rejections. [#&#8203;46020](https://redirect.github.com/electron/electron/pull/46020) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46019), [36](https://redirect.github.com/electron/electron/pull/46021))</span> - Fixed an issue where packages could be mistakenly not found in asar. [#&#8203;46022](https://redirect.github.com/electron/electron/pull/46022) <span style="font-size:small;">(Also in [36](https://redirect.github.com/electron/electron/pull/46023))</span> - Fixed title changes to not occur while navigating within a page. [#&#8203;46035](https://redirect.github.com/electron/electron/pull/46035) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/46034), [36](https://redirect.github.com/electron/electron/pull/46036))</span> #### Other Changes - Fixed an issue where Electron could fail to load on some older Linux distributions. [#&#8203;45983](https://redirect.github.com/electron/electron/pull/45983) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45982), [36](https://redirect.github.com/electron/electron/pull/45984))</span> - Updated Chromium to 134.0.6998.88. [#&#8203;45972](https://redirect.github.com/electron/electron/pull/45972) ### [`v35.0.1`](https://redirect.github.com/electron/electron/releases/tag/v35.0.1): electron v35.0.1 [Compare Source](https://redirect.github.com/electron/electron/compare/v35.0.0...v35.0.1) ### Release Notes for v35.0.1 #### Fixes - Fixed an issue where Node.js OOM errors terminate the process directly without raising an OOM exception. [#&#8203;45911](https://redirect.github.com/electron/electron/pull/45911) <span style="font-size:small;">(Also in [36](https://redirect.github.com/electron/electron/pull/45912))</span> - Fixed an issue where `setContentProtection(true)` was reverted when a given window was hidden. [#&#8203;45889](https://redirect.github.com/electron/electron/pull/45889) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45890))</span> - Fixed invalid memory access in pdf viewer which lead to random crashes. [#&#8203;45879](https://redirect.github.com/electron/electron/pull/45879) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45880))</span> - Improved webContents loading time when resolving fonts for uncommon scripts. [#&#8203;45918](https://redirect.github.com/electron/electron/pull/45918) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45917), [36](https://redirect.github.com/electron/electron/pull/45919))</span> #### Other Changes - Backported fix for [`4010597`](https://redirect.github.com/electron/electron/commit/401059730). [#&#8203;45938](https://redirect.github.com/electron/electron/pull/45938) - Backported fix for [`4010597`](https://redirect.github.com/electron/electron/commit/401059730). [#&#8203;45943](https://redirect.github.com/electron/electron/pull/45943) ### [`v35.0.0`](https://redirect.github.com/electron/electron/releases/tag/v35.0.0): electron v35.0.0 [Compare Source](https://redirect.github.com/electron/electron/compare/v34.4.1...v35.0.0) ##### Release Notes for v35.0.0 ##### Stack Upgrades - Chromium `134.0.6998.44` - [New in 134](https://developer.chrome.com/blog/new-in-chrome-134/) - [New in 133](https://developer.chrome.com/blog/new-in-chrome-133/) - Node `22.14.0` - [Node 22.14.0 blog post](https://nodejs.org/en/blog/release/v22.14.0/) - V8 `13.4` ##### Breaking Changes - Added excludeUrls to webRequest filter and deprecated the use of empty arrays in urls property. [#&#8203;45678](https://redirect.github.com/electron/electron/pull/45678) - Added `fromVersionID` on `ServiceWorkers` to get an instance of `ServiceWorkerMain`. [#&#8203;45341](https://redirect.github.com/electron/electron/pull/45341) - Deprecated `getPreloads` and `setPreloads` on `Session`. [#&#8203;45329](https://redirect.github.com/electron/electron/pull/45329) - Fixed file chooser dialogs for flaptak applications. [#&#8203;44426](https://redirect.github.com/electron/electron/pull/44426) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/44681))</span> - Moved 'console-message' arguments into event object. [#&#8203;43617](https://redirect.github.com/electron/electron/pull/43617) - The `systemPreferences.isAeroGlassEnabled()` API has been deprecated and will be removed without replacement. [#&#8203;45554](https://redirect.github.com/electron/electron/pull/45554) ##### 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()`, and `session.clearSharedDictionaryCacheForIsolationKey(options)`. [#&#8203;44750](https://redirect.github.com/electron/electron/pull/44750) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/44951), [34](https://redirect.github.com/electron/electron/pull/44950))</span> - Added `NSPrefersDisplaySafeAreaCompatibilityMode` = `false` to Info.plist to remove "Scale to fit below built-in camera." from app options. [#&#8203;45357](https://redirect.github.com/electron/electron/pull/45357) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45470), [34](https://redirect.github.com/electron/electron/pull/45469))</span> - Added `ServiceWorkerMain` class to interact with service workers in the main process. [#&#8203;45341](https://redirect.github.com/electron/electron/pull/45341) - Added `running-status-changed` event on `ServiceWorkers` to indicate when a service worker's running status has changed. - Added `startWorkerForScope` on `ServiceWorkers` to start a worker that may have been previously stopped. - Added `WebFrameMain.collectJavaScriptCallStack()` for accessing the JavaScript call stack of unresponsive renderers. [#&#8203;44204](https://redirect.github.com/electron/electron/pull/44204) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/44937), [34](https://redirect.github.com/electron/electron/pull/44938))</span> - Added `contextBridge.executeInMainWorld` to safely execute code across world boundaries. [#&#8203;45330](https://redirect.github.com/electron/electron/pull/45330) - Added `frame` to 'console-message' event. [#&#8203;43617](https://redirect.github.com/electron/electron/pull/43617) - Added `query-session-end` event and improved `session-end` events on Windows. [#&#8203;44598](https://redirect.github.com/electron/electron/pull/44598) - Added `view.getVisible()`. [#&#8203;45409](https://redirect.github.com/electron/electron/pull/45409) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45410))</span> - Added `webContents.navigationHistory.restore(index, entries)` API that allows restoration of navigation history. [#&#8203;45583](https://redirect.github.com/electron/electron/pull/45583) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45584))</span> - Added optional animation parameter to BrowserWindow.setVibrancy. [#&#8203;35987](https://redirect.github.com/electron/electron/pull/35987) - Added permission support for `document.executeCommand("paste")`. [#&#8203;45471](https://redirect.github.com/electron/electron/pull/45471) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45473), [34](https://redirect.github.com/electron/electron/pull/45472))</span> - Added support for `roundedCorners` BrowserWindow constructor option on Windows. [#&#8203;45740](https://redirect.github.com/electron/electron/pull/45740) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45739))</span> - Added support for service worker preload scripts. [#&#8203;45408](https://redirect.github.com/electron/electron/pull/45408) - Support Portal's globalShortcuts. Electron must be run with --enable-features=GlobalShortcutsPortal in order to have the feature working. [#&#8203;45297](https://redirect.github.com/electron/electron/pull/45297) ##### Improvements - Performance improvements when processing microtasks. [#&#8203;44439](https://redirect.github.com/electron/electron/pull/44439) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44472), [33](https://redirect.github.com/electron/electron/pull/44473), [34](https://redirect.github.com/electron/electron/pull/44471))</span> - Redesigned preload script APIs by introducing `registerPreloadScript`, `unregisterPreloadScript`, `getPreloadScripts` on `Session`.[#&#8203;45329](https://redirect.github.com/electron/electron/pull/45329) ##### Removed/Deprecated - Removed 240 FPS limit when use shared texture OSR. [#&#8203;45781](https://redirect.github.com/electron/electron/pull/45781) ##### Fixes - Fixed `webContents.print()` after switch to OOP printing on macOS and Linux. [#&#8203;45285](https://redirect.github.com/electron/electron/pull/45285) - Fixed an issue where the renderer process crashed when loading about:blank in subframes. [#&#8203;45758](https://redirect.github.com/electron/electron/pull/45758) - Fixed broken OOP `window.print()` on macOS/Linux. [#&#8203;45259](https://redirect.github.com/electron/electron/pull/45259) - Fixed desktopCapturer.getSources not returning electron windows on Windows. [#&#8203;45000](https://redirect.github.com/electron/electron/pull/45000) - Fixed spellcheck suggestions not correctly populating on Windows. [#&#8203;45763](https://redirect.github.com/electron/electron/pull/45763) - Optimized `webFrame.getZoomLevel` and `webFrame.getZoomFactor` APIs. [#&#8203;45557](https://redirect.github.com/electron/electron/pull/45557) - Re-enables the MacWebContentsOcclusion feature flag for Mac, with plans to make it enabled by default in a future release. [#&#8203;45801](https://redirect.github.com/electron/electron/pull/45801) ##### Also in earlier versions... - Addressed two possible crashes in the File System Access API. [#&#8203;45261](https://redirect.github.com/electron/electron/pull/45261) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45260))</span> - Backported fix for a upstream bug that cause Offscreen Rendering to stutter. [#&#8203;45660](https://redirect.github.com/electron/electron/pull/45660) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/45657), [33](https://redirect.github.com/electron/electron/pull/45658), [34](https://redirect.github.com/electron/electron/pull/45659))</span> - Fixed WebFrameMain crash related to accessing speculative frames that have been destroyed. [#&#8203;45686](https://redirect.github.com/electron/electron/pull/45686) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45688), [34](https://redirect.github.com/electron/electron/pull/45687))</span> - Fixed `chrome.i18n` extension API being unavailable in service workers. [#&#8203;45031](https://redirect.github.com/electron/electron/pull/45031) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/45035), [32](https://redirect.github.com/electron/electron/pull/45038), [33](https://redirect.github.com/electron/electron/pull/45037), [34](https://redirect.github.com/electron/electron/pull/45036))</span> - Fixed `trace-startup` not working on macOS. [#&#8203;44257](https://redirect.github.com/electron/electron/pull/44257) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44292), [33](https://redirect.github.com/electron/electron/pull/44276), [34](https://redirect.github.com/electron/electron/pull/44275))</span> - Fixed `v8.setHeapSnapshotNearHeapLimit` api in main and utility process, along with support for `--diagnostic-dir` Node.js cli flag to specify the directory to save the heap snapshots. [#&#8203;45632](https://redirect.github.com/electron/electron/pull/45632) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45645), [34](https://redirect.github.com/electron/electron/pull/45644))</span> - Fixed a bug where the default path didn't always correctly fill the Name field in KDialogs on Linux. [#&#8203;45420](https://redirect.github.com/electron/electron/pull/45420) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45419))</span> - Fixed a crash that could occur in OSR on window close. [#&#8203;45630](https://redirect.github.com/electron/electron/pull/45630) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45629))</span> - Fixed a crash that could occur when calling `shell.readShortcutLink` on Windows. [#&#8203;44784](https://redirect.github.com/electron/electron/pull/44784) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/44803), [34](https://redirect.github.com/electron/electron/pull/44804))</span> - Fixed a crash when calling `shell.readShortcutLink` caused by `PKEY_AppUserModel_ToastActivatorCLSID` sometimes being represented by a string uuid. [#&#8203;45348](https://redirect.github.com/electron/electron/pull/45348) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45349), [34](https://redirect.github.com/electron/electron/pull/45350))</span> - Fixed a potential crash in `chrome.tabs.update()`. [#&#8203;45302](https://redirect.github.com/electron/electron/pull/45302) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45303), [34](https://redirect.github.com/electron/electron/pull/45304))</span> - Fixed a potential crash when calling legacy `getUserMedia` with an invalid `chromeMediaSourceId`. [#&#8203;45755](https://redirect.github.com/electron/electron/pull/45755) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45756))</span> - Fixed a potential issues permissions in the Pointer Lock API after focus loss and regain. [#&#8203;45628](https://redirect.github.com/electron/electron/pull/45628) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45627))</span> - Fixed an issue where RTL tooltips could be incorrect when using WCO on Windows. [#&#8203;45425](https://redirect.github.com/electron/electron/pull/45425) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45424), [34](https://redirect.github.com/electron/electron/pull/45426))</span> - Fixed an issue where Windows Control Overlay didn't work with some window configurations. [#&#8203;45477](https://redirect.github.com/electron/electron/pull/45477) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45476), [34](https://redirect.github.com/electron/electron/pull/45478))</span> - Fixed an issue where `EventSource` was `undefined` in both renderer and worker processes when Node.js integration was enabled. [#&#8203;44475](https://redirect.github.com/electron/electron/pull/44475) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44497), [33](https://redirect.github.com/electron/electron/pull/44496), [34](https://redirect.github.com/electron/electron/pull/44495))</span> - Fixed an issue where `WebContentsView`s were being improperly removed. [#&#8203;44656](https://redirect.github.com/electron/electron/pull/44656) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/44673), [32](https://redirect.github.com/electron/electron/pull/44672), [33](https://redirect.github.com/electron/electron/pull/44671), [34](https://redirect.github.com/electron/electron/pull/44670))</span> - Fixed an issue where `contextmenu` events wouldn't be correctly dispatched in draggable regions on Linux. [#&#8203;45841](https://redirect.github.com/electron/electron/pull/45841) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45840))</span> - Fixed an issue where `resize` wasn't being emitted for single-pixel resizes on Windows. [#&#8203;44700](https://redirect.github.com/electron/electron/pull/44700) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44724), [33](https://redirect.github.com/electron/electron/pull/44723), [34](https://redirect.github.com/electron/electron/pull/44722))</span> - Fixed an issue where a `utilityProcess` pid would not be `undefined` after exit. [#&#8203;44677](https://redirect.github.com/electron/electron/pull/44677) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44693), [33](https://redirect.github.com/electron/electron/pull/44694), [34](https://redirect.github.com/electron/electron/pull/44695))</span> - Fixed an issue where buttons shown under the Window Controls Overlay API were missing tooltips. [#&#8203;44721](https://redirect.github.com/electron/electron/pull/44721) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44758), [33](https://redirect.github.com/electron/electron/pull/44757), [34](https://redirect.github.com/electron/electron/pull/44759))</span> - Fixed an issue where closing a window after printing on Linux triggered a crash. [#&#8203;44246](https://redirect.github.com/electron/electron/pull/44246) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/44283), [32](https://redirect.github.com/electron/electron/pull/44282), [33](https://redirect.github.com/electron/electron/pull/44285), [34](https://redirect.github.com/electron/electron/pull/44284))</span> - Fixed an issue where drag-dropping two directories would cause `getAsFileSystemHandle` to never resolve. [#&#8203;45256](https://redirect.github.com/electron/electron/pull/45256) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45257), [34](https://redirect.github.com/electron/electron/pull/45258))</span> - Fixed an issue where print scaling could be too small during silent print. [#&#8203;45262](https://redirect.github.com/electron/electron/pull/45262) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45283))</span> - Fixed an issue where selection of multiple directories with the `dialog` module didn't work on Linux. [#&#8203;45394](https://redirect.github.com/electron/electron/pull/45394) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45395))</span> - Fixed an issue where the `exit` event could be emitted twice from the `utilityProcess`. [#&#8203;44243](https://redirect.github.com/electron/electron/pull/44243) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/44267), [32](https://redirect.github.com/electron/electron/pull/44268), [33](https://redirect.github.com/electron/electron/pull/44266), [34](https://redirect.github.com/electron/electron/pull/44265))</span> - Fixed an issue where the webContents `context-menu` event was not emitted when using `-webkit-app-region: drag`. [#&#8203;44761](https://redirect.github.com/electron/electron/pull/44761) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44798), [33](https://redirect.github.com/electron/electron/pull/44800), [34](https://redirect.github.com/electron/electron/pull/44799))</span> - Fixed an issue where the windows control overlay was unexpectedly visible in fullscreen on Linux. [#&#8203;44621](https://redirect.github.com/electron/electron/pull/44621) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/44643), [32](https://redirect.github.com/electron/electron/pull/44642), [33](https://redirect.github.com/electron/electron/pull/44640), [34](https://redirect.github.com/electron/electron/pull/44641))</span> - Fixed an issue where windows on Windows with `backgroundMaterial` lost effect on maximization. [#&#8203;45525](https://redirect.github.com/electron/electron/pull/45525) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45526))</span> - Fixed an possible crash when using draggable regions and BaseWindows to get the `context-menu` event. [#&#8203;44940](https://redirect.github.com/electron/electron/pull/44940) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44954), [33](https://redirect.github.com/electron/electron/pull/44953), [34](https://redirect.github.com/electron/electron/pull/44952))</span> - Fixed build failure when the PDF viewer is disabled. [#&#8203;44960](https://redirect.github.com/electron/electron/pull/44960) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/44965), [34](https://redirect.github.com/electron/electron/pull/44964))</span> - Fixed calling setAlwaysOnTop on a hidden window which is then shown with showInactive on Linux under X11. [#&#8203;44078](https://redirect.github.com/electron/electron/pull/44078) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/44323), [32](https://redirect.github.com/electron/electron/pull/44325), [33](https://redirect.github.com/electron/electron/pull/44324), [34](https://redirect.github.com/electron/electron/pull/44322))</span> - Fixed crash in gin::wrappable::secondweakcallback. [#&#8203;45378](https://redirect.github.com/electron/electron/pull/45378) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45379), [34](https://redirect.github.com/electron/electron/pull/45376))</span> - Fixed crash in net api when utility process exits. [#&#8203;44574](https://redirect.github.com/electron/electron/pull/44574) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44730), [33](https://redirect.github.com/electron/electron/pull/44729), [34](https://redirect.github.com/electron/electron/pull/44731))</span> - Fixed crash on startup with asan build on macOS. [#&#8203;45569](https://redirect.github.com/electron/electron/pull/45569) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45568), [34](https://redirect.github.com/electron/electron/pull/45567))</span> - Fixed crash when accessing WebFrameMain frames and name attributes on destroyed frames. [#&#8203;45508](https://redirect.github.com/electron/electron/pull/45508) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45509), [34](https://redirect.github.com/electron/electron/pull/45510))</span> - Fixed crash when network process terminates while a net log is running. [#&#8203;44406](https://redirect.github.com/electron/electron/pull/44406) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/44421), [32](https://redirect.github.com/electron/electron/pull/44419), [33](https://redirect.github.com/electron/electron/pull/44420), [34](https://redirect.github.com/electron/electron/pull/44418))</span> - Fixed crash when rendering super menu accelerator on linux. [#&#8203;44341](https://redirect.github.com/electron/electron/pull/44341) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44623), [33](https://redirect.github.com/electron/electron/pull/44520), [34](https://redirect.github.com/electron/electron/pull/44346))</span> - Fixed custom spell checker getting stuck in infinite loop using 100% CPU. [#&#8203;45001](https://redirect.github.com/electron/electron/pull/45001) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/45022), [32](https://redirect.github.com/electron/electron/pull/45019), [33](https://redirect.github.com/electron/electron/pull/45021), [34](https://redirect.github.com/electron/electron/pull/45020))</span> - Fixed drag and drop icons not showing on Windows. [#&#8203;45777](https://redirect.github.com/electron/electron/pull/45777) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/45778))</span> - Fixed external window focus when using shell.openExternal. [#&#8203;44408](https://redirect.github.com/electron/electron/pull/44408) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/44468), [34](https://redirect.github.com/electron/electron/pull/44469))</span> - Fixed file preview window reappearing when calling `win.closeFilePreview` twice on macOS. [#&#8203;45664](https://redirect.github.com/electron/electron/pull/45664) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/45661), [33](https://redirect.github.com/electron/electron/pull/45663), [34](https://redirect.github.com/electron/electron/pull/45662))</span> - Fixed issue where 'contextmenu' event is emitted twice on macOS. [#&#8203;44978](https://redirect.github.com/electron/electron/pull/44978) <span style="font-size:small;">(Also in [34](https://redirect.github.com/electron/electron/pull/44997))</span> - Fixed issue with missing index arg for `webContents.canGoToOffset`. [#&#8203;44989](https://redirect.github.com/electron/electron/pull/44989) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/45007), [33](https://redirect.github.com/electron/electron/pull/45006), [34](https://redirect.github.com/electron/electron/pull/45008))</span> - Fixed race condition in which WebContents appears as white screen on VDI machines without hardware acceleration capabilities. [#&#8203;44318](https://redirect.github.com/electron/electron/pull/44318) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44351), [33](https://redirect.github.com/electron/electron/pull/44352), [34](https://redirect.github.com/electron/electron/pull/44350))</span> - Fixed regression with dynamic dependency on `libgdk_pixbuf`. [#&#8203;44423](https://redirect.github.com/electron/electron/pull/44423) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44437), [33](https://redirect.github.com/electron/electron/pull/44436), [34](https://redirect.github.com/electron/electron/pull/44438))</span> - Fixed segfault when moving WebContentsView between BrowserWindows. [#&#8203;44599](https://redirect.github.com/electron/electron/pull/44599) <span style="font-size:small;">(Also in [31](https://redirect.github.com/electron/electron/pull/44614), [32](https://redirect.github.com/electron/electron/pull/44615), [33](https://redirect.github.com/electron/electron/pull/44613), [34](https://redirect.github.com/electron/electron/pull/44612))</span> - Fixed the path for a needed library used for mksnapshot. [#&#8203;45546](https://redirect.github.com/electron/electron/pull/45546) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/45545), [33](https://redirect.github.com/electron/electron/pull/45547), [34](https://redirect.github.com/electron/electron/pull/45544))</span> - Fixed theme does not work in DevTools. [#&#8203;44114](https://redirect.github.com/electron/electron/pull/44114) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44639), [33](https://redirect.github.com/electron/electron/pull/44635), [34](https://redirect.github.com/electron/electron/pull/44636))</span> - Fixed update file extension bug. [#&#8203;44296](https://redirect.github.com/electron/electron/pull/44296) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/44771), [34](https://redirect.github.com/electron/electron/pull/44770))</span> - Fixed web worker scripts failing to load for chrome extensions. [#&#8203;45708](https://redirect.github.com/electron/electron/pull/45708) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/45709), [33](https://redirect.github.com/electron/electron/pull/45711), [34](https://redirect.github.com/electron/electron/pull/45710))</span> - Return 0 exit code for normal termination of the utility process. [#&#8203;44726](https://redirect.github.com/electron/electron/pull/44726) <span style="font-size:small;">(Also in [32](https://redirect.github.com/electron/electron/pull/44749), [33](https://redirect.github.com/electron/electron/pull/44732), [34](https://redirect.github.com/electron/electron/pull/44733))</span> - The `avoidClosingConnections` option for `session.clearData` now properly defaults to `false` when the `dataTypes` option is not set. [#&#8203;45187](https://redirect.github.com/electron/electron/pull/45187) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/45207), [34](https://redirect.github.com/electron/electron/pull/45208))</span> ##### Other Changes - Added more helpful logging if Node.js fails to initialize. [#&#8203;45317](https://redirect.github.com/electron/electron/pull/45317) - Backported fix for [`3872580`](https://redirect.github.com/electron/electron/commit/387258077),383070811. [#&#8203;45496](https://redirect.github.com/electron/electron/pull/45496) - Fixed all `-Wunsafe-buffer-usage` Clang warnings and enabled the compiler warning in new builds. [#&#8203;44056](https://redirect.github.com/electron/electron/pull/44056) - Fixed an issue where a deprecation warning was being incorrectly emitted for frameless windows on macOS. [#&#8203;44728](https://redirect.github.com/electron/electron/pull/44728) <span style="font-size:small;">(Also in [33](https://redirect.github.com/electron/electron/pull/44767), [34](https://redirect.github.com/electron/electron/pull/44768))</span> ##### Documentation - Documentation change - [#&#8203;44391](https://redirect.github.com/electron/electron/pull/44391) - [#&#8203;44851](https://redirect.github.com/electron/electron/pull/44851) - [#&#8203;45173](https://redirect.github.com/electron/electron/pull/45173) ##### Notices ##### End of Support for 32.x.y Electron 32.x.y has reached end-of-support as per the project's [support policy](https://www.electronjs.org/docs/latest/tutorial/electron-timelines#version-support-policy). Developers and applications are encouraged to upgrade to a newer version of Electron. </details> <details> <summary>electron-userland/electron-builder (electron-builder)</summary> ### [`v26.0.12`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#26012) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.11...v26.0.12) ##### Patch Changes - Updated dependencies \[[`2d25ec8c`](https://redirect.github.com/electron-userland/electron-builder/commit/2d25ec8ca9ff6dfc634323b7592335b0631f4e47), [`7ba4fea9`](https://redirect.github.com/electron-userland/electron-builder/commit/7ba4fea95825650f02749949632b351c75d3019a), [`81e0c472`](https://redirect.github.com/electron-userland/electron-builder/commit/81e0c472fe2691b716aba5428dedc5da1c57e773), [`f24a2ce0`](https://redirect.github.com/electron-userland/electron-builder/commit/f24a2ce05cfbc88b79c1d743d13c898d70be99df), [`ad151b9d`](https://redirect.github.com/electron-userland/electron-builder/commit/ad151b9dbefa746514dd15471e5ef8bf5eed1d9b)]: - app-builder-lib@26.0.12 - dmg-builder@26.0.12 ### [`v26.0.11`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#26011) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.10...v26.0.11) ##### Patch Changes - Updated dependencies \[[`14b96dfc`](https://redirect.github.com/electron-userland/electron-builder/commit/14b96dfcbb7e4fd114169c35b50932bf5777fcf1), [`53a81939`](https://redirect.github.com/electron-userland/electron-builder/commit/53a81939b8c46061027ab36d8f9114c35b250a7e), [`70d7c855`](https://redirect.github.com/electron-userland/electron-builder/commit/70d7c855360eb66b429f67a976709a52ce193a59), [`e1ea62b0`](https://redirect.github.com/electron-userland/electron-builder/commit/e1ea62b0029c4adca20196ef060948777caeac37)]: - app-builder-lib@26.0.11 - builder-util@26.0.11 - dmg-builder@26.0.11 ### [`v26.0.10`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#26010) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.9...v26.0.10) ##### Patch Changes - Updated dependencies \[[`3ce33edb`](https://redirect.github.com/electron-userland/electron-builder/commit/3ce33edbe0c809a8a3834577a8df41ba58ae9003), [`3caab3c4`](https://redirect.github.com/electron-userland/electron-builder/commit/3caab3c4226a73ab458ac5a315aff160c5500b94), [`8903c5df`](https://redirect.github.com/electron-userland/electron-builder/commit/8903c5df046b74411f3b1fa958cef9a5955d01ef)]: - app-builder-lib@26.0.10 - dmg-builder@26.0.10 ### [`v26.0.9`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2609) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.8...v26.0.9) ##### Patch Changes - Updated dependencies \[[`22da6442`](https://redirect.github.com/electron-userland/electron-builder/commit/22da64425182456eb4d1243138dde27c80d6adac), [`4cc475ed`](https://redirect.github.com/electron-userland/electron-builder/commit/4cc475ed214861b99075d4639c92686803420174), [`62029b08`](https://redirect.github.com/electron-userland/electron-builder/commit/62029b08c10a6b12d8ef30bf57ae61a877f297f4), [`67b6f71f`](https://redirect.github.com/electron-userland/electron-builder/commit/67b6f71f85798dba4ce51dfb2cd012e04cd391db), [`69184315`](https://redirect.github.com/electron-userland/electron-builder/commit/6918431560c6c4621e0dccf72b461872b74462ac)]: - app-builder-lib@26.0.9 - dmg-builder@26.0.9 ### [`v26.0.8`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2608) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.7...v26.0.8) ##### Patch Changes - Updated dependencies \[[`7f6c3fea`](https://redirect.github.com/electron-userland/electron-builder/commit/7f6c3fea6fea8cffa00a43413f5335097aca94b0), [`48c9f88b`](https://redirect.github.com/electron-userland/electron-builder/commit/48c9f88b185cbc4a52926e6e10791bf293ecda6f), [`7f6c3fea`](https://redirect.github.com/electron-userland/electron-builder/commit/7f6c3fea6fea8cffa00a43413f5335097aca94b0)]: - app-builder-lib@26.0.8 - dmg-builder@26.0.8 ### [`v26.0.7`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2607) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.6...v26.0.7) ##### Patch Changes - Updated dependencies \[[`c12f86f2`](https://redirect.github.com/electron-userland/electron-builder/commit/c12f86f2e254809e70d1f60d89cf9b7264278083), [`3fe27d77`](https://redirect.github.com/electron-userland/electron-builder/commit/3fe27d77587a05a7d568b3b21f1df8f0a1650c92)]: - builder-util@26.0.7 - app-builder-lib@26.0.7 - dmg-builder@26.0.7 ### [`v26.0.6`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2606) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.5...v26.0.6) ##### Patch Changes - Updated dependencies \[[`7fc78460`](https://redirect.github.com/electron-userland/electron-builder/commit/7fc784603d580fc6dc183e02118734ea4ffeb257), [`0f2c9637`](https://redirect.github.com/electron-userland/electron-builder/commit/0f2c96379143e3dde960ed45bb3e1b74449540f1)]: - app-builder-lib@26.0.6 - dmg-builder@26.0.6 ### [`v26.0.5`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2605) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.4...v26.0.5) ##### Patch Changes - Updated dependencies \[[`53ee6c6c`](https://redirect.github.com/electron-userland/electron-builder/commit/53ee6c6c498a4cc4e64d580c4ec6564137060eae)]: - app-builder-lib@26.0.5 - dmg-builder@26.0.5 ### [`v26.0.4`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2604) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.3...v26.0.4) ##### Patch Changes - Updated dependencies \[[`8b059ad3`](https://redirect.github.com/electron-userland/electron-builder/commit/8b059ad3baad440acb0994b2c52f22ea0f1d987f)]: - app-builder-lib@26.0.4 - builder-util@26.0.4 - dmg-builder@26.0.4 ### [`v26.0.3`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2603) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.2...v26.0.3) ##### Patch Changes - Updated dependencies \[[`27b2ba81`](https://redirect.github.com/electron-userland/electron-builder/commit/27b2ba8129f0e9ad102ca3120c7d7a0f9d29b8eb), [`6261c9a0`](https://redirect.github.com/electron-userland/electron-builder/commit/6261c9a038ecd73c55ac3909825d5d3d7fa43664)]: - app-builder-lib@26.0.3 - dmg-builder@26.0.3 ### [`v26.0.2`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2602) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.1...v26.0.2) ##### Patch Changes - Updated dependencies \[[`b3adf480`](https://redirect.github.com/electron-userland/electron-builder/commit/b3adf4800b4ed240bb21a6a0a6ccdd57670e5d26), [`f45a09ee`](https://redirect.github.com/electron-userland/electron-builder/commit/f45a09eeeb9d2fb5c4a45bd7bf3990c4acb3c538), [`f5af99ac`](https://redirect.github.com/electron-userland/electron-builder/commit/f5af99ac87ef585a7f7ba548d3fb92811f845ba3), [`44603f2f`](https://redirect.github.com/electron-userland/electron-builder/commit/44603f2f3cc0e00e1c2c2420c7d440d587f8feca)]: - app-builder-lib@26.0.2 - dmg-builder@26.0.2 ### [`v26.0.1`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#26012) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/v26.0.0...v26.0.1) ##### Patch Changes - Updated dependencies \[[`2d25ec8c`](https://redirect.github.com/electron-userland/electron-builder/commit/2d25ec8ca9ff6dfc634323b7592335b0631f4e47), [`7ba4fea9`](https://redirect.github.com/electron-userland/electron-builder/commit/7ba4fea95825650f02749949632b351c75d3019a), [`81e0c472`](https://redirect.github.com/electron-userland/electron-builder/commit/81e0c472fe2691b716aba5428dedc5da1c57e773), [`f24a2ce0`](https://redirect.github.com/electron-userland/electron-builder/commit/f24a2ce05cfbc88b79c1d743d13c898d70be99df), [`ad151b9d`](https://redirect.github.com/electron-userland/electron-builder/commit/ad151b9dbefa746514dd15471e5ef8bf5eed1d9b)]: - app-builder-lib@26.0.12 - dmg-builder@26.0.12 ### [`v26.0.0`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2600) [Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/electron-builder@25.1.8...v26.0.0) ##### Major Changes - [#&#8203;8779](https://redirect.github.com/electron-userland/electron-builder/pull/8779) [`74355da9`](https://redirect.github.com/electron-userland/electron-builder/commit/74355da9055113b243323cdc6bb800ce722be2df) Thanks [@&#8203;mmaietta](https://redirect.github.com/mmaietta)! - chore: upgrade buildpack-deps base image from `focal` to `jammy`. This also forces upgrading `python`->`python3` package and wine-stable ##### Patch Changes - [#&#8203;8596](https://redirect.github.com/electron-userland/electron-builder/pull/8596) [`e0b0e351`](https://redirect.github.com/electron-userland/electron-builder/commit/e0b0e351baecc29e08d9f7d90f4699150b229416) Thanks [@&#8203;mmaietta](https://redirect.github.com/mmaietta)! - chore: refactor files for publishing to electron-publish - [#&#8203;8717](https://redirect.github.com/electron-userland/electron-builder/pull/8717) [`9381513d`](https://redirect.github.com/electron-userland/electron-builder/commit/9381513df8c2888ebcd999283991bed64b7058e0) Thanks [@&#8203;beyondkmp](https://redirect.github.com/beyondkmp)! - fix(deps): update dependency eslint to v9.16.0 \[security] - Updated dependencies \[[`f4d40f91`](https://redirect.github.com/electron-userland/electron-builder/commit/f4d40f91f1511fc55cbef7c9e7edfddaf6ab67bc), [`d672b04b`](https://redirect.github.com/electron-userland/electron-builder/commit/d672b04b4746170c07bc39b7b049ab0c584e7a19), [`c4f54977`](https://redirect.github.com/electron-userland/electron-builder/commit/c4f54977045ad3f6f7637004f632c37bfb41e79a), [`633490cb`](https://redirect.github.com/electron-userland/electron-builder/commit/633490cb395c0af8027116b345500c58a7616964), [`f84a0831`](https://redirect.github.com/electron-userland/electron-builder/commit/f84a0831d1d02b782ad07d4f7feff79d96dd45ec), [`f123628c`](https://redirect.github.com/electron-userland/electron-builder/commit/f123628ce400b5e65d0e4f0966e5cc65a1f3b8a5), [`1fee87a2`](https://redirect.github.com/electron-userland/electron-builder/commit/1fee87a20e1bca88f185967ca540d60177e13653), [`45a402b9`](https://redirect.github.com/electron-userland/electron-builder/commit/45a402b9786bcb8e71bfc12c9498552f597653ec), [`a4505a37`](https://redirect.github.com/electron-userland/electron-builder/commit/a4505a3785c17fc1aaaeaa91ba2653787219d74a), [`e0b0e351`](https://redirect.github.com/electron-userland/electron-builder/commit/e0b0e351baecc29e08d9f7d90f4699150b229416), [`eacbbf59`](https://redirect.github.com/electron-userland/electron-builder/commit/eacbbf593f6ea01a92ffb41d8d28ee5e4e480ea1), [`796e1a07`](https://redirect.github.com/electron-userland/electron-builder/commit/796e1a072a2bbe97ced6f4be05325c704fc04b7f), [`2a3195d9`](https://redirect.github.com/electron-userland/electron-builder/commit/2a3195d99f42e9b4f70e5719525db046a327aeb7), [`ccbf0a5b`](https://redirect.github.com/electron-userland/electron-builder/commit/ccbf0a5be38e1d8e405ed9d2bc9f3b2755548182), [`6f0fb8e4`](https://redirect.github.com/electron-userland/electron-builder/commit/6f0fb8e44f035bcd6ff0d6f234b38c20fde066af), [`6a294c97`](https://redirect.github.com/electron-userland/electron-builder/commit/6a294c9725f30cf1b6151363a32b9d1395b0122e), [`6a6bed46`](https://redirect.github.com/electron-userland/electron-builder/commit/6a6bed46c428b45105ada071a9cb89b5d4f93d9e), [`e9eef0c1`](https://redirect.github.com/electron-userland/electron-builder/commit/e9eef0c1c7f73a5edfe3026f044c6278641077cb), [`e45fecf0`](https://redirect.github.com/electron-userland/electron-builder/commit/e45fecf04d1ba758ed524391a1fc161e5c57d305), [`88cc0b06`](https://redirect.github.com/electron-userland/electron-builder/commit/88cc0b06dba22139721fd1e04f6a1cf2d447edbd), [`3eab7143`](https://redirect.github.com/electron-userland/electron-builder/commit/3eab7143d74262caace81ea05e97617d07daf336), [`5a9141f6`](https://redirect.github.com/electron-userland/electron-builder/commit/5a9141f60ac6d51a4b839b73271274bef5c6ca70), [`c6d6b6e5`](https://redirect.github.com/electron-userland/electron-builder/commit/c6d6b6e57be2c042dc586ae13f1af38a8a19af41), [`c8484305`](https://redirect.github.com/electron-userland/electron-builder/commit/c84843053a8f9e0b6af14c6b2ed33c5f82d495b3), [`a5558e33`](https://redirect.github.com/electron-userland/electron-builder/commit/a5558e3380fdde4806c4c29694d4fe70fd11423a), [`6a9597b4`](https://redirect.github.com/electron-userland/electron-builder/commit/6a9597b4d739744fd9211fc07f55bb34211c7626), [`dfa35c32`](https://redirect.github.com/electron-userland/electron-builder/commit/dfa35c321f6e68c6a102ddc49aa64985fb11d396), [`667ab2f8`](https://redirect.github.com/electron-userland/electron-builder/commit/667ab2f8d5d635b5ab03cd5de06561403135a7f6), [`7268c2ee`](https://redirect.github.com/electron-userland/electron-builder/commit/7268c2eea3f4a5b5d4f88283585797ce5c41de1c), [`66334502`](https://redirect.github.com/electron-userland/electron-builder/commit/66334502a50d1decb15eb3ac3bdcd197b3721036), [`a0e635c1`](https://redirect.github.com/electron-userland/electron-builder/commit/a0e635c183633c291fd2e0a0e8c9a1c6b8e085a0), [`712a8bce`](https://redirect.github.com/electron-userland/electron-builder/commit/712a8bce56331cd89df270f182fa27bf365e985b), [`d4ea0d99`](https://redirect.github.com/electron-userland/electron-builder/commit/d4ea0d998d0fb3ea3a75ca8d39a69a2f3c710962), [`28006623`](https://redirect.github.com/electron-userland/electron-builder/commit/28006623a1a344007e283cdc65ce1a81f42a136d), [`4c394d54`](https://redirect.github.com/electron-userland/electron-builder/commit/4c394d54689f03bbca54a083c7e126d9c83e6ed7), [`9e11358f`](https://redirect.github.com/electron-userland/electron-builder/commit/9e11358fc28249675cd7ec4f7037408cc18dfa8a), [`645e2abd`](https://redirect.github.com/electron-userland/electron-builder/commit/645e2abd5ed604fe4f4d9475cf2cedf4fe78436c), [`215fc36b`](https://redirect.github.com/electron-userland/electron-builder/commit/215fc36b5e8d243ef5bc77d31eb8e30d0e8bca9d), [`a1ee0419`](https://redirect.github.com/electron-userland/electron-builder/commit/a1ee04191f12920585fea8fa648cd0c4b0ed0558), [`0dbe357a`](https://redirect.github.com/electron-userland/electron-builder/commit/0dbe357ac5b4f3c51d9a6e9d7bbf0b1f142b5746), [`1d7f87c1`](https://redirect.github.com/electron-userland/electron-builder/commit/1d7f87c1028fa94c9bb80c167bb1fb87cbc84817), [`ee2c6dc1`](https://redirect.github.com/electron-userland/electron-builder/commit/ee2c6dc133ed31fd82ad8fdf864651494c88fcf8), [`13f55a3e`](https://redirect.github.com/electron-userland/electron-builder/commit/13f55a3ef070d946f5d80dd412a557bd38c98424), [`b8185d48`](https://redirect.github.com/electron-userland/electron-builder/commit/b8185d48a75e65932196700e28bf71613dd141b4), [`8434e10d`](https://redirect.github.com/electron-userland/electron-builder/commit/8434e10dad0893ca11c5f3a17a70470065f96fa0), [`cdf18d9a`](https://redirect.github.com/electron-userland/electron-builder/commit/cdf18d9a0f65068e179e43152699c366c4c29467), [`ae9221d9`](https://redirect.github.com/electron-userland/electron-builder/commit/ae9221d947c2dedff7b655ddafceb9746f9f4460)]: - app-builder-lib@26.0.0 - builder-util@26.0.0 - dmg-builder@26.0.0 - builder-util-runtime@9.3.0 </details> <details> <summary>vuejs/eslint-plugin-vue (eslint-plugin-vue)</summary> ### [`v10.0.0`](https://redirect.github.com/vuejs/eslint-plugin-vue/releases/tag/v10.0.0) [Compare Source](https://redirect.github.com/vuejs/eslint-plugin-vue/compare/v9.33.0...v10.0.0) #### 💥 Breaking changes - [#&#8203;2630](https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2630) Changed Versioning Policy: - Allow minor versions of this plugin to enhance the checks for new features in Vue and Nuxt. - Allow updating deprecated/reserved HTML+SVG element ta </details> --- ### Configuration 📅 **Schedule**: Branch creation - "* 0-3 * * *" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/go-vikunja/vikunja). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-01 21:03:40 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vikunja#763