Skip to content

chore(deps-dev): bump the minorandpatch group across 1 directory with 32 updates - #366

Open
dependabot[bot] wants to merge 1 commit into
canaryfrom
dependabot/npm_and_yarn/canary/minorandpatch-4124ea3b02
Open

chore(deps-dev): bump the minorandpatch group across 1 directory with 32 updates#366
dependabot[bot] wants to merge 1 commit into
canaryfrom
dependabot/npm_and_yarn/canary/minorandpatch-4124ea3b02

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the minorandpatch group with 32 updates in the / directory:

Package From To
@electron/remote 2.1.2 2.1.3
@xterm/addon-fit 0.10.0 0.11.0
@xterm/addon-image 0.8.0 0.9.0
@xterm/addon-ligatures 0.9.0 0.10.0
@xterm/addon-search 0.15.0 0.16.0
@xterm/addon-unicode11 0.8.0 0.9.0
@xterm/addon-web-links 0.11.0 0.12.0
@xterm/addon-webgl 0.18.0 0.19.0
css-loader 7.1.2 7.1.4
lodash 4.17.21 4.18.1
@types/lodash 4.17.24 4.17.25
open 11.0.0 11.0.1
ora 9.4.0 9.4.1
react-use 17.6.0 17.6.1
semver 7.6.3 7.8.5
styled-jsx 5.1.6 5.1.7
typescript-json-schema 0.65.1 0.68.0
uuid 14.0.0 14.0.1
@electron/rebuild 4.0.4 4.2.0
@types/args 5.0.3 5.0.4
@typescript-eslint/eslint-plugin 8.60.0 8.67.0
@typescript-eslint/parser 8.60.0 8.67.0
electron-builder 26.11.1 26.15.3
eslint-import-resolver-typescript 4.4.4 4.4.5
eslint-plugin-prettier 5.5.5 5.5.6
eslint-plugin-react 7.37.2 7.37.5
node-addon-api 8.2.2 8.9.2
playwright 1.49.0 1.62.1
prettier 3.3.3 3.9.6
terser 5.36.0 5.50.0
terser-webpack-plugin 5.3.10 5.6.1
webpack 5.96.1 5.109.2

Updates @electron/remote from 2.1.2 to 2.1.3

Release notes

Sourced from @​electron/remote's releases.

v2.1.3

2.1.3 (2025-07-07)

Bug Fixes

