Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2025

Bumps the minor group with 28 updates:

Package From To
@codemirror/autocomplete 6.18.7 6.19.0
@codemirror/commands 6.8.1 6.9.0
@codemirror/lint 6.8.5 6.9.0
react-hot-toast 2.5.2 2.6.0
three 0.175.0 0.180.0
@types/three 0.175.0 0.180.0
xstate 5.19.2 5.22.1
@babel/preset-env 7.26.9 7.28.3
@electron-forge/cli 7.8.0 7.9.0
@electron-forge/plugin-fuses 7.8.0 7.9.0
@electron-forge/plugin-vite 7.8.0 7.9.0
@lezer/generator 1.7.3 1.8.0
@playwright/test 1.52.0 1.55.1
@testing-library/jest-dom 6.8.0 6.9.1
@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.11.0
msw 2.7.6 2.11.3
openapi-typescript 7.6.1 7.9.1
ts-jest 29.3.2 29.4.4
typescript 5.8.3 5.9.3
typescript-eslint 8.30.1 8.45.0
vite-plugin-top-level-await 1.5.0 1.6.0
@types/vscode 1.99.1 1.104.0
@typescript-eslint/eslint-plugin 8.30.1 8.45.0
@typescript-eslint/parser 8.30.1 8.45.0
@vscode/vsce 3.3.2 3.6.2
mocha 11.1.0 11.7.4

Updates @codemirror/autocomplete from 6.18.7 to 6.19.0

Changelog

Sourced from @​codemirror/autocomplete's changelog.

6.19.0 (2025-09-26)

New features

Completion sections may now set their rank to dynamic to indicate their order should be determined by the matching score of their best-matching option.

Commits

Updates @codemirror/commands from 6.8.1 to 6.9.0

Changelog

Sourced from @​codemirror/commands's changelog.

6.9.0 (2025-10-02)

Bug fixes

Prevent the default behavior of backspace and delete keys, to prevent the browser from doing anything creative when there's nothing to delete.

New features

Implement new addCursorAbove and addCursorBelow commands. Bind them to Mod-Alt-ArrowUp/Down in the default keymap.

Commits
  • 49959cd Mark version 6.9.0
  • 775f8de Add preventDefault flag to backspace and delete commands
  • 2ff2e3d Make implementation of addCursorAbove/Below a bit more efficient
  • ec02f63 Add addCursorAbove/Below commands
  • See full diff in compare view

Updates @codemirror/lint from 6.8.5 to 6.9.0

Changelog

Sourced from @​codemirror/lint's changelog.

6.9.0 (2025-10-02)

Bug fixes

Multiple configurations to linter will now be merged without raising an error.

New features

The new markClass option to actions makes it possible to style action buttons.

Commits
  • 73a454b Mark version 6.9.0
  • 9bc40cb Add merge logic for all config options
  • 4f3adcf Touch up doc comment
  • 50bd118 Make it possible to include a button CSS class in lint actions.
  • See full diff in compare view

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 'main' into global-settings 0953822
  • Add first version of multi toaster page 5b1ee55
  • Merge branch 'main' 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.180.0

Commits

Updates @types/three from 0.175.0 to 0.180.0

Commits

Updates xstate from 5.19.2 to 5.22.1

Release notes

Sourced from xstate's releases.

[email protected]

Patch Changes

[email protected]

Minor Changes

  • #5367 76c857e Thanks @​davidkpiano! - Add type-bound action helpers to setup():

    • createAction(fn) – create type-safe custom actions
    • setup().assign(...), setup().sendTo(...), setup().raise(...), setup().log(...), setup().cancel(...), setup().stopChild(...), setup().enqueueActions(...), setup().emit(...), setup().spawnChild(...) – setup-scoped helpers that are fully typed to the setup's context/events/actors/guards/delays/emitted.

    These helpers return actions that are bound to the specific setup() they were created from and can be used directly in the machine produced by that setup.

    const machineSetup = setup({
      types: {} as {
        context: {
          count: number;
        };
        events: { type: 'inc'; value: number } | { type: 'TEST' };
        emitted: { type: 'PING' };
      }
    });
    // Custom action
    const action = machineSetup.createAction(({ context, event }) => {
    console.log(context.count, event.value);
    });
    // Type-bound built-ins (no wrapper needed)
    const increment = machineSetup.assign({
    count: ({ context }) => context.count + 1
    });
    const raiseTest = machineSetup.raise({ type: 'TEST' });
    const ping = machineSetup.emit({ type: 'PING' });
    const batch = machineSetup.enqueueActions(({ enqueue, check }) => {
    if (check(() => true)) {
    enqueue(increment);
    }
    });

