Skip to content

build(deps-dev): bump the dev-dependencies group across 1 directory with 4 updates - #15

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-a5e1bdcb39
Closed

build(deps-dev): bump the dev-dependencies group across 1 directory with 4 updates#15
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-a5e1bdcb39

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group with 4 updates in the / directory: @biomejs/biome, @ox-content/vite-plugin, node-gyp and electron.

Updates @biomejs/biome from 2.5.3 to 2.5.8

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.8

2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @​dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @​dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @​dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
      {@const area = box.width * box.height}
      <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
      {const area = $derived(box.width * box.height)}
      <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @​Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @​vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @​subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
       --font-stack:
    -/* comment */
    +    /* comment */
         system-ui;
     }
  • #11285 bca1f73 Thanks @​denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @​dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @​dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @​dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
      {@const area = box.width * box.height}
      <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
      {const area = $derived(box.width * box.height)}
      <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @​Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @​vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @​subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
       --font-stack:
    -/* comment */
    +    /* comment */
         system-ui;
     }
  • #11285 bca1f73 Thanks @​denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}

... (truncated)

Commits

Updates @ox-content/vite-plugin from 2.76.0 to 2.82.1

Release notes

Sourced from @​ox-content/vite-plugin's releases.

v2.82.1

Full Changelog: ubugeeei-prod/ox-content@v2.82.0...v2.82.1

v2.82.0

What's Changed

Full Changelog: ubugeeei-prod/ox-content@v2.81.0...v2.82.0

v2.81.0

What's Changed

Full Changelog: ubugeeei-prod/ox-content@v2.80.0...v2.81.0

v2.80.0

What's Changed

... (truncated)

Changelog

Sourced from @​ox-content/vite-plugin's changelog.

[2.82.1] - 2026-08-13

Bug Fixes

  • publish compatible Vite peer ranges

[2.82.0] - 2026-08-13