Commits
  • 30fb161 build(dev-deps): remove unused dependencies (#222)
  • cac51a2 fix: add ServiceWorkerMain module (#221)
  • 41678f5 build(deps-dev): bump electron from 22.3.25 to 28.3.2 (#219)
  • 1d541a4 ci: timeout release job after 1 hour (#218)
  • 1d0096a build(deps): bump actions/setup-node from 4.3.0 to 4.4.0 (#217)
  • a04cb82 build(deps): bump actions/setup-node from 4.2.0 to 4.3.0 (#214)
  • aa9f1c6 build(deps): bump dsanders11/project-actions from 1.5.1 to 1.7.0 (#215)
  • bfc2d6c build(deps): bump dsanders11/project-actions from 1.4.0 to 1.5.1 (#213)
  • e5ac786 build(deps): bump actions/setup-node from 4.1.0 to 4.2.0 (#212)
  • efdeaea ci: skip Electron 25 (#211)
  • Additional commits viewable in compare view

Updates @xterm/addon-fit from 0.10.0 to 0.11.0

Commits

Updates @xterm/addon-image from 0.8.0 to 0.9.0

Commits

Updates @xterm/addon-ligatures from 0.9.0 to 0.10.0

Commits

Updates @xterm/addon-search from 0.15.0 to 0.16.0

Commits

Updates @xterm/addon-unicode11 from 0.8.0 to 0.9.0

Commits

Updates @xterm/addon-web-links from 0.11.0 to 0.12.0

Commits

Updates @xterm/addon-webgl from 0.18.0 to 0.19.0

Commits
  • 670efc4 Bump Bower version to 0.19
  • 74f9526 [addon attach] Implement auto-detaching on socket close/error
  • See full diff in compare view

Updates css-loader from 7.1.2 to 7.1.4

Release notes

Sourced from css-loader's releases.

v7.1.4

7.1.4 (2026-02-16)

Bug Fixes

  • update peer dependency for @​rspack/core v2 (#1652) (aeddefe)

v7.1.3

7.1.3 (2026-01-27)

Bug Fixes

Changelog

Sourced from css-loader's changelog.

7.1.4 (2026-02-16)

Bug Fixes

  • update peer dependency for @​rspack/core v2 (#1652) (aeddefe)

7.1.3 (2026-01-27)

Bug Fixes

Commits

Updates lodash from 4.17.21 to 4.18.1

Release notes

Sourced from lodash's releases.

4.18.1

Bugs

Fixes a ReferenceError issue in lodash lodash-es lodash-amd and lodash.template when using the template and fromPairs functions from the modular builds. See lodash/lodash#6167

These defects were related to how lodash distributions are built from the main branch using https://github.com/lodash-archive/lodash-cli. When internal dependencies change inside lodash functions, equivalent updates need to be made to a mapping in the lodash-cli. (hey, it was ahead of its time once upon a time!). We know this, but we missed it in the last release. It's the kind of thing that passes in CI, but fails bc the build is not the same thing you tested.

There is no diff on main for this, but you can see the diffs for each of the npm packages on their respective branches:

4.18.0

v4.18.0

Full Changelog: lodash/lodash@4.17.23...4.18.0

Security

_.unset / _.omit: Fixed prototype pollution via constructor/prototype path traversal (GHSA-f23m-r3pf-42rh, fe8d32e). Previously, array-wrapped path segments and primitive roots could bypass the existing guards, allowing deletion of properties from built-in prototypes. Now constructor and prototype are blocked unconditionally as non-terminal path keys, matching baseSet. Calls that previously returned true and deleted the property now return false and leave the target untouched.

_.template: Fixed code injection via imports keys (GHSA-r5fr-rjxr-66jc, CVE-2026-4800, 879aaa9). Fixes an incomplete patch for CVE-2021-23337. The variable option was validated against reForbiddenIdentifierChars but importsKeys was left unguarded, allowing code injection via the same Function() constructor sink. imports keys containing forbidden identifier characters now throw "Invalid imports option passed into _.template".

Docs

  • Add security notice for _.template in threat model and API docs (#6099)
  • Document lower > upper behavior in _.random (#6115)
  • Fix quotes in _.compact jsdoc (#6090)

lodash.* modular packages

Diff

We have also regenerated and published a select number of the lodash.* modular packages.

These modular packages had fallen out of sync significantly from the minor/patch updates to lodash. Specifically, we have brought the following packages up to parity w/ the latest lodash release because they have had CVEs on them in the past:

Commits
  • cb0b9b9 release(patch): bump main to 4.18.1 (#6177)
  • 75535f5 chore: prune stale advisory refs (#6170)
  • 62e91bc docs: remove n_ Node.js < 6 REPL note from README (#6165)
  • 59be2de release(minor): bump to 4.18.0 (#6161)
  • af63457 fix: broken tests for _.template 879aaa9
  • 1073a76 fix: linting issues
  • 879aaa9 fix: validate imports keys in _.template
  • fe8d32e fix: block prototype pollution in baseUnset via constructor/prototype traversal
  • 18ba0a3 refactor(fromPairs): use baseAssignValue for consistent assignment (#6153)
  • b819080 ci: add dist sync validation workflow (#6137)
  • Additional commits viewable in compare view

Updates @types/lodash from 4.17.24 to 4.17.25

Commits

Updates open from 11.0.0 to 11.0.1

Release notes

Sourced from open's releases.

v11.0.1

  • Fix WSL failure when the working directory is unreachable from Windows 6ac3fe4

sindresorhus/open@v11.0.0...v11.0.1

Commits

Updates ora from 9.4.0 to 9.4.1

Release notes

Sourced from ora's releases.

v9.4.1

  • Fix type definitions (#257) 431ebc4
  • Fix failText type to accept unknown instead of Error, matching the actual promise rejection value bc3a283

sindresorhus/ora@v9.4.0...v9.4.1

Commits

Updates react-use from 17.6.0 to 17.6.1

Release notes

Sourced from react-use's releases.

v17.6.1

17.6.1 (2026-06-10)

Bug Fixes

  • deps: update dependency js-cookie to v3 (c0349d9)
Changelog

Sourced from react-use's changelog.

17.6.1 (2026-06-10)

Bug Fixes

  • deps: update dependency js-cookie to v3 (c0349d9)
Commits
  • fbe99c6 chore(release): 17.6.1 [skip ci]
  • a09536d Merge pull request #2100 from streamich/renovate/js-cookie-3.x
  • 41f6437 Merge branch 'master' into renovate/js-cookie-3.x
  • 9ef9535 chore(deps): update babel monorepo to v7.28.3 (#2666)
  • 68723a5 chore(deps): update dependency eslint-plugin-react to v7.37.5 (#2659)
  • e19a114 chore(deps): update dependency eslint-plugin-jsx-a11y to v6.10.2 (#2658)
  • 756784f chore(deps): update dependency eslint-plugin-import to v2.32.0 (#2657)
  • f6b9c35 chore(deps): update dependency babel-loader to v8.4.1 (#2656)
  • c60dda9 chore(deps): update babel monorepo (#2655)
  • b80305e chore(deps): update semantic-release monorepo (#2654)
  • Additional commits viewable in compare view

Updates semver from 7.6.3 to 7.8.5

Release notes

Sourced from semver's releases.

v7.8.5

7.8.5 (2026-06-19)

Bug Fixes

v7.8.4

7.8.4 (2026-06-09)

Bug Fixes

v7.8.3

7.8.3 (2026-06-08)

Bug Fixes

Chores

v7.8.2

7.8.2 (2026-06-04)

Bug Fixes

v7.8.1

7.8.1 (2026-05-21)

Bug Fixes

v7.8.0

7.8.0 (2026-05-08)

Features

Bug Fixes

Documentation

Chores

v7.7.4

7.7.4 (2026-01-16)

Bug Fixes

Documentation

Dependencies

... (truncated)

Changelog

Sourced from semver's changelog.

7.8.5 (2026-06-19)

Bug Fixes

7.8.4 (2026-06-09)

Bug Fixes

7.8.3 (2026-06-08)

Bug Fixes

Chores

7.8.2 (2026-06-04)

Bug Fixes

7.8.1 (2026-05-21)

Bug Fixes

7.8.0 (2026-05-08)

Features

Bug Fixes

Documentation

Chores

7.7.4 (2026-01-16)

Bug Fixes

Documentation

Dependencies

Chores

7.7.3 (2025-10-06)

Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for semver since your current version.


Updates styled-jsx from 5.1.6 to 5.1.7

Release notes

Sourced from styled-jsx's releases.

v5.1.7

5.1.7 (2025-04-30)

Bug Fixes

  • Check if adding to registry in useInsertionEffect fails and fall back to useLayoutEffect (#857) (d7a5937)
Commits

Updates typescript-json-schema from 0.65.1 to 0.68.0

Commits

Updates uuid from 14.0.0 to 14.0.1

Release notes

Sourced from uuid's releases.

v14.0.1

14.0.1 (2026-06-20)

Bug Fixes

  • add types condition to node export for moduleResolution bundler (#961) (27ffae5)
Changelog

Sourced from uuid's changelog.

14.0.1 (2026-06-20)

Bug Fixes

  • add types condition to node export for moduleResolution bundler (#961) (27ffae5)
Commits
Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates @electron/rebuild from 4.0.4 to 4.2.0

Release notes

Sourced from @​electron/rebuild's releases.

v4.2.0

4.2.0 (2026-07-07)

Features

  • add jobs option to control node-gyp parallel compilation (#1290) (2d5d8e5), closes #303

v4.1.0

4.1.0 (2026-07-01)

Features

  • allow setting dist URL via ELECTRON_REBUILD_DIST_URL env var (#1287) (12a0a2b), closes #301

v4.0.6

4.0.6 (2026-06-28)

Bug Fixes

v4.0.5

4.0.5 (2026-06-27)

Bug Fixes

Commits
  • 2d5d8e5 feat: add jobs option to control node-gyp parallel compilation (#1290)
  • aab9b37 chore(deps): bump actions/checkout from 6.0.2 to 7.0.0 (#1288)
  • 12a0a2b feat: allow setting dist URL via ELECTRON_REBUILD_DIST_URL env var (#1287)
  • 3451934 docs: note that devDependencies aren't rebuilt by default (#1286)
  • 8bc2a49 fix: honor explicit empty --prebuild-tag-prefix (#1284)
  • 3e73e57 fix: add --platform CLI argument (#1285)
  • da49ce1 chore(deps): bump tar from 7.5.13 to 7.5.16 in /test/fixture/napi-build-versi...
  • d3f0aea chore(deps): bump undici from 6.25.0 to 6.27.0 (#1282)
  • 7b74c30 chore(deps): bump undici from 6.26.0 to 6.27.0 in /test/fixture/workspace-tes...
  • b7c52f6 chore(deps): bump tar from 7.5.13 to 7.5.16 in /test/fixture/native-app1 (#1280)
  • Additional commits viewable in compare view
Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates @types/args from 5.0.3 to 5.0.4

Commits

Updates @types/lodash from 4.17.24 to 4.17.25

Commits

Updates @typescript-eslint/eslint-plugin from 8.60.0 to 8.67.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.67.0

8.67.0 (2026-08-10)

🚀 Features

  • typescript-eslint: export basic globs for using tseslint (#12105)

❤️ Thank You

See GitHub Releases for more information.

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

Description has been truncated

… 32 updates

Bumps the minorandpatch group with 32 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@electron/remote](https://github.com/electron/remote) | `2.1.2` | `2.1.3` |
| [@xterm/addon-fit](https://github.com/xtermjs/xterm.js) | `0.10.0` | `0.11.0` |
| [@xterm/addon-image](https://github.com/xtermjs/xterm.js) | `0.8.0` | `0.9.0` |
| [@xterm/addon-ligatures](https://github.com/xtermjs/xterm.js) | `0.9.0` | `0.10.0` |
| [@xterm/addon-search](https://github.com/xtermjs/xterm.js) | `0.15.0` | `0.16.0` |
| [@xterm/addon-unicode11](https://github.com/xtermjs/xterm.js) | `0.8.0` | `0.9.0` |
| [@xterm/addon-web-links](https://github.com/xtermjs/xterm.js) | `0.11.0` | `0.12.0` |
| [@xterm/addon-webgl](https://github.com/xtermjs/xterm.js) | `0.18.0` | `0.19.0` |
| [css-loader](https://github.com/webpack/css-loader) | `7.1.2` | `7.1.4` |
| [lodash](https://github.com/lodash/lodash) | `4.17.21` | `4.18.1` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.24` | `4.17.25` |
| [open](https://github.com/sindresorhus/open) | `11.0.0` | `11.0.1` |
| [ora](https://github.com/sindresorhus/ora) | `9.4.0` | `9.4.1` |
| [react-use](https://github.com/streamich/react-use) | `17.6.0` | `17.6.1` |
| [semver](https://github.com/npm/node-semver) | `7.6.3` | `7.8.5` |
| [styled-jsx](https://github.com/vercel/styled-jsx) | `5.1.6` | `5.1.7` |
| [typescript-json-schema](https://github.com/YousefED/typescript-json-schema) | `0.65.1` | `0.68.0` |
| [uuid](https://github.com/uuidjs/uuid) | `14.0.0` | `14.0.1` |
| [@electron/rebuild](https://github.com/electron/rebuild) | `4.0.4` | `4.2.0` |
| [@types/args](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/args) | `5.0.3` | `5.0.4` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.60.0` | `8.67.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.60.0` | `8.67.0` |
| [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder) | `26.11.1` | `26.15.3` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `4.4.4` | `4.4.5` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.5.5` | `5.5.6` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.37.2` | `7.37.5` |
| [node-addon-api](https://github.com/nodejs/node-addon-api) | `8.2.2` | `8.9.2` |
| [playwright](https://github.com/microsoft/playwright) | `1.49.0` | `1.62.1` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.9.6` |
| [terser](https://github.com/terser/terser) | `5.36.0` | `5.50.0` |
| [terser-webpack-plugin](https://github.com/webpack/minimizer-webpack-plugin) | `5.3.10` | `5.6.1` |
| [webpack](https://github.com/webpack/webpack) | `5.96.1` | `5.109.2` |



Updates `@electron/remote` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/electron/remote/releases)
- [Commits](electron/remote@v2.1.2...v2.1.3)

Updates `@xterm/addon-fit` from 0.10.0 to 0.11.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.10...0.11)

Updates `@xterm/addon-image` from 0.8.0 to 0.9.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.8...0.9)

Updates `@xterm/addon-ligatures` from 0.9.0 to 0.10.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.9...0.10)

Updates `@xterm/addon-search` from 0.15.0 to 0.16.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.15...0.16)

Updates `@xterm/addon-unicode11` from 0.8.0 to 0.9.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.8...0.9)

Updates `@xterm/addon-web-links` from 0.11.0 to 0.12.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.11...0.12)

Updates `@xterm/addon-webgl` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/xtermjs/xterm.js/releases)
- [Commits](xtermjs/xterm.js@0.18...0.19)

Updates `css-loader` from 7.1.2 to 7.1.4
- [Release notes](https://github.com/webpack/css-loader/releases)
- [Changelog](https://github.com/webpack/css-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/css-loader@v7.1.2...v7.1.4)

Updates `lodash` from 4.17.21 to 4.18.1
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.18.1)

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

Updates `open` from 11.0.0 to 11.0.1
- [Release notes](https://github.com/sindresorhus/open/releases)
- [Commits](sindresorhus/open@v11.0.0...v11.0.1)

Updates `ora` from 9.4.0 to 9.4.1
- [Release notes](https://github.com/sindresorhus/ora/releases)
- [Commits](sindresorhus/ora@v9.4.0...v9.4.1)

Updates `react-use` from 17.6.0 to 17.6.1
- [Release notes](https://github.com/streamich/react-use/releases)
- [Changelog](https://github.com/streamich/react-use/blob/master/CHANGELOG.md)
- [Commits](streamich/react-use@v17.6.0...v17.6.1)

Updates `semver` from 7.6.3 to 7.8.5
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.6.3...v7.8.5)

Updates `styled-jsx` from 5.1.6 to 5.1.7
- [Release notes](https://github.com/vercel/styled-jsx/releases)
- [Changelog](https://github.com/vercel/styled-jsx/blob/main/Changelog.md)
- [Commits](vercel/styled-jsx@v5.1.6...v5.1.7)

Updates `typescript-json-schema` from 0.65.1 to 0.68.0
- [Commits](YousefED/typescript-json-schema@v0.65.1...v0.68.0)

Updates `uuid` from 14.0.0 to 14.0.1
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v14.0.0...v14.0.1)

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

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

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

Updates `@typescript-eslint/eslint-plugin` from 8.60.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.60.0 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/parser)

Updates `electron-builder` from 26.11.1 to 26.15.3
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/master/packages/electron-builder/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/electron-builder@26.15.3/packages/electron-builder)

Updates `eslint-import-resolver-typescript` from 4.4.4 to 4.4.5
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v4.4.4...v4.4.5)

Updates `eslint-plugin-prettier` from 5.5.5 to 5.5.6
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.5.5...v5.5.6)

Updates `eslint-plugin-react` from 7.37.2 to 7.37.5
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.37.2...v7.37.5)

Updates `node-addon-api` from 8.2.2 to 8.9.2
- [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.2.2...v8.9.2)

Updates `playwright` from 1.49.0 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.0...v1.62.1)

Updates `prettier` from 3.3.3 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.9.6)

Updates `terser` from 5.36.0 to 5.50.0
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](terser/terser@v5.36.0...v5.50.0)

Updates `terser-webpack-plugin` from 5.3.10 to 5.6.1
- [Release notes](https://github.com/webpack/minimizer-webpack-plugin/releases)
- [Changelog](https://github.com/webpack/minimizer-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](webpack/minimizer-webpack-plugin@v5.3.10...v5.6.1)

Updates `webpack` from 5.96.1 to 5.109.2
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.96.1...v5.109.2)

---
updated-dependencies:
- dependency-name: "@electron/remote"
  dependency-version: 2.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@xterm/addon-fit"
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@xterm/addon-image"
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@xterm/addon-ligatures"
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@xterm/addon-search"
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@xterm/addon-unicode11"
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@xterm/addon-web-links"
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@xterm/addon-webgl"
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: css-loader
  dependency-version: 7.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: lodash
  dependency-version: 4.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@types/lodash"
  dependency-version: 4.17.25
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: open
  dependency-version: 11.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: ora
  dependency-version: 9.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: react-use
  dependency-version: 17.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: semver
  dependency-version: 7.8.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: styled-jsx
  dependency-version: 5.1.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: typescript-json-schema
  dependency-version: 0.68.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: uuid
  dependency-version: 14.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@electron/rebuild"
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@types/args"
  dependency-version: 5.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@types/lodash"
  dependency-version: 4.17.25
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: electron-builder
  dependency-version: 26.15.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: eslint-import-resolver-typescript
  dependency-version: 4.4.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: node-addon-api
  dependency-version: 8.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: playwright
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: terser
  dependency-version: 5.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: terser-webpack-plugin
  dependency-version: 5.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: webpack
  dependency-version: 5.109.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
...

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 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants