Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 25, 2025

Bumps the minor group with 40 updates in the / directory:

Package From To
@codemirror/language 6.11.0 6.11.3
@codemirror/search 6.5.10 6.5.11
@codemirror/theme-one-dark 6.1.2 6.1.3
@csstools/postcss-oklab-function 4.0.9 4.0.11
bson 6.10.3 6.10.4
codemirror 6.0.1 6.0.2
decamelize 6.0.0 6.0.1
html2canvas-pro 1.5.8 1.5.11
json-rpc-2.0 1.7.0 1.7.1
react-hot-toast 2.5.2 2.6.0
three 0.175.0 0.179.1
xstate 5.19.2 5.20.2
@babel/preset-env 7.26.9 7.28.3
@electron-forge/cli 7.8.0 7.8.3
@electron-forge/plugin-fuses 7.8.0 7.8.3
@electron-forge/plugin-vite 7.8.0 7.8.3
@lezer/generator 1.7.3 1.8.0
@nabla/vite-plugin-eslint 2.0.5 2.0.6
@playwright/test 1.52.0 1.55.0
@types/three 0.175.0 0.179.0
@vitest/web-worker 3.1.2 3.2.4
eslint-plugin-import 2.31.0 2.32.0
eslint-plugin-testing-library 7.1.1 7.6.6
msw 2.7.6 2.10.5
openapi-typescript 7.6.1 7.9.1
postcss 8.5.3 8.5.6
ts-jest 29.3.2 29.4.1
typescript 5.8.3 5.9.2
typescript-eslint 8.30.1 8.40.0
vite-plugin-top-level-await 1.5.0 1.6.0
vitest 3.1.2 3.2.4
ws 8.18.1 8.18.3
@rollup/plugin-typescript 12.1.2 12.1.4
rollup 4.40.0 4.48.1
rollup-plugin-dts 6.2.1 6.2.3
@types/vscode 1.99.1 1.103.0
@vscode/vsce 3.3.2 3.6.0
esbuild 0.25.5 0.25.9
glob 11.0.1 11.0.3
mocha 11.1.0 11.7.1

Updates @codemirror/language from 6.11.0 to 6.11.3

Changelog

Sourced from @​codemirror/language's changelog.

6.11.3 (2025-08-15)

Bug fixes

Make the stream parser user 4 times smaller chunks to reduce the amount of re-parsed code on changes.

6.11.2 (2025-06-27)

Bug fixes

Make sure folded ranges open when backspacing or deleting into them.

6.11.1 (2025-06-02)

Bug fixes

Fix an issue where indentation would sometimes miss nodes in mixed-language situations.

Commits
  • 9c41d68 Mark version 6.11.3
  • 1979f0d Reduce StreamParser chunk size
  • ca8d6be Mark version 6.11.2
  • 2bc3b04 Open folds when deleting/backspacing into them
  • 53e08cc Mark version 6.11.1
  • 56a1c5f Fix an issue in overlay tree traversal in indentation
  • 951477e Fix grammar in doc comment
  • See full diff in compare view

Updates @codemirror/search from 6.5.10 to 6.5.11

Changelog

Sourced from @​codemirror/search's changelog.

6.5.11 (2025-05-14)

Bug fixes

Fix an issue in replaceNext that could cause it to create an invalid selection when replacing past the end of the document.

Commits
  • a221fa3 Mark version 6.5.11
  • fcebbbf Fix a bug in selection mapping after replace
  • 11b6def Switch from exclamation point to declare syntax for type-only properties
  • See full diff in compare view

Updates @codemirror/theme-one-dark from 6.1.2 to 6.1.3

Changelog

Sourced from @​codemirror/theme-one-dark's changelog.

6.1.3 (2025-06-19)

Bug fixes

Add a .d.cts file to make TypeScript happy.

Commits

Updates @csstools/postcss-oklab-function from 4.0.9 to 4.0.11

Changelog

Sourced from @​csstools/postcss-oklab-function's changelog.

4.0.11

August 22, 2025

4.0.10

May 27, 2025

Commits

Updates bson from 6.10.3 to 6.10.4

Release notes

Sourced from bson's releases.

v6.10.4

6.10.4 (2025-06-02)

The MongoDB Node.js team is pleased to announce version 6.10.4 of the bson package!

Release Notes

Top-Level Await removed from the browser BSON bundle

In versions <6.10.4, BSON uses a top-level await to asynchronously import the crypto module. This change unintentionally caused headaches for users of webpack, react native, vite and other tools bundlers and tools.

The top-level await has been removed from all BSON bundles. Thanks to @​lourd for this contribution.

Prevent the creation of incorrectly sized float32 vectors

This adds validation to our BSON.serialize and EJSON.stringify methods that will prevent creating float 32 vectors that are not a multiple of 4. Previously created vectors that do not meet this validation will still be deserialized and parsed so they can be fixed.

Additionally, the toFloat32Array(), toInt8Array(), and toPackedBits() methods now perform the same validation that serialize does to prevent use of incorrectly formatted Binary vector values. (For example, a packed bits vector with more than 7 bits of padding)

Vectors of an incorrect length could only be made manually (directly constructing the bytes and calling new Binary). We recommend using toFloat32Array and fromFloat32Array when interacting with Vectors in MongoDB as they handle the proper creation and translation of this data type.

Bug Fixes

  • NODE-6074: Removes top-level await in bson with separate node and browser ESM bundles (#749) (4602973)
  • NODE-6735, NODE-6711: add BSON vector validation to EJSON stringification, serialization and conversion to native types (#748) (64ff6a2)

Documentation

We invite you to try the bson library immediately, and report any issues to the NODE project.

Changelog

Sourced from bson's changelog.

6.10.4 (2025-06-02)

Bug Fixes

  • NODE-6074: Removes top-level await in bson with separate node and browser ESM bundles (#749) (4602973)
  • NODE-6735, NODE-6711: add BSON vector validation to EJSON stringification, serialization and conversion to native types (#748) (64ff6a2)
Commits
  • 302f96e chore(main): release 6.10.4 (#803)
  • da8a4bf chore: revert release 6.10.4 (#802)
  • 8d712be chore(main): release 6.10.4 (#800)
  • 0203beb chore: revert 6.10 release to try again (#799)
  • b021bd8 chore(main): release 6.10.4 (#789)
  • 86f9dc4 chore(NODE-6938): update typescript to 5.8.3 (#793)
  • 3e5f1f8 deps(NODE-6898): FY26Q2 dependency updates (#795)
  • 17650e1 chore(NODE-6921): perf tests default to cwd and errexit (#791)
  • 7f2a6d3 test(NODE-6920): esm bundles do not have top-level await (#790)
  • 4602973 fix(NODE-6074): Removes top-level await in bson with separate node and browse...
  • Additional commits viewable in compare view

Updates codemirror from 6.0.1 to 6.0.2

Changelog

Sourced from codemirror's changelog.

6.0.2 (2025-06-19)

Bug fixes

Make sure to include a .d.cts file to make TypeScript happy.

Commits

Updates decamelize from 6.0.0 to 6.0.1

Release notes

Sourced from decamelize's releases.

v6.0.1

  • Fix performance issues in some extreme edge-cases e9e3041

sindresorhus/decamelize@v6.0.0...v6.0.1

Commits

Updates html2canvas-pro from 1.5.8 to 1.5.11

Release notes

Sourced from html2canvas-pro's releases.

v1.5.11

Please refer to CHANGELOG.md for details.

v1.5.10

Please refer to CHANGELOG.md for details.

v1.5.9

Please refer to CHANGELOG.md for details.

Changelog

Sourced from html2canvas-pro's changelog.

1.5.11 (2025-05-12)

Features

  • add the customIsSameOrigin option to support custom same-origin checks (dd9ef5e)

Documentation

  • changelog: fixes (e29d83d)
  • configuration: add examples and explanations for using the customIsSameOrigin option (c404b8f)

Chore

  • missing download info (856f709)
  • reftests: add custom isSameOrigin tests and redirect handling (e371834)

1.5.10 (2025-04-27)

Fixes

  • Remove duplicate enum value (ccaa81d)
  • Resolve duplicate enum value (2cf67f9)

1.5.9 (2025-04-27)

Fixes

  • failed to execute 'addColorStop' on 'CanvasGradient' (f84f057)
  • set font correctly in text input elements (b0203c0)

Documentation

  • readme: add deepwiki (4ffcff9)
  • readme: welcome to become a maintainer (122dafd)

Chore

  • an artifact with this name already exists on the workflow run (d10a0ca)
  • license info (ee445f7)
  • missing download info for actions/upload-artifact@v3 (ef54137)
  • remove html2canvas-proxy (5eafba5)
  • replace request with http (e9d88e4)
  • upgrade appium-xcode & node-simctl (b61e7d1)

... (truncated)

Commits
  • bb77c21 chore(release): 1.5.11
  • 856f709 chore: missing download info
  • 49f903d Merge pull request #117 from alonesuperman/main
  • e371834 test(reftests): add custom isSameOrigin tests and redirect handling
  • c404b8f docs(configuration): add examples and explanations for using the `customIsSam...
  • dd9ef5e feat: add the customIsSameOrigin option to support custom same-origin checks
  • e29d83d docs(changelog): fixes
  • f502562 chore(release): 1.5.10
  • c1cb846 chore: optimize version-upgrade
  • 30d8c4d chore(release): 1.5.9
  • Additional commits viewable in compare view

Updates json-rpc-2.0 from 1.7.0 to 1.7.1

Release notes

Sourced from json-rpc-2.0's releases.

v1.7.1

Commits

Updates react-hot-toast from 2.5.2 to 2.6.0

Release notes

Sourced from react-hot-toast's releases.

v2.6.0


timolins/react-hot-toast@v2.5.2...v2.6.0

v2.6.0-beta.0

What's new

  • Adds support for multiple toasters
  • Add first version of Multi toaster docs
  • Add dismissAll and removeAll More ergonomic API when working with multiple toasters a1d0b02

Ready to try it out?

npm i react-hot-toast@beta

Other Changes

  • Update pnpm version f6c867b
  • Move timeouts inside a useRef cb1fe8e
  • Use data tag instead of id 1d5d3d3
  • Fix dispatch to be id specific again fe934fd
  • Merge branch &#39;main&#39; into global-settings 0953822
  • Add first version of multi toaster page 5b1ee55
  • Merge branch &#39;main&#39; into global-settings 4d43622
  • Move toaster settings into state cf9ae4b
  • Some experimentation with global settings API 2e0a4dd

timolins/react-hot-toast@v2.5.1...v2.6.0-beta.0

Commits

Updates three from 0.175.0 to 0.179.1

Commits

Updates xstate from 5.19.2 to 5.20.2

Release notes

Sourced from xstate's releases.

xstate@5.20.2

Patch Changes

  • #5351 71387ff Thanks @​davidkpiano! - Fix: Emit callback errors no longer crash the actor

    actor.on('event', () => {
      // Will no longer crash the actor
      throw new Error('oops');
    });

xstate@5.20.1

Patch Changes

xstate@5.20.0

Minor Changes

  • #5287 e07a7cd8462473188a0fb646a965e61be1ce6ae3 Thanks @​davidkpiano! - The graph and model-based testing utilities from @​xstate/graph (and @​xstate/test previously) were moved to the core xstate package.

    import { createMachine } from 'xstate';
    import { getShortestPaths } from 'xstate/graph';
    const machine = createMachine({
    // ...
    });
    const paths = getShortestPaths(machine, {
    fromState: 'a',
    toState: 'b'
    });

xstate@5.19.4

Patch Changes

xstate@5.19.3

Patch Changes

Commits

Updates @babel/preset-env from 7.26.9 to 7.28.3

Release notes

Sourced from @​babel/preset-env's releases.

v7.28.3 (2025-08-14)

👓 Spec Compliance

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-transform-class-static-block, babel-preset-env

🐛 Bug Fix

💅 Polish

  • babel-plugin-transform-regenerator, babel-plugin-transform-runtime

📝 Documentation

🏠 Internal

🔬 Output optimization

  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions

Committers: 5

v7.28.2 (2025-07-24)

Thanks @​souhailaS for your first PR!

🐛 Bug Fix

  • babel-types
  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3

Committers: 4

v7.28.1 (2025-07-12)

... (truncated)

Changelog

Sourced from @​babel/preset-env's changelog.

v7.28.3 (2025-08-14)

👓 Spec Compliance

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-transform-class-static-block, babel-preset-env

🐛 Bug Fix

💅 Polish

  • babel-plugin-transform-regenerator, babel-plugin-transform-runtime

📝 Documentation

🏠 Internal

🔬 Output optimization

  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions

v7.28.2 (2025-07-24)

🐛 Bug Fix

  • babel-types
  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3

v7.28.1 (2025-07-12)

🐛 Bug Fix

  • babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator

📝 Documentation

↩️ Revert

  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-types

v7.28.0 (2025-07-02)

🚀 New Feature

... (truncated)

Commits

Updates @electron-forge/cli from 7.8.0 to 7.8.3

Release notes

Sourced from @​electron-forge/cli's releases.

v7.8.3

What's Changed

Bug Fixes & Improvements

Full Changelog: electron/forge@v7.8.2...v7.8.3

v7.8.2

What's Changed

Bug Fixes & Improvements

Other Changes

New Contributors

Full Changelog: electron/forge@v7.8.1...v7.8.2

v7.8.1

What's Changed

Bug Fixes and Improvements

Other Changes

... (truncated)

Changelog

Sourced from @​electron-forge/cli's changelog.

6.0.2 (2022-11-14)

6.0.1 (2022-11-08)

6.0.0 (2022-11-02)

6.0.0-beta.75 (2022-11-01)

New Features

6.0.0-beta.74 (2022-11-01)

Bug Fixes
  • do not proxify class instances in forge config (#3039) (a89ed7d3)
Other Changes
  • add proper package test for webpack ts template (#3040) (6e9cca35)

6.0.0-beta.73 (2022-11-01)

Bug Fixes

6.0.0-beta.72 (2022-10-31)

6.0.0-beta.71 (2022-10-31)

Bug Fixes
  • packager: "packaging application" log never stops when building for multiple architectures (#3006) (247f52ab)
  • publish: ignore unnecessary files when publishing to npm (#3024) (ab8ea661)
  • template-base: use minimum instead of exact version when replacing ELECTRON_FORGE/VERSION in templates (#3030) (7aaa7029)
  • use @​electron-forge/cli hint for project resolution (#3023) (b5d05874)
  • restore isProd in the webpack plugin (#3021) (531788ba)

6.0.0-beta.70 (2022-10-28)

Bug Fixes

6.0.0-beta.69 (2022-10-27)

... (truncated)

Commits

Updates @electron-forge/plugin-fuses from 7.8.0 to 7.8.3

Release notes

Sourced from @​electron-forge/plugin-fuses's releases.

v7.8.3

What's Changed

Bug Fixes & Improvements

Full Changelog: electron/forge@v7.8.2...v7.8.3

v7.8.2

What's Changed

Bug Fixes & Improvements

Other Changes

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 25, 2025
@dependabot dependabot bot requested review from a team as code owners August 25, 2025 19:04
Copy link

vercel bot commented Aug 25, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
modeling-app Ready Ready Preview Comment Aug 28, 2025 0:23am

Bumps the minor group with 40 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@codemirror/language](https://github.com/codemirror/language) | `6.11.0` | `6.11.3` |
| [@codemirror/search](https://github.com/codemirror/search) | `6.5.10` | `6.5.11` |
| [@codemirror/theme-one-dark](https://github.com/codemirror/theme-one-dark) | `6.1.2` | `6.1.3` |
| [@csstools/postcss-oklab-function](https://github.com/csstools/postcss-plugins/tree/HEAD/plugins/postcss-oklab-function) | `4.0.9` | `4.0.11` |
| [bson](https://github.com/mongodb/js-bson) | `6.10.3` | `6.10.4` |
| [codemirror](https://github.com/codemirror/basic-setup) | `6.0.1` | `6.0.2` |
| [decamelize](https://github.com/sindresorhus/decamelize) | `6.0.0` | `6.0.1` |
| [html2canvas-pro](https://github.com/yorickshan/html2canvas-pro) | `1.5.8` | `1.5.11` |
| [json-rpc-2.0](https://github.com/shogowada/json-rpc-2.0) | `1.7.0` | `1.7.1` |
| [react-hot-toast](https://github.com/timolins/react-hot-toast) | `2.5.2` | `2.6.0` |
| [three](https://github.com/mrdoob/three.js) | `0.175.0` | `0.179.1` |
| [xstate](https://github.com/statelyai/xstate) | `5.19.2` | `5.20.2` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.26.9` | `7.28.3` |
| [@electron-forge/cli](https://github.com/electron/forge) | `7.8.0` | `7.8.3` |
| [@electron-forge/plugin-fuses](https://github.com/electron/forge) | `7.8.0` | `7.8.3` |
| [@electron-forge/plugin-vite](https://github.com/electron/forge/tree/HEAD/packages/plugin/vite) | `7.8.0` | `7.8.3` |
| [@lezer/generator](https://github.com/lezer-parser/generator) | `1.7.3` | `1.8.0` |
| [@nabla/vite-plugin-eslint](https://github.com/nabla/vite-plugin-eslint) | `2.0.5` | `2.0.6` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.52.0` | `1.55.0` |
| [@types/three](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/three) | `0.175.0` | `0.179.0` |
| [@vitest/web-worker](https://github.com/vitest-dev/vitest/tree/HEAD/packages/web-worker) | `3.1.2` | `3.2.4` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.31.0` | `2.32.0` |
| [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) | `7.1.1` | `7.6.6` |
| [msw](https://github.com/mswjs/msw) | `2.7.6` | `2.10.5` |
| [openapi-typescript](https://github.com/openapi-ts/openapi-typescript/tree/HEAD/packages/openapi-typescript) | `7.6.1` | `7.9.1` |
| [postcss](https://github.com/postcss/postcss) | `8.5.3` | `8.5.6` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.3.2` | `29.4.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.30.1` | `8.40.0` |
| [vite-plugin-top-level-await](https://github.com/Menci/vite-plugin-top-level-await) | `1.5.0` | `1.6.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.1.2` | `3.2.4` |
| [ws](https://github.com/websockets/ws) | `8.18.1` | `8.18.3` |
| [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) | `12.1.2` | `12.1.4` |
| [rollup](https://github.com/rollup/rollup) | `4.40.0` | `4.48.1` |
| [rollup-plugin-dts](https://github.com/Swatinem/rollup-plugin-dts) | `6.2.1` | `6.2.3` |
| [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) | `1.99.1` | `1.103.0` |
| [@vscode/vsce](https://github.com/Microsoft/vsce) | `3.3.2` | `3.6.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.5` | `0.25.9` |
| [glob](https://github.com/isaacs/node-glob) | `11.0.1` | `11.0.3` |
| [mocha](https://github.com/mochajs/mocha) | `11.1.0` | `11.7.1` |



Updates `@codemirror/language` from 6.11.0 to 6.11.3
- [Changelog](https://github.com/codemirror/language/blob/main/CHANGELOG.md)
- [Commits](codemirror/language@6.11.0...6.11.3)

Updates `@codemirror/search` from 6.5.10 to 6.5.11
- [Changelog](https://github.com/codemirror/search/blob/main/CHANGELOG.md)
- [Commits](codemirror/search@6.5.10...6.5.11)

Updates `@codemirror/theme-one-dark` from 6.1.2 to 6.1.3
- [Changelog](https://github.com/codemirror/theme-one-dark/blob/main/CHANGELOG.md)
- [Commits](codemirror/theme-one-dark@6.1.2...6.1.3)

Updates `@csstools/postcss-oklab-function` from 4.0.9 to 4.0.11
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-oklab-function/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-oklab-function)

Updates `bson` from 6.10.3 to 6.10.4
- [Release notes](https://github.com/mongodb/js-bson/releases)
- [Changelog](https://github.com/mongodb/js-bson/blob/main/HISTORY.md)
- [Commits](mongodb/js-bson@v6.10.3...v6.10.4)

Updates `codemirror` from 6.0.1 to 6.0.2
- [Changelog](https://github.com/codemirror/basic-setup/blob/main/CHANGELOG.md)
- [Commits](codemirror/basic-setup@6.0.1...6.0.2)

Updates `decamelize` from 6.0.0 to 6.0.1
- [Release notes](https://github.com/sindresorhus/decamelize/releases)
- [Commits](sindresorhus/decamelize@v6.0.0...v6.0.1)

Updates `html2canvas-pro` from 1.5.8 to 1.5.11
- [Release notes](https://github.com/yorickshan/html2canvas-pro/releases)
- [Changelog](https://github.com/yorickshan/html2canvas-pro/blob/main/CHANGELOG.md)
- [Commits](yorickshan/html2canvas-pro@v1.5.8...v1.5.11)

Updates `json-rpc-2.0` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/shogowada/json-rpc-2.0/releases)
- [Commits](shogowada/json-rpc-2.0@v1.7.0...v1.7.1)

Updates `react-hot-toast` from 2.5.2 to 2.6.0
- [Release notes](https://github.com/timolins/react-hot-toast/releases)
- [Commits](timolins/react-hot-toast@v2.5.2...v2.6.0)

Updates `three` from 0.175.0 to 0.179.1
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

Updates `xstate` from 5.19.2 to 5.20.2
- [Release notes](https://github.com/statelyai/xstate/releases)
- [Commits](https://github.com/statelyai/xstate/compare/xstate@5.19.2...xstate@5.20.2)

Updates `@babel/preset-env` from 7.26.9 to 7.28.3
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.3/packages/babel-preset-env)

Updates `@electron-forge/cli` from 7.8.0 to 7.8.3
- [Release notes](https://github.com/electron/forge/releases)
- [Changelog](https://github.com/electron/forge/blob/main/CHANGELOG.md)
- [Commits](electron/forge@v7.8.0...v7.8.3)

Updates `@electron-forge/plugin-fuses` from 7.8.0 to 7.8.3
- [Release notes](https://github.com/electron/forge/releases)
- [Changelog](https://github.com/electron/forge/blob/main/CHANGELOG.md)
- [Commits](electron/forge@v7.8.0...v7.8.3)

Updates `@electron-forge/plugin-vite` from 7.8.0 to 7.8.3
- [Release notes](https://github.com/electron/forge/releases)
- [Changelog](https://github.com/electron/forge/blob/main/CHANGELOG.md)
- [Commits](https://github.com/electron/forge/commits/v7.8.3/packages/plugin/vite)

Updates `@lezer/generator` from 1.7.3 to 1.8.0
- [Changelog](https://github.com/lezer-parser/generator/blob/main/CHANGELOG.md)
- [Commits](lezer-parser/generator@1.7.3...1.8.0)

Updates `@nabla/vite-plugin-eslint` from 2.0.5 to 2.0.6
- [Release notes](https://github.com/nabla/vite-plugin-eslint/releases)
- [Changelog](https://github.com/nabla/vite-plugin-eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nabla/vite-plugin-eslint/commits)

Updates `@playwright/test` from 1.52.0 to 1.55.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.52.0...v1.55.0)

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

Updates `@vitest/web-worker` from 3.1.2 to 3.2.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.2.4/packages/web-worker)

Updates `eslint-plugin-import` from 2.31.0 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.31.0...v2.32.0)

Updates `eslint-plugin-testing-library` from 7.1.1 to 7.6.6
- [Release notes](https://github.com/testing-library/eslint-plugin-testing-library/releases)
- [Changelog](https://github.com/testing-library/eslint-plugin-testing-library/blob/main/.releaserc.json)
- [Commits](testing-library/eslint-plugin-testing-library@v7.1.1...v7.6.6)

Updates `msw` from 2.7.6 to 2.10.5
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.7.6...v2.10.5)

Updates `openapi-typescript` from 7.6.1 to 7.9.1
- [Release notes](https://github.com/openapi-ts/openapi-typescript/releases)
- [Changelog](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CHANGELOG.md)
- [Commits](https://github.com/openapi-ts/openapi-typescript/commits/openapi-typescript@7.9.1/packages/openapi-typescript)

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

Updates `ts-jest` from 29.3.2 to 29.4.1
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.3.2...v29.4.1)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.2)

Updates `typescript-eslint` from 8.30.1 to 8.40.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.40.0/packages/typescript-eslint)

Updates `vite-plugin-top-level-await` from 1.5.0 to 1.6.0
- [Commits](Menci/vite-plugin-top-level-await@v1.5.0...v1.6.0)

Updates `vitest` from 3.1.2 to 3.2.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.2.4/packages/vitest)

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

Updates `@rollup/plugin-typescript` from 12.1.2 to 12.1.4
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.4/packages/typescript)

Updates `rollup` from 4.40.0 to 4.48.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.40.0...v4.48.1)

Updates `rollup-plugin-dts` from 6.2.1 to 6.2.3
- [Changelog](https://github.com/Swatinem/rollup-plugin-dts/blob/master/CHANGELOG.md)
- [Commits](Swatinem/rollup-plugin-dts@v6.2.1...v6.2.3)

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

Updates `@typescript-eslint/eslint-plugin` from 8.30.1 to 8.40.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.40.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.30.1 to 8.40.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.40.0/packages/parser)

Updates `@vscode/vsce` from 3.3.2 to 3.6.0
- [Release notes](https://github.com/Microsoft/vsce/releases)
- [Commits](microsoft/vscode-vsce@v3.3.2...v3.6.0)

Updates `esbuild` from 0.25.5 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.5...v0.25.9)

Updates `glob` from 11.0.1 to 11.0.3
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v11.0.1...v11.0.3)

Updates `mocha` from 11.1.0 to 11.7.1
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/main/CHANGELOG.md)
- [Commits](mochajs/mocha@v11.1.0...v11.7.1)

---
updated-dependencies:
- dependency-name: "@codemirror/language"
  dependency-version: 6.11.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@codemirror/search"
  dependency-version: 6.5.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@codemirror/theme-one-dark"
  dependency-version: 6.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@csstools/postcss-oklab-function"
  dependency-version: 4.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: bson
  dependency-version: 6.10.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: codemirror
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: decamelize
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: html2canvas-pro
  dependency-version: 1.5.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: json-rpc-2.0
  dependency-version: 1.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: react-hot-toast
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: three
  dependency-version: 0.179.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: xstate
  dependency-version: 5.20.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@babel/preset-env"
  dependency-version: 7.28.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@electron-forge/cli"
  dependency-version: 7.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@electron-forge/plugin-fuses"
  dependency-version: 7.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@electron-forge/plugin-vite"
  dependency-version: 7.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@lezer/generator"
  dependency-version: 1.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@nabla/vite-plugin-eslint"
  dependency-version: 2.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@playwright/test"
  dependency-version: 1.55.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/three"
  dependency-version: 0.179.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@vitest/web-worker"
  dependency-version: 3.2.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-import
  dependency-version: 2.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-testing-library
  dependency-version: 7.6.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: msw
  dependency-version: 2.10.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: openapi-typescript
  dependency-version: 7.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: postcss
  dependency-version: 8.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: ts-jest
  dependency-version: 29.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript-eslint
  dependency-version: 8.40.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: vite-plugin-top-level-await
  dependency-version: 1.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: vitest
  dependency-version: 3.2.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: ws
  dependency-version: 8.18.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@rollup/plugin-typescript"
  dependency-version: 12.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rollup
  dependency-version: 4.48.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: rollup-plugin-dts
  dependency-version: 6.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/vscode"
  dependency-version: 1.103.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.40.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.40.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@vscode/vsce"
  dependency-version: 3.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: esbuild
  dependency-version: 0.25.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: glob
  dependency-version: 11.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: mocha
  dependency-version: 11.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
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