... (truncated)

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.9.0

Release notes

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

v7.9.0

What's Changed

Vite Plugin Changes

In this release, a few improvements to the Vite plugin are important to note:

  • We've had Out of Memory issues reported in the past for Vite builds with many renderer targets (ref electron/forge#3965). Forge 7.9 adds the ability to limit the number of concurrent builds with the concurrent configuration flag. Note that another workaround to memory issues is to increase V8's max memory size using the --max_old_space_size CLI flag in Node.
  • Forge 7.9 changes the default behaviour of Vite's static asset handling. Previously, the publicDir would copy to all build targets, where apps would typically only want to have the dir available for the web/renderer target. If you need to change this behaviour back, enable the build.copyPublicDir option in the relevant Vite configurations.

Features:

Bug Fixes and Improvements

New Contributors

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

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

... (truncated)

Changelog

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

Changelog

The changelog for subsequent updates is available for each release independently on this repo's GitHub Releases page. This document is preserved for historical purposes.

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

... (truncated)

Commits

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

Release notes

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

v7.9.0

What's Changed

Vite Plugin Changes

In this release, a few improvements to the Vite plugin are important to note:

  • We've had Out of Memory issues reported in the past for Vite builds with many renderer targets (ref electron/forge#3965). Forge 7.9 adds the ability to limit the number of concurrent builds with the concurrent configuration flag. Note that another workaround to memory issues is to increase V8's max memory size using the --max_old_space_size CLI flag in Node.
  • Forge 7.9 changes the default behaviour of Vite's static asset handling. Previously, the publicDir would copy to all build targets, where apps would typically only want to have the dir available for the web/renderer target. If you need to change this behaviour back, enable the build.copyPublicDir option in the relevant Vite configurations.

Features:

Bug Fixes and Improvements

New Contributors

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

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

... (truncated)

Changelog

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

Changelog

The changelog for subsequent updates is available for each release independently on this repo's GitHub Releases page. This document is preserved for historical purposes.

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

... (truncated)

Commits

Updates @electron-forge/plugin-vite from 7.8.0 to 7.9.0

Release notes

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

v7.9.0

What's Changed

Vite Plugin Changes

In this release, a few improvements to the Vite plugin are important to note:

  • We've had Out of Memory issues reported in the past for Vite builds with many renderer targets (ref electron/forge#3965). Forge 7.9 adds the ability to limit the number of concurrent builds with the concurrent configuration flag. Note that another workaround to memory issues is to increase V8's max memory size using the --max_old_space_size CLI flag in Node.
  • Forge 7.9 changes the default behaviour of Vite's static asset handling. Previously, the publicDir would copy to all build targets, where apps would typically only want to have the dir available for the web/renderer target. If you need to change this behaviour back, enable the build.copyPublicDir option in the relevant Vite configurations.

Features:

Bug Fixes and Improvements

New Contributors

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

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

... (truncated)

Changelog

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

Changelog

The changelog for subsequent updates is available for each release independently on this repo's GitHub Releases page. This document is preserved for historical purposes.

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

... (truncated)

Commits
  • cd63f57 v7.9.0
  • 1631a3e fix(plugin-vite): clearer bundle error state (#3987)
  • ffe7712 fix(plugin-vite): support electron/* subpath imports (#3988)
  • 7e99ef9 feat(plugin-vite): add concurrency option (#3990)
  • 46ac369 fix(plugin-vite): handle object-like inputs from rollup options in CLI output...
  • 717faf9 chore: use Prettier 3.6 with experimental CLI (#3977)
  • 8eb3876 fix(plugin-vite): only copy /public in the renderer (#3971)

Bumps the minor group with 28 updates:

| Package | From | To |
| --- | --- | --- |
| [@codemirror/autocomplete](https://github.com/codemirror/autocomplete) | `6.18.7` | `6.19.0` |
| [@codemirror/commands](https://github.com/codemirror/commands) | `6.8.1` | `6.9.0` |
| [@codemirror/lint](https://github.com/codemirror/lint) | `6.8.5` | `6.9.0` |
| [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.180.0` |
| [@types/three](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/three) | `0.175.0` | `0.180.0` |
| [xstate](https://github.com/statelyai/xstate) | `5.19.2` | `5.22.1` |
| [@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.9.0` |
| [@electron-forge/plugin-fuses](https://github.com/electron/forge) | `7.8.0` | `7.9.0` |
| [@electron-forge/plugin-vite](https://github.com/electron/forge/tree/HEAD/packages/plugin/vite) | `7.8.0` | `7.9.0` |
| [@lezer/generator](https://github.com/lezer-parser/generator) | `1.7.3` | `1.8.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.52.0` | `1.55.1` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.8.0` | `6.9.1` |
| [@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.11.0` |
| [msw](https://github.com/mswjs/msw) | `2.7.6` | `2.11.3` |
| [openapi-typescript](https://github.com/openapi-ts/openapi-typescript/tree/HEAD/packages/openapi-typescript) | `7.6.1` | `7.9.1` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.3.2` | `29.4.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.30.1` | `8.45.0` |
| [vite-plugin-top-level-await](https://github.com/Menci/vite-plugin-top-level-await) | `1.5.0` | `1.6.0` |
| [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) | `1.99.1` | `1.104.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.30.1` | `8.45.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.30.1` | `8.45.0` |
| [@vscode/vsce](https://github.com/Microsoft/vsce) | `3.3.2` | `3.6.2` |
| [mocha](https://github.com/mochajs/mocha) | `11.1.0` | `11.7.4` |


Updates `@codemirror/autocomplete` from 6.18.7 to 6.19.0
- [Changelog](https://github.com/codemirror/autocomplete/blob/main/CHANGELOG.md)
- [Commits](codemirror/autocomplete@6.18.7...6.19.0)

Updates `@codemirror/commands` from 6.8.1 to 6.9.0
- [Changelog](https://github.com/codemirror/commands/blob/main/CHANGELOG.md)
- [Commits](codemirror/commands@6.8.1...6.9.0)

Updates `@codemirror/lint` from 6.8.5 to 6.9.0
- [Changelog](https://github.com/codemirror/lint/blob/main/CHANGELOG.md)
- [Commits](codemirror/lint@6.8.5...6.9.0)

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.180.0
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

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

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

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

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

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

Updates `@testing-library/jest-dom` from 6.8.0 to 6.9.1
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.8.0...v6.9.1)

Updates `@types/three` from 0.175.0 to 0.180.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.11.0
- [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.11.0)

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

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/[email protected]/packages/openapi-typescript)

Updates `ts-jest` from 29.3.2 to 29.4.4
- [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.4)

Updates `typescript` from 5.8.3 to 5.9.3
- [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.3)

Updates `typescript-eslint` from 8.30.1 to 8.45.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.45.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 `@types/vscode` from 1.99.1 to 1.104.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.45.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.45.0/packages/eslint-plugin)

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

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

Updates `mocha` from 11.1.0 to 11.7.4
- [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.4)

---
updated-dependencies:
- dependency-name: "@codemirror/autocomplete"
  dependency-version: 6.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@codemirror/commands"
  dependency-version: 6.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@codemirror/lint"
  dependency-version: 6.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.180.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/three"
  dependency-version: 0.180.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: xstate
  dependency-version: 5.22.1
  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.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@electron-forge/plugin-fuses"
  dependency-version: 7.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@electron-forge/plugin-vite"
  dependency-version: 7.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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: "@playwright/test"
  dependency-version: 1.55.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@testing-library/jest-dom"
  dependency-version: 6.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/three"
  dependency-version: 0.180.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.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: msw
  dependency-version: 2.11.3
  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: ts-jest
  dependency-version: 29.4.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript-eslint
  dependency-version: 8.45.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: "@types/vscode"
  dependency-version: 1.104.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@vscode/vsce"
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: mocha
  dependency-version: 11.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 6, 2025
@dependabot dependabot bot requested review from a team as code owners October 6, 2025 11:38
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 6, 2025
Copy link

vercel bot commented Oct 6, 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 Oct 6, 2025 0:12am

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