Features

  • make cjkEmphasis pair runs against CJK punctuation (#545) (#548)
  • add SolidJS integration (#540) (#546)
  • add boundary-free ox-content rows to the native competitor runner (#524)

Performance

  • chunk-scan JSON string escaping and drop per-number allocations (#522)

Documentation

  • measure and publish CommonMark conformance per engine (#545) (#547)
  • publish TypeScript renderer results (#539)
  • expand built-in features into per-feature guides with live examples (#527)
  • refresh benchmark numbers (#526)
  • retire the "cargo doc for JavaScript" tagline (#525)

[2.81.0] - 2026-07-18

Features

  • add native competitor rows (pulldown-cmark, Grok Build markdown) (#513)
  • span the parser pre-passes and inline post-passes (#511)

Performance

  • reject autolink candidates on the second byte before prefix checks (#520)
  • pre-size the arena from the source length (#519)
  • skip the pre-pass line scan when the source has no "]:" (#517)
  • close HTML blocks with whole-block searches instead of per-line scans (#515)
  • fuse the reference and footnote pre-passes behind first-byte dispatch (#512)

Refactoring

  • split native-competitors main.rs under file line limit (#514)

[2.80.0] - 2026-07-18

Features

  • implement GFM footnotes (#507)

... (truncated)

Commits
  • 66d67a4 chore(release): v2.82.1
  • b8ed923 fix(packages): publish compatible Vite peer ranges
  • 7d23f92 chore(release): v2.82.0
  • 28280ea chore(deps): bump the npm-production group with 33 updates (#552)
  • 2ef9835 chore(deps-dev): bump the npm-development group with 14 updates (#544)
  • 74ae502 docs+fix: built-in feature guide follow-ups — collections guide, live social ...
  • 090ee93 docs: retire the "cargo doc for JavaScript" tagline (#525)
  • cb09aa9 chore(release): v2.81.0
  • 893ac76 chore(release): v2.80.0
  • b896999 fix(parser): reach full CommonMark 0.31.2 conformance (#504)
  • Additional commits viewable in compare view

Updates node-gyp from 11.5.0 to 13.0.1

Release notes

Sourced from node-gyp's releases.

v13.0.1

13.0.1 (2026-07-02)

Core

Miscellaneous

v13.0.0

13.0.0 (2026-06-10)

⚠ BREAKING CHANGES

  • node-gyp now supports node ^22.22.2 || ^24.15.0 || >=26.0.0

Features

  • bump to new node engine range (b792b8e)

Bug Fixes

Core

Miscellaneous

v12.4.0

12.4.0 (2026-05-15)

Features

... (truncated)

Changelog

Sourced from node-gyp's changelog.

13.0.1 (2026-07-02)

Core

Miscellaneous

13.0.0 (2026-06-10)

⚠ BREAKING CHANGES

  • node-gyp now supports node ^22.22.2 || ^24.15.0 || >=26.0.0

Features

  • bump to new node engine range (b792b8e)

Bug Fixes

Core

Miscellaneous

12.4.0 (2026-05-15)

Features

... (truncated)

Commits

Updates electron from 42.9.3 to 43.4.0

Release notes

Sourced from electron's releases.

electron v43.4.0

Release Notes for v43.4.0

Features

  • Added webFrameMain.printToPDF() to allow printing individual frames to PDF from the main process. #52627 (Also in 42, 44)
  • Fixed an issue where getDisplayMedia({ audio: { restrictOwnAudio: true } }) was ignored in setDisplayMediaRequestHandler, causing loopback audio to include local app playback. #52533 (Also in 44)

Fixes

  • Fixed a browser process crash that could occur during Windows logoff, shutdown, or restart. #52620 (Also in 42, 44)
  • Fixed a crash report when the X server or Wayland compositor exits while an app is running. #52685 (Also in 42, 44)
  • Fixed a crash when quickly switching menus while the app is under heavy load. #52673 (Also in 42, 44)
  • Fixed a potential crash when notifying user activation before the primary main frame was live. #52697 (Also in 42, 44)
  • Fixed an issue where a JavaScript out-of-memory crash could be reported from inside the crash-key handler instead of at the out-of-memory site. #52725 (Also in 42, 44)
  • Fixed the Linux system accent color intermittently not being applied (systemPreferences.getAccentColor() returning an empty string on some launches). #52575

Other Changes

  • Backported fixes from upstream ANGLE and Chromium. #52709
  • Backported fixes from upstream ANGLE, Chromium and V8. #52663
  • No user-facing change; semver/none. #52732
  • Updated Chromium to 150.0.7871.224. #52693

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

electron v43.2.0

Release Notes for v43.2.0

Features

... (truncated)

Commits
  • 154ee91 build: add release-assets.json expected-asset manifest (43-x-y) (#52732)
  • 3aa653e fix: don't allocate crash keys inside the v8 oom callback (#52725)
  • 8e867d9 chore: cherry-pick 4 changes from angle and chromium (#52709)
  • fb05750 fix: exit and lower child shutdown priority when the windows session ends (#5...
  • 999ab41 chore: remove redundant isolate params in the context bridge (#52703)
  • 3367ede chore: bump chromium to 150.0.7871.224 (43-x-y) (#52693)
  • f05dfa0 fix: guard NotifyUserActivation on live main frame. (#52697)
  • 74fab79 fix: exit gracefully when the display server connection is lost (#52685)
  • 22341b0 docs: advise bisect-friendly commits in chromium upgrade skill (#52688)
  • ca5fb8d docs: tighten commit organization rules in electron-chromium-upgrade skill (#...
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 8, 2026
…ith 4 updates

Bumps the dev-dependencies group with 4 updates in the / directory: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@ox-content/vite-plugin](https://github.com/ubugeeei-prod/ox-content/tree/HEAD/npm/vite-plugin-ox-content), [node-gyp](https://github.com/nodejs/node-gyp) and [electron](https://github.com/electron/electron).


Updates `@biomejs/biome` from 2.5.3 to 2.5.8
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.8/packages/@biomejs/biome)

Updates `@ox-content/vite-plugin` from 2.76.0 to 2.82.1
- [Release notes](https://github.com/ubugeeei-prod/ox-content/releases)
- [Changelog](https://github.com/ubugeeei-prod/ox-content/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ubugeeei-prod/ox-content/commits/v2.82.1/npm/vite-plugin-ox-content)

Updates `node-gyp` from 11.5.0 to 13.0.1
- [Release notes](https://github.com/nodejs/node-gyp/releases)
- [Changelog](https://github.com/nodejs/node-gyp/blob/main/CHANGELOG.md)
- [Commits](nodejs/node-gyp@v11.5.0...v13.0.1)

Updates `electron` from 42.9.3 to 43.4.0
- [Release notes](https://github.com/electron/electron/releases)
- [Commits](electron/electron@v42.9.3...v43.4.0)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@ox-content/vite-plugin"
  dependency-version: 2.81.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: electron
  dependency-version: 43.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: node-gyp
  dependency-version: 13.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-a5e1bdcb39 branch from 15b664e to 3a4cdb5 Compare August 22, 2026 10:34
@dependabot @github

dependabot Bot commented on behalf of github Aug 30, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 30, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/dev-dependencies-a5e1bdcb39 branch August 30, 2026 18:01
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