Skip to content

chore(deps): update dev-dependencies - #3727

Merged
kolaente merged 1 commit into
mainfrom
renovate/dev-dependencies
Sep 4, 2026
Merged

chore(deps): update dev-dependencies#3727
kolaente merged 1 commit into
mainfrom
renovate/dev-dependencies

Conversation

@renovate

@renovate renovate Bot commented Sep 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@typescript-eslint/eslint-plugin (source) 8.68.08.69.0 age confidence
@typescript-eslint/parser (source) 8.68.08.69.0 age confidence
electron 43.4.143.5.0 age confidence
postcss-preset-env (source) 11.5.011.5.1 age confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.69.0

Compare Source

🚀 Features
  • eslint-plugin: [no-misused-promises] add flagUnions option for checkConditionals (#​12603)
🩹 Fixes
  • eslint-plugin: [no-meaningless-void-operator] report void on non-call expressions (#​12727)
  • eslint-plugin: [unified-signatures] compare type parameters by constraint instead of name (#​12741)
  • eslint-plugin: [no-mixed-enums] use scope analysis instead of type checking for merged namespaces (#​12731)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.69.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

electron/electron (electron)

v43.5.0: electron v43.5.0

Compare Source

Release Notes for v43.5.0

Fixes

  • Fixed DevTools device metrics overrides persisting indefinitely when a remote debugging client disconnected without clearing them. #​52946 (Also in 42, 44)
  • Fixed BrowserWindow.unmaximize() and restore() having no effect on Wayland when the window was maximized immediately after creation. #​53125 (Also in 42, 44)
  • Fixed Uncaught illegal access errors and possible renderer crashes after closing a same-process child window or removing an iframe with nodeIntegrationInSubFrames enabled. #​53041 (Also in 42, 44)
  • Fixed fs.constants.O_DIRECTORY, O_NOFOLLOW and O_DIRECT holding x86 values on Linux arm64 and armv7l, which made opening a directory fail with EINVAL, and made require('trace_events') behave the same on cross-compiled builds as on native ones. #​53319 (Also in 42, 44, 45)
  • Fixed webContents.executeJavaScriptInIsolatedWorld resolving with undefined when worldId was not an integer. #​53237 (Also in 44)
  • Fixed webContents.print() honoring printBackground, duplexMode, and printer default duplex settings. #​53160 (Also in 42, 44)
  • Fixed a crash on Linux when the D-Bus session bus disconnected while the app was running, such as at logout or when dbus is restarted. #​53095 (Also in 42, 44)
  • Fixed a crash on Windows when V8 posted a delayed worker task during shutdown. #​53013 (Also in 42, 44)
  • Fixed a crash on macOS when a WebAuthn Touch ID prompt was requested while no locale resources were loaded. #​53195 (Also in 44)
  • Fixed a crash on macOS when a notification's icon could not be attached; the notification is now shown without the icon. #​53147 (Also in 42, 44)
  • Fixed a crash when calling node:wasi functions in optimized code. #​53265 (Also in 42, 44, 45)
  • Fixed a crash when calling utilityProcess.postMessage() after the utility process had exited. #​53301 (Also in 44, 45)
  • Fixed a regression where a window created with a custom title can show an empty title after using back/forward navigation. #​53219 (Also in 42, 44)
  • Fixed a renderer crash when a page calls SpeechRecognition.available() or SpeechRecognition.install() with processLocally. #​53015 (Also in 42, 44)
  • Fixed an issue where pages loaded in a detached WebContentsView wouldn't see the correct window size. #​53152 (Also in 42, 44)
  • Fixed crashes in sharedTexture, service-worker ipcRenderer and utilityProcess.fork() caused by object lifetime bugs. #​53278 (Also in 44, 45)
  • Fixed crashes in the main process when a webRequest.onBeforeRequest listener redirected a CORS preflight request, and when calling net.fetch() with a webRequest-permission extension loaded. #​53304 (Also in 44, 45)
  • Fixed crashes when a webContents or parent window is destroyed while other APIs still reference it. #​53288 (Also in 44, 45)
  • Fixed crashes when certain app event handlers call back into Electron synchronously. #​53276 (Also in 44, 45)
  • Fixed document title updates when using back/forward navigation using the same document without utilizing browserWindow.setTitle(). #​53023 (Also in 42, 44)
  • Fixed region-qualified --lang values such as de-DE loading no locale resources on macOS, which left localized strings empty and could crash WebAuthn Touch ID prompts. #​53186 (Also in 42, 44)
  • Fixed spellcheck not initializing on Linux when the dictionary was already cached from a previous run. #​52717 (Also in 44)
  • Fixed the GPU process being terminated in AppX/MSIX packaged apps on Windows when WebGPU fell back to SwiftShader. #​53197 (Also in 42, 44)
  • Fixed the primary instance being killed or receiving truncated arguments when a second instance passed a very long command line or large additionalData to app.requestSingleInstanceLock(). #​53156 (Also in 42, 44)
  • Fixed the tray icon not appearing on GNOME (and disappearing entirely on Wayland) since 43.4.1. #​53215
  • Fixed utility process crashes at exit on Windows 11 24H2 and later. #​53092 (Also in 42, 44)
  • Fixed windows native message boxes being dismissed by other applications using invalid button ID. #​53155 (Also in 44)

Other Changes

  • Backported fixes from upstream ANGLE, Chromium, Dawn, Skia and V8. #​52969
  • Backported fixes from upstream ANGLE, Chromium, Dawn, V8 and WebRTC. #​53190
  • Backported fixes from upstream Chromium and V8. #​53055
  • Fixed a 1-in-200 chance per renderer process on Windows of scripts on the first page load being compiled without their V8 code cache. #​52943 (Also in 42, 44)
  • Fixed a stall of tens of milliseconds while creating the first BrowserWindow on Linux.
    • Improved the performance of file lookups inside ASAR archives and of large files served from them to the renderer.
    • Improved the performance of calls through contextBridge-exposed APIs.
    • Reduced the main-thread cost of sending large values through ipcRenderer, ipcMain handlers and webContents.send. #​53018 (Also in 42, 44)
  • Improved application startup time on Linux by skipping GDK's OpenGL probe and loading FontConfig off the main thread during toolkit initialization. #​53108 (Also in 44)
  • Improved startup time of utilityProcess.fork(), child_process.fork() / ELECTRON_RUN_AS_NODE child processes and Node.js-enabled renderers. #​53135 (Also in 42, 44)
  • Linux arm64, Windows arm64 and macOS x64 builds now start the main process from the embedded Node.js startup snapshot like the other platforms, improving startup time. #​52881 (Also in 42, 44)
  • Page resources, fetch() calls and file:// loads in renderers no longer wait for the main process to be idle when no webRequest listeners or protocol interceptors are registered. #​53142 (Also in 42, 44)
  • Updated Chromium to 150.0.7871.250. #​52787
  • Updated Node.js to v24.19.0. #​52635
csstools/postcss-plugins (postcss-preset-env)

v11.5.1

Compare Source

August 31, 2026


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • 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.

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Sep 4, 2026
@github-actions github-actions Bot added area/desktop Electron desktop app area/frontend Frontend-only code or UI work area/internal-code Internal refactoring, cleanup, code-quality work labels Sep 4, 2026
@github-actions

github-actions Bot commented Sep 4, 2026

Copy link
Copy Markdown

📊 Dependency Size Changes

Warning

This PR adds 326.4 kB of new dependencies, which exceeds the threshold of 100 kB.

📦 Package 📏 Size
@typescript-eslint/types@8.69.0 220.3 kB
@csstools/css-color-parser@4.2.2 65 kB
@typescript-eslint/tsconfig-utils@8.69.0 32.1 kB
@typescript-eslint/eslint-plugin@8.68.0 → @typescript-eslint/eslint-plugin@8.69.0 6.6 kB
postcss-preset-env@11.5.0 → postcss-preset-env@11.5.1 -550 B
@typescript-eslint/typescript-estree@8.68.0 → @typescript-eslint/typescript-estree@8.69.0 428 B
@typescript-eslint/project-service@8.68.0 → @typescript-eslint/project-service@8.69.0 426 B
@typescript-eslint/scope-manager@8.68.0 → @typescript-eslint/scope-manager@8.69.0 424 B
@typescript-eslint/visitor-keys@8.68.0 → @typescript-eslint/visitor-keys@8.69.0 423 B
@typescript-eslint/type-utils@8.68.0 → @typescript-eslint/type-utils@8.69.0 421 B
@typescript-eslint/parser@8.68.0 → @typescript-eslint/parser@8.69.0 417 B
@typescript-eslint/utils@8.68.0 → @typescript-eslint/utils@8.69.0 416 B
@csstools/postcss-color-function-display-p3-linear@2.0.9 → @csstools/postcss-color-function-display-p3-linear@2.0.10 2 B
@csstools/postcss-color-function@5.0.9 → @csstools/postcss-color-function@5.0.10 2 B
@csstools/postcss-color-mix-function@4.0.9 → @csstools/postcss-color-mix-function@4.0.10 2 B
@csstools/postcss-color-mix-variadic-function-arguments@2.0.9 → @csstools/postcss-color-mix-variadic-function-arguments@2.0.10 2 B
@csstools/postcss-contrast-color-function@3.0.9 → @csstools/postcss-contrast-color-function@3.0.10 2 B
@csstools/postcss-gamut-mapping@3.0.9 → @csstools/postcss-gamut-mapping@3.0.10 2 B
@csstools/postcss-gradients-interpolation-method@6.0.9 → @csstools/postcss-gradients-interpolation-method@6.0.10 2 B
@csstools/postcss-hwb-function@5.0.9 → @csstools/postcss-hwb-function@5.0.10 2 B
@csstools/postcss-oklab-function@5.0.9 → @csstools/postcss-oklab-function@5.0.10 2 B
@csstools/postcss-relative-color-syntax@4.0.9 → @csstools/postcss-relative-color-syntax@4.0.10 2 B
postcss-color-functional-notation@8.0.9 → postcss-color-functional-notation@8.0.10 2 B
postcss-lab-function@8.0.9 → postcss-lab-function@8.0.10 2 B
@csstools/postcss-alpha-function@2.0.10 → @csstools/postcss-alpha-function@2.0.11 0 B

Total size change: 326.4 kB

@github-actions

github-actions Bot commented Sep 4, 2026

Copy link
Copy Markdown

Preview Deployment

Preview deployments for this PR are available at:

URL Tag Commit
https://pr-3727.preview.vikunja.dev ghcr.io/go-vikunja/vikunja:pr-3727 latest
https://sha-19133b704c5cdf73530b08375cce7be16fce52a8.preview.vikunja.dev ghcr.io/go-vikunja/vikunja:sha-19133b704c5cdf73530b08375cce7be16fce52a8 19133b7

The preview environment will start automatically on first visit. Subsequent pushes to this PR will update the pr-3727 image — the preview picks up the new version on restart. The per-commit URLs point to a specific version and will not change.

Run locally with Docker
docker pull ghcr.io/go-vikunja/vikunja:pr-3727
docker run -p 3456:3456 ghcr.io/go-vikunja/vikunja:pr-3727

Last updated for commit 19133b7

@kolaente
kolaente merged commit 73e13ee into main Sep 4, 2026
47 checks passed
@kolaente
kolaente deleted the renovate/dev-dependencies branch September 4, 2026 07:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/desktop Electron desktop app area/frontend Frontend-only code or UI work area/internal-code Internal refactoring, cleanup, code-quality work dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant