Skip to content

Bump the minor group across 1 directory with 42 updates #7969

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@codemirror/language 6.11.0 6.11.2
@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.10
@fortawesome/react-fontawesome 0.2.2 0.2.3
@kittycad/lib 2.0.35 2.0.46
bson 6.10.3 6.10.4
codemirror 6.0.1 6.0.2
html2canvas-pro 1.5.8 1.5.11
json-rpc-2.0 1.7.0 1.7.1
three 0.175.0 0.179.1
xstate 5.19.2 5.20.1
@babel/preset-env 7.26.9 7.28.0
@electron-forge/cli 7.8.0 7.8.2
@electron-forge/plugin-fuses 7.8.0 7.8.2
@electron-forge/plugin-vite 7.8.0 7.8.2
@lezer/generator 1.7.3 1.8.0
@nabla/vite-plugin-eslint 2.0.5 2.0.6
@playwright/test 1.52.0 1.54.2
@types/three 0.175.0 0.178.1
@vitejs/plugin-react 4.4.1 4.7.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.3
msw 2.7.6 2.10.4
openapi-typescript 7.6.1 7.8.0
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.38.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.46.2
@types/vscode 1.99.1 1.102.0
@vscode/vsce 3.3.2 3.6.0
esbuild 0.25.5 0.25.8
glob 11.0.1 11.0.3
mocha 11.1.0 11.7.1

Updates @codemirror/language from 6.11.0 to 6.11.2

Changelog

Sourced from @​codemirror/language's changelog.

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
  • 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.10

Changelog

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

4.0.10

May 27, 2025

Commits

Updates @fortawesome/react-fontawesome from 0.2.2 to 0.2.3

Release notes

Sourced from @​fortawesome/react-fontawesome's releases.

Release 0.2.3

Changed

  • Font Awesome Pro+ icons are now available with an active Pro+ subscription.

  • Removed example directory and files

  • Deprecated fa-fw prop

Added

  • Added widthAuto prop

  • Added rotateBy prop

Changelog

Sourced from @​fortawesome/react-fontawesome's changelog.

0.2.3 - 2025-07-23

Changed

  • Font Awesome Pro+ icons are now available with an active Pro+ subscription.

  • Removed example directory and files

  • Deprecated fa-fw prop

Added

  • Added widthAuto prop

  • Added rotateBy prop


Commits
Maintainer changes

This version was pushed to npm by jasonlundien, a new releaser for @​fortawesome/react-fontawesome since your current version.


Updates @kittycad/lib from 2.0.35 to 2.0.46

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 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 three from 0.175.0 to 0.179.1

Commits

Updates xstate from 5.19.2 to 5.20.1

Release notes

Sourced from xstate's releases.

[email protected]

Patch Changes

[email protected]

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'
    });

[email protected]

Patch Changes

[email protected]

Patch Changes

Commits

Updates @babel/preset-env from 7.26.9 to 7.28.0

Release notes

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

v7.28.0 (2025-07-02)

🚀 New Feature

  • babel-node
  • babel-types
  • babel-compat-data, babel-preset-env
  • babel-core, babel-parser
  • babel-generator, babel-parser
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-transform-object-rest-spread, babel-traverse, babel-types
  • babel-parser, babel-traverse, babel-types
  • babel-generator, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring, babel-plugin-transform-explicit-resource-management, babel-plugin-transform-react-display-name, babel-types
  • babel-generator, babel-parser, babel-plugin-proposal-destructuring-private, babel-plugin-transform-block-scoping, babel-plugin-transform-object-rest-spread, babel-plugin-transform-typescript, babel-traverse, babel-types

🐛 Bug Fix

🏠 Internal

  • babel-compat-data, babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-json-modules, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs3

Committers: 5

v7.27.7 (2025-06-26)

Thanks @​arthur-mountain and @​evankanderson for your first PRs!

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-classes
  • babel-parser

🐛 Bug Fix

... (truncated)

Changelog

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

v7.28.0 (2025-07-02)

🚀 New Feature

  • babel-node
  • babel-types
  • babel-compat-data, babel-preset-env
  • babel-core, babel-parser
  • babel-generator, babel-parser
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-transform-object-rest-spread, babel-traverse, babel-types
  • babel-parser, babel-traverse, babel-types
  • babel-generator, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring, babel-plugin-transform-explicit-resource-management, babel-plugin-transform-react-display-name, babel-types
  • babel-generator, babel-parser, babel-plugin-proposal-destructuring-private, babel-plugin-transform-block-scoping, babel-plugin-transform-object-rest-spread, babel-plugin-transform-typescript, babel-traverse, babel-types

🐛 Bug Fix

🏠 Internal

  • babel-compat-data, babel-plugin-proposal-decorators, babel-plugin-transform-async-generator-functions, babel-plugin-transform-json-modules, babel-plugin-transform-regenerator, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs3

v7.27.7 (2025-06-26)

👓 Spec Compliance

  • babel-parser, babel-plugin-transform-classes
  • babel-parser

🐛 Bug Fix

🏠 Internal

  • babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread
    • #17389 Use NodePath#splitExportDeclaration in destructuring transforms (@​JLHwung)

... (truncated)

Commits

Updates @electron-forge/cli from 7.8.0 to 7.8.2

Release notes

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

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)

Commits
  • b8bc798 v7.8.2
  • 4440ec9 fix: hide promises from promisify (#3969)
  • 8454d18 build(deps): bump form-data from 4.0.0 to 4.0.4 (#3966)
  • 35e7b9c ci: disable macOS x64 configs (#3960)
  • 27467a0 fix: remove unused ts-node in template (#3959)
  • 3e33395 chore(plugin-vite): delete unused dependencies (#3952)
  • 161894a chore: update electron-quick-start references (#3958)
  • 2a14a65 fix(vite-typescript): add missing @types/electron-squirrel-startup dependen...
  • e982a34 ci: use latest version of wixtoolset v3 (#3946)
  • 4f879f5 fix(plugin-vite): wait for main bundle before starting app (#3944)
  • Additional commits viewable in compare view

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

Release notes

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

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

  • fix(plugin-webpack): make entry point consistent between dev and prod by @​viliml in

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

vercel bot commented Aug 4, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
modeling-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 4, 2025 3:22pm

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.2` |
| [@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.10` |
| [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) | `0.2.2` | `0.2.3` |
| [@kittycad/lib](https://github.com/KittyCAD/kittycad.ts) | `2.0.35` | `2.0.46` |
| [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` |
| [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` |
| [three](https://github.com/mrdoob/three.js) | `0.175.0` | `0.179.1` |
| [xstate](https://github.com/statelyai/xstate) | `5.19.2` | `5.20.1` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.26.9` | `7.28.0` |
| [@electron-forge/cli](https://github.com/electron/forge) | `7.8.0` | `7.8.2` |
| [@electron-forge/plugin-fuses](https://github.com/electron/forge) | `7.8.0` | `7.8.2` |
| [@electron-forge/plugin-vite](https://github.com/electron/forge/tree/HEAD/packages/plugin/vite) | `7.8.0` | `7.8.2` |
| [@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.54.2` |
| [@types/three](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/three) | `0.175.0` | `0.178.1` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.4.1` | `4.7.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.3` |
| [msw](https://github.com/mswjs/msw) | `2.7.6` | `2.10.4` |
| [openapi-typescript](https://github.com/openapi-ts/openapi-typescript/tree/HEAD/packages/openapi-typescript) | `7.6.1` | `7.8.0` |
| [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.38.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.46.2` |
| [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) | `1.99.1` | `1.102.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.8` |
| [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.2
- [Changelog](https://github.com/codemirror/language/blob/main/CHANGELOG.md)
- [Commits](codemirror/language@6.11.0...6.11.2)

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.10
- [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 `@fortawesome/react-fontawesome` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/FortAwesome/react-fontawesome/releases)
- [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/0.2.x/CHANGELOG.md)
- [Commits](FortAwesome/react-fontawesome@0.2.2...0.2.3)

Updates `@kittycad/lib` from 2.0.35 to 2.0.46
- [Release notes](https://github.com/KittyCAD/kittycad.ts/releases)
- [Commits](KittyCAD/kittycad.ts@v2.0.35...v2.0.46)

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 `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 `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.1
- [Release notes](https://github.com/statelyai/xstate/releases)
- [Commits](https://github.com/statelyai/xstate/compare/[email protected]@5.20.1)

Updates `@babel/preset-env` from 7.26.9 to 7.28.0
- [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.0/packages/babel-preset-env)

Updates `@electron-forge/cli` from 7.8.0 to 7.8.2
- [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.2)

Updates `@electron-forge/plugin-fuses` from 7.8.0 to 7.8.2
- [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.2)

Updates `@electron-forge/plugin-vite` from 7.8.0 to 7.8.2
- [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.2/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.54.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.52.0...v1.54.2)

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

Updates `@vitejs/plugin-react` from 4.4.1 to 4.7.0
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/[email protected]/packages/plugin-react)

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.3
- [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.3)

Updates `msw` from 2.7.6 to 2.10.4
- [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.4)

Updates `openapi-typescript` from 7.6.1 to 7.8.0
- [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/[email protected]/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.38.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.38.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.46.2
- [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.46.2)

Updates `@types/vscode` from 1.99.1 to 1.102.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.38.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.38.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.30.1 to 8.38.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.38.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.8
- [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.8)

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.2
  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.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@fortawesome/react-fontawesome"
  dependency-version: 0.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@kittycad/lib"
  dependency-version: 2.0.46
  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: 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: 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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@babel/preset-env"
  dependency-version: 7.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@electron-forge/cli"
  dependency-version: 7.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@electron-forge/plugin-fuses"
  dependency-version: 7.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@electron-forge/plugin-vite"
  dependency-version: 7.8.2
  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.54.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/three"
  dependency-version: 0.178.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 4.7.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.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: msw
  dependency-version: 2.10.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: openapi-typescript
  dependency-version: 7.8.0
  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.38.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.46.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/vscode"
  dependency-version: 1.102.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.38.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.38.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.8
  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] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/minor-ace3e4d0ec branch from aba2d84 to 381ed3a Compare August 4, 2025 15:09
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