Skip to content

⬆️ Bump the minor-updates group with 13 updates - #1473

Merged
Schneegans merged 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-updates-6217fe09c3
Aug 12, 2026
Merged

⬆️ Bump the minor-updates group with 13 updates#1473
Schneegans merged 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-updates-6217fe09c3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-updates group with 13 updates:

Package From To
@types/semver 7.7.1 7.8.0
electron 43.2.0 43.3.0
globals 17.8.0 17.9.0
i18next-cli 1.67.3 1.67.7
immer 11.1.15 11.1.16
material-symbols 0.45.9 0.45.10
mocha 11.7.6 11.8.0
node-addon-api 8.9.0 8.9.1
simple-icons-font 16.27.1 16.28.0
swiper 14.0.7 14.1.0
tsx 4.23.1 4.23.10
typescript-eslint 8.65.0 8.66.0
ws 8.21.1 8.21.2

Updates @types/semver from 7.7.1 to 7.8.0

Commits

Updates electron from 43.2.0 to 43.3.0

Release notes

Sourced from electron's releases.

electron v43.3.0

Release Notes for v43.3.0

Features

  • Added available to process.getSystemMemoryInfo() on Linux, exposing proc/meminfo MemAvailable. #52379 (Also in 42, 44)

Fixes

  • Fixed BrowserWindow size corruption on Windows when created with explicit x/y on a secondary monitor whose DPI differs from the primary. #52501 (Also in 42, 44)
  • Fixed Dirent.parentPath being undefined for fs.readdir, fs.readdirSync, fs.glob, and fs.globSync with withFileTypes: true inside asar archives. #52505 (Also in 42, 44)
  • Fixed dialog.showOpenDialog/dialog.showSaveDialog opening at an unusable location on Linux when defaultPath is a bare filename without a directory. #52401 (Also in 44)
  • Fixed a UAF with protocol.registerStreamProtocol when an error is emitted during a read. #52514 (Also in 41, 42, 44)
  • Fixed a crash that could occur when closing DevTools while the host WebContents was being destroyed. #52510 (Also in 41, 42, 44)
  • Fixed a graphical glitch on Linux where thin borders appeared past the drop shadows on frameless windows when multiple windows were created. #52607 (Also in 44)
  • Fixed an issue where loading ICO files from ASAR archives on Windows left temporary icon files behind. #52478 (Also in 42, 44)
  • Fixed an issue where some values passed into requestSingleInstanceLock could result in a crash. #52471 (Also in 44)

Other Changes

  • Fixed bindings for MV3 service workers. #52503
  • Improved the error message when an asar integrity check fails to name the entry that failed. #52622 (Also in 42, 44)
  • Updated Chromium to 150.0.7871.212. #52524
  • Updated Node.js to v24.18.1. #52552
Commits
  • 1aa21d2 chore: include the asar entry in integrity-check failure messages (#52622)
  • e94835e fix: remove shadow artifacts that appear when multiple windows are created on...
  • 3bbd302 build: update PGO profiles (#52596)
  • 8c0629a chore: bump node to v24.18.1 (43-x-y) (#52552)
  • e4976ed ci: trigger PGO generation when a chromium roll lands on a release branch (#5...
  • 75c1164 chore: remove dead code in autofill_popup_view.cc (#52549)
  • ad8aa54 chore: bump chromium to 150.0.7871.212 (43-x-y) (#52524)
  • b822de9 build: add extensions_renderer_generated_resources.pak (#52503)
  • 67e5bc4 ci: enable LSan on existing Linux ASan build job (#52527)
  • 815a207 fix: refactor to avoid UAF in NodeStreamLoader (#52514)
  • Additional commits viewable in compare view

Updates globals from 17.8.0 to 17.9.0

Release notes

Sourced from globals's releases.

v17.9.0

  • Update globals (2026-08-01) (#348) 5a958ed

sindresorhus/globals@v17.8.0...v17.9.0

Commits

Updates i18next-cli from 1.67.3 to 1.67.7

Changelog

Sourced from i18next-cli's changelog.

1.67.7

  • fix(instrument): skip module-scope strings instead of wrapping them in a t() call. A top-level config/registry literal (export const SECTIONS = [{ label: 'Appearance' }]) used to be rewritten to i18next.t(...) — evaluated once when the module is first imported, so it may run before i18next is initialized and never updates on language change. Such candidates are now left untouched and reported with a warning pointing at the hook alternative. Strings inside plain (non-component) functions are still instrumented with i18next.t() as before (#278).
  • fix(instrument): a generated import i18next from 'i18next' is no longer appended to the same line as a semicolon-terminated import (import { X } from "./x";import i18next from 'i18next'). The insertion point now moves past the end of the line, and a leading newline is added when the last import ends at EOF without one (#278).

1.67.6

  • fix(lint): a directory whose name matches the input globs (e.g. a folder called abc.tsx) no longer aborts the run with EISDIR: illegal operation on a directory, read. Source-file globs now pass nodir: true, which also covers the extractor and the instrumenter (#277).

1.67.5

  • fix(extract): correct line/column in plugin location metadata for files containing multi-byte characters (em dashes, accented letters, CJK, emoji). SWC reports AST spans as UTF-8 byte offsets, but the extractor treated them as JavaScript string indices, so every multi-byte character shifted all following locations. The span base was also computed by mixing a byte offset with a character index, which additionally skewed locations in files whose leading comments contain multi-byte characters — that part affected the linter and instrumenter too (#276).

1.67.4

  • fix(extract): resolve finite string-literal unions that reach a key through an interface- or object-typed function parameter. interface IProps { size: ChangeType } with function f({ size }: IProps) { return t(`some_${size}`) } now expands to one key per union member. Covers destructured props (including renamed and defaulted ones), member access on the parameter itself (t(`some_${props.size}`)), object type aliases (type Props = { size: 'x' | 'y' }) and inline type literals. Bindings are scoped to the function, so nothing leaks to same-named identifiers elsewhere (#210).
Commits

Updates immer from 11.1.15 to 11.1.16

Release notes

Sourced from immer's releases.

v11.1.16

11.1.16 (2026-08-05)

Bug Fixes

  • key inserted array indices by name in the array-methods plugin (e3df956)
Commits
  • d2c158f Merge pull request #1283 from Jaybhade/fix/array-methods-assigned-index-key
  • e3df956 fix: key inserted array indices by name in the array-methods plugin
  • See full diff in compare view

Updates material-symbols from 0.45.9 to 0.45.10

Commits

Updates mocha from 11.7.6 to 11.8.0

Release notes

Sourced from mocha's releases.

v11.8.0

11.8.0 (2026-08-02)

🌟 Features

  • add --fail-hook-affected-tests option to report skipped tests as failed (#5519) (#6052) (7830309)

🧹 Chores

v11.7.7

11.7.7 (2026-06-13)

🩹 Fixes

Changelog

Sourced from mocha's changelog.

11.8.0 (2026-08-02)

🌟 Features

  • add --fail-hook-affected-tests option to report skipped tests as failed (#5519) (#6052) (7830309)

🧹 Chores

11.7.7 (2026-06-13)

🩹 Fixes

Commits
  • 90c1bb3 chore(v11.x): release 11.8.0 (#6076)
  • 05aec43 chore(CI): bump Node from 22 to 24 in publish action (#6206)
  • 1f44d5f chore: change site title to Mocha 11, update index note (#6086)
  • 26deb23 chore: add modern Netlify to v11.x branch (#6082)
  • 7830309 feat: add --fail-hook-affected-tests option to report skipped tests as failed...
  • 41f2b95 chore(v11.x): release 11.7.7 (#6068)
  • 3477563 fix: surface ts-node compile errors (#6045)
  • See full diff in compare view

Updates node-addon-api from 8.9.0 to 8.9.1

Changelog

Sourced from node-addon-api's changelog.

8.9.1 (2026-07-31)

Bug Fixes

Commits

Updates simple-icons-font from 16.27.1 to 16.28.0

Release notes

Sourced from simple-icons-font's releases.

Release 16.28.0

See https://github.com/simple-icons/simple-icons/releases/tag/16.28.0

Commits

Updates swiper from 14.0.7 to 14.1.0

Release notes

Sourced from swiper's releases.

v14.1.0

Bug Fixes

  • core: keep module defaults when params come from another realm (4bb6caf)
  • core: make elementOffset viewport-relative again (1115f9e), closes #8209
  • types: preserve module options in breakpoints (d598495), closes #8207
Changelog

Sourced from swiper's changelog.

14.1.0 (2026-08-06)

Bug Fixes

  • core: keep module defaults when params come from another realm (4bb6caf)
  • core: make elementOffset viewport-relative again (1115f9e), closes #8209
  • types: preserve module options in breakpoints (d598495), closes #8207
Commits

Updates tsx from 4.23.1 to 4.23.10

Release notes

Sourced from tsx's releases.

v4.23.10

4.23.10 (2026-08-07)

Bug Fixes


This release is also available on:

v4.23.9

4.23.9 (2026-08-06)

Bug Fixes

  • map Node test locations (2f55884)
  • support data URLs in tsImport (b94f46f)

This release is also available on:

v4.23.8

4.23.8 (2026-08-05)

Bug Fixes

  • preserve package subpath resolution (be1315e)
  • preserve typeless ESM dependency exports (70dfc5e)

This release is also available on:

v4.23.7

4.23.7 (2026-08-05)

Bug Fixes

  • prevent tsImport cache collisions (4e5a138)

This release is also available on:

... (truncated)

Commits
  • ec1bcd5 fix: support nyc coverage discovery (#710)
  • b6e5b48 docs: clarify CommonJS default imports
  • 2f55884 fix: map Node test locations
  • de935d5 docs: document Node source-map stack formatting
  • b94f46f fix: support data URLs in tsImport
  • be1315e fix: preserve package subpath resolution
  • 5efba41 docs: organize transform backend research
  • 70dfc5e fix: preserve typeless ESM dependency exports
  • a74ee91 docs: document engineering principles
  • 4e5a138 fix: prevent tsImport cache collisions
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.65.0 to 8.66.0

Release notes

Sourced from typescript-eslint's releases.

v8.66.0

8.66.0 (2026-08-03)

🚀 Features

  • typescript-estree: handle import.defer() as ImportExpression (#12609)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-conversion] ignore shadowed built-ins (#12590)
  • eslint-plugin: [prefer-nullish-coalescing] handle shadowed Boolean calls (#12591)
  • eslint-plugin: [no-useless-default-assignment] don't report defaults used by other overloads (#12607)
  • eslint-plugin: [no-unnecessary-type-parameters] check MappedType key remapping (#12588)
  • eslint-plugin: [class-literal-property-style] preserve type annotations and don't drop decorators (#12617)
  • website: list onUnsupportedTypeScriptVersion in parser options (#12585)

❤️ Thank You

See GitHub Releases for more information.

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

Changelog

Sourced from typescript-eslint's changelog.

8.66.0 (2026-08-03)

This was a version bump only for typescript-eslint 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.

Commits

Updates ws from 8.21.1 to 8.21.2

Release notes

Sourced from ws's releases.

8.21.2

Bug fixes

  • Fixed a test for CITGM (2eb3be0b).
Commits
  • 787ebf2 [dist] 8.21.2
  • b4d62eb Revert "[ci] Trust Coveralls Homebrew tap"
  • e4bb883 [security] Use GitHub PVR as main reporting channel
  • 2eb3be0 [test] Skip test on Node.js versions where it does not apply
  • See full diff in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
electron [>= 30.a, < 31]
electron [>= 38.a, < 39]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-updates group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.7.1` | `7.8.0` |
| [electron](https://github.com/electron/electron) | `43.2.0` | `43.3.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.8.0` | `17.9.0` |
| [i18next-cli](https://github.com/i18next/i18next-cli) | `1.67.3` | `1.67.7` |
| [immer](https://github.com/immerjs/immer) | `11.1.15` | `11.1.16` |
| [material-symbols](https://github.com/marella/material-symbols/tree/HEAD/material-symbols) | `0.45.9` | `0.45.10` |
| [mocha](https://github.com/mochajs/mocha) | `11.7.6` | `11.8.0` |
| [node-addon-api](https://github.com/nodejs/node-addon-api) | `8.9.0` | `8.9.1` |
| [simple-icons-font](https://github.com/simple-icons/simple-icons-font) | `16.27.1` | `16.28.0` |
| [swiper](https://github.com/nolimits4web/Swiper) | `14.0.7` | `14.1.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.23.1` | `4.23.10` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.65.0` | `8.66.0` |
| [ws](https://github.com/websockets/ws) | `8.21.1` | `8.21.2` |


Updates `@types/semver` from 7.7.1 to 7.8.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver)

Updates `electron` from 43.2.0 to 43.3.0
- [Release notes](https://github.com/electron/electron/releases)
- [Commits](electron/electron@v43.2.0...v43.3.0)

Updates `globals` from 17.8.0 to 17.9.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.8.0...v17.9.0)

Updates `i18next-cli` from 1.67.3 to 1.67.7
- [Changelog](https://github.com/i18next/i18next-cli/blob/main/CHANGELOG.md)
- [Commits](i18next/i18next-cli@v1.67.3...v1.67.7)

Updates `immer` from 11.1.15 to 11.1.16
- [Release notes](https://github.com/immerjs/immer/releases)
- [Commits](immerjs/immer@v11.1.15...v11.1.16)

Updates `material-symbols` from 0.45.9 to 0.45.10
- [Release notes](https://github.com/marella/material-symbols/releases)
- [Commits](https://github.com/marella/material-symbols/commits/v0.45.10/material-symbols)

Updates `mocha` from 11.7.6 to 11.8.0
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/v11.8.0/CHANGELOG.md)
- [Commits](mochajs/mocha@v11.7.6...v11.8.0)

Updates `node-addon-api` from 8.9.0 to 8.9.1
- [Release notes](https://github.com/nodejs/node-addon-api/releases)
- [Changelog](https://github.com/nodejs/node-addon-api/blob/main/CHANGELOG.md)
- [Commits](nodejs/node-addon-api@v8.9.0...v8.9.1)

Updates `simple-icons-font` from 16.27.1 to 16.28.0
- [Release notes](https://github.com/simple-icons/simple-icons-font/releases)
- [Commits](simple-icons/simple-icons-font@16.27.1...16.28.0)

Updates `swiper` from 14.0.7 to 14.1.0
- [Release notes](https://github.com/nolimits4web/Swiper/releases)
- [Changelog](https://github.com/nolimits4web/swiper/blob/master/CHANGELOG.md)
- [Commits](nolimits4web/swiper@v14.0.7...v14.1.0)

Updates `tsx` from 4.23.1 to 4.23.10
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.1...v4.23.10)

Updates `typescript-eslint` from 8.65.0 to 8.66.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.66.0/packages/typescript-eslint)

Updates `ws` from 8.21.1 to 8.21.2
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.21.1...8.21.2)

---
updated-dependencies:
- dependency-name: "@types/semver"
  dependency-version: 7.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: electron
  dependency-version: 43.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: globals
  dependency-version: 17.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: i18next-cli
  dependency-version: 1.67.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: immer
  dependency-version: 11.1.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: material-symbols
  dependency-version: 0.45.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: mocha
  dependency-version: 11.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: node-addon-api
  dependency-version: 8.9.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: simple-icons-font
  dependency-version: 16.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: swiper
  dependency-version: 14.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: tsx
  dependency-version: 4.23.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: typescript-eslint
  dependency-version: 8.66.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: ws
  dependency-version: 8.21.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 10, 2026
@Schneegans
Schneegans merged commit aa0dd0c into main Aug 12, 2026
17 checks passed
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/minor-updates-6217fe09c3 branch August 12, 2026 03:42
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.

1 participant