Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the all-dependencies group with 23 updates in the / directory:

Package From To
cross-env 7.0.3 10.1.0
jsdom 24.1.3 27.1.0
terser 5.44.0 5.44.1
vue 3.5.22 3.5.23
@docsearch/css 3.9.0 4.3.1
@docsearch/js 3.9.0 4.3.1
@mdit-vue/plugin-component 2.1.4 3.0.2
@mdit-vue/plugin-frontmatter 2.1.4 3.0.2
@mdit-vue/plugin-headers 2.1.4 3.0.2
@mdit-vue/shared 2.1.4 3.0.2
@types/jest 29.5.14 30.0.0
@types/node 20.19.22 24.10.0
@vue/devtools-kit 7.7.7 8.0.3
@vueuse/shared 12.8.2 14.0.0
chromatic 11.29.0 13.3.3
mermaid 10.9.4 11.12.1
react 18.3.1 19.2.0
react-dom 18.3.1 19.2.0
remove-markdown 0.5.5 0.6.2
sass 1.93.2 1.93.3
shiki 2.5.0 3.15.0
sitemap 8.0.1 9.0.0
uuid 10.0.0 13.0.0

Updates cross-env from 7.0.3 to 10.1.0

Release notes

Sourced from cross-env's releases.

v10.1.0

10.1.0 (2025-09-29)

Features

  • add support for default value syntax (152ae6a)

For example:

"dev:server": "cross-env wrangler dev --port ${PORT:-8787}",

If PORT is already set, use that value, otherwise fallback to 8787.

Learn more about Shell Parameter Expansion

v10.0.0

10.0.0 (2025-07-25)

TL;DR: You should probably not have to change anything if:

  • You're using a modern maintained version of Node.js (v20+ is tested)
  • You're only using the CLI (most of you are as that's the intended purpose)

In this release (which should have been v8 except I had some issues with automated releases 🙈), I've updated all the things and modernized the package. This happened in #261

Was this needed? Not really, but I just thought it'd be fun to modernize this package.

Here's the highlights of what was done.

  • Replace Jest with Vitest for testing
  • Convert all source files from .js to .ts with proper TypeScript types
  • Use zshy for ESM-only builds (removes CJS support)
  • Adopt @​epic-web/config for TypeScript, ESLint, and Prettier
  • Update to Node.js >=20 requirement
  • Remove kcd-scripts dependency
  • Add comprehensive e2e tests with GitHub Actions matrix testing
  • Update GitHub workflow with caching and cross-platform testing
  • Modernize documentation and remove outdated sections
  • Update all dependencies to latest versions
  • Add proper TypeScript declarations and exports

The tool maintains its original functionality while being completely modernized with the latest tooling and best practices

BREAKING CHANGES

  • This is a major rewrite that changes the module format from CommonJS to ESM-only. The package now requires Node.js >=20 and only exports ESM modules (not relevant in most cases).
Commits
  • 152ae6a feat: add support ofr default value syntax
  • bd70d1a chore: upgrade zshy
  • 8e0b190 chore(ci): get coverage
  • 8635e80 fix(release): manually release a major version
  • 3a58f22 chore: fix npmrc registry
  • b70bfff chore(ci): add names to steps and workflows
  • cc5759d fix(release): manually release a major version
  • 080a859 chore: remove publish script
  • 31e5bc7 chore(ci): restore built files
  • 81e9c34 chore(ci): add back semantic-release
  • Additional commits viewable in compare view

Updates jsdom from 24.1.3 to 27.1.0

Release notes

Sourced from jsdom's releases.

Version 27.1.0

  • Improved CSS parsing by switching to @acemir/cssom, including support for nested selectors, nested declarations, layer statements, and improved at-rule validation. (acemir)
  • Fixed some selector cache invalidation issues where changes to attributes were not being picked up. (asamuzaK)
  • Fixed package.json "engines" field to reflect the new minimum Node.js versions needed to run jsdom, as noted in the changelog for v27.0.1.

Version 27.0.1

This release inadvertently raised the minimum Node.js version from v20.0.0 to v20.19.0+, v22.12.0+, v24.0.0+. (This happened via a dependency update.) This probably should have been a breaking (major) change, instead of happening in a patch version, since it prevents using earlier Node.js versions.

After further testing, we found that most of our development dependencies also require these versions, and so it's not feasible for the jsdom project to support earlier Node.js versions. (For example, our testing frameworks will not run on them.) If you need to use such earlier versions, or otherwise are working in an environment which gives related errors such as ERR_REQUIRE_ESM, then please stick with the v26.1.0 release of jsdom. (Noting, of course, that such versions are unsupported, and we will not respond to bug reports opened against them.)

Subsequent jsdom releases will explicitly require these minimum Node.js versions, and will have CI testing to ensure that the minimum version is not accidentally raised again.

Normal changelog:

  • Fixed some regressions in CSS selectors. Most such regression fixes were done in a minor update of a dependency, and thus available for all fresh installs of v27.0.0. However, one related to class="" attribute changes is only possible with a new version of jsdom. (asamuzaK)

Version 27.0.0

Changes since 26.1.0

  • Node.js v20 is now the minimum supported version.
  • Added a variety of event constructors, even though we do not implement their associated specifications or ever fire them: BeforeUnloadEvent, BlobEvent, DeviceMotionEvent (omitting requestPermission()), DeviceOrientationEvent (omitting requestPermission()), PointerEvent, PromiseRejectionEvent, and TransitionEvent.
  • Added movementX and movementY to MouseEvent. (These are from the Pointer Lock specification, the rest of which is not implemented.)
  • Added customElements.getName(). (mash-graz)
  • Updated the virtual console:
    • "jsdomError" events are now documented, with specific type properties and other properties that depend on the type.
    • sendTo() was renamed to forwardTo().
    • The jsdomErrors option to forwardTo() can be used to control which errors are sent to the Node.js console. This replaces the previous omitJSDOMErrors boolean option.
    • "jsdomError"s for failed XMLHttpRequest fetches are no longer emitted.
    • The values that are printed when forwarding "jsdomError"s to the Node.js console are streamlined.
  • Switched our CSS selector engine from nwsapi to @asamuzakjp/dom-selector, closing over 20 selector-related bugs.
  • Upgraded tough-cookie, which now considers URLs like http://localhost/ to be secure contexts (per the spec), and thus will return Secure-flagged cookies for such URLs. (colincasey)
  • Upgraded cssstyle, which brings along many improvements and fixes to the CSSStyleDeclaration object and its properties.
  • Updated the user agent stylesheet to be derived from the HTML Standard, instead of from an old revision of Chromium.
  • Changed element.click() to fire a PointerEvent instead of a MouseEvent.
  • Changed certain events to be passive by default.
  • Changed the <input> element's pattern="" attribute to use the v regular expression flag, instead of u.
  • Fixed many specification conformance issues with the Window object, including named properties and changing various data properties to accessor properties.
  • Fixed document.createEvent() to accept a more correct set of event names.
  • Fixed the ElementInternals accessibility getters and setters. (They were introduced in v23.1.0, but due to inadequate test coverage never actually worked.)
  • Fixed using Object.defineProperty() on certain objects, such as HTMLSelectElement instances.
  • Fixed jsdom.reconfigure({ url }) not updating document.baseURI or properties derived from it. (This regressed in v26.1.0.)
  • Fixed CSS system colors, as well as the initial, inherit, and unset keywords, to resolve correctly. (asamuzaK)
  • Fixed CSS display style resolution. (asamuzaK)

Changes since 27.0.0-beta.3

  • Upgraded cssstyle, which brings along various CSS parsing fixes.

Version 27.0.0-beta.3

  • Breaking change: upgraded tough-cookie, which now considers URLs like http://localhost/ to be secure contexts (per the spec), and thus will return Secure-flagged cookies for such URLs. (colincasey)

... (truncated)

Changelog

Sourced from jsdom's changelog.

27.1.0

  • Improved CSS parsing by switching to @acemir/cssom, including support for nested selectors, nested declarations, layer statements, and improved at-rule validation. (acemir)
  • Fixed some selector cache invalidation issues where changes to attributes were not being picked up. (asamuzaK)
  • Fixed package.json "engines" field to reflect the new minimum Node.js versions needed to run jsdom, as noted in the changelog for v27.0.1.

27.0.1

This release inadvertently raised the minimum Node.js version from v20.0.0 to v20.19.0+, v22.12.0+, v24.0.0+. (This happened via a dependency update.) This probably should have been a breaking (major) change, instead of happening in a patch version, since it prevents using earlier Node.js versions.

After further testing, we found that most of our development dependencies also require these versions, and so it's not feasible for the jsdom project to support earlier Node.js versions. (For example, our testing frameworks will not run on them.) If you need to use such earlier versions, or otherwise are working in an environment which gives related errors such as ERR_REQUIRE_ESM, then please stick with the v26.1.0 release of jsdom. (Noting, of course, that such versions are unsupported, and we will not respond to bug reports opened against them.)

Subsequent jsdom releases will explicitly require these minimum Node.js versions, and will have CI testing to ensure that the minimum version is not accidentally raised again.

Normal changelog:

  • Fixed some regressions in CSS selectors. Most such regression fixes were done in a minor update of a dependency, and thus available for all fresh installs of v27.0.0. However, one related to class="" attribute changes is only possible with a new version of jsdom. (asamuzaK)

27.0.0

Changes since 26.1.0

  • Node.js v20 is now the minimum supported version.
  • Added a variety of event constructors, even though we do not implement their associated specifications or ever fire them: BeforeUnloadEvent, BlobEvent, DeviceMotionEvent (omitting requestPermission()), DeviceOrientationEvent (omitting requestPermission()), PointerEvent, PromiseRejectionEvent, and TransitionEvent.
  • Added movementX and movementY to MouseEvent. (These are from the Pointer Lock specification, the rest of which is not implemented.)
  • Added customElements.getName(). (mash-graz)
  • Updated the virtual console:
    • "jsdomError" events are now documented, with specific type properties and other properties that depend on the type.
    • sendTo() was renamed to forwardTo().
    • The jsdomErrors option to forwardTo() can be used to control which errors are sent to the Node.js console. This replaces the previous omitJSDOMErrors boolean option.
    • "jsdomError"s for failed XMLHttpRequest fetches are no longer emitted.
    • The values that are printed when forwarding "jsdomError"s to the Node.js console are streamlined.
  • Switched our CSS selector engine from nwsapi to @asamuzakjp/dom-selector, closing over 20 selector-related bugs.
  • Upgraded tough-cookie, which now considers URLs like http://localhost/ to be secure contexts (per the spec), and thus will return Secure-flagged cookies for such URLs. (colincasey)
  • Upgraded cssstyle, which brings along many improvements and fixes to the CSSStyleDeclaration object and its properties.
  • Updated the user agent stylesheet to be derived from the HTML Standard, instead of from an old revision of Chromium.
  • Changed element.click() to fire a PointerEvent instead of a MouseEvent.
  • Changed certain events to be passive by default.
  • Changed the <input> element's pattern="" attribute to use the v regular expression flag, instead of u.
  • Fixed many specification conformance issues with the Window object, including named properties and changing various data properties to accessor properties.
  • Fixed document.createEvent() to accept a more correct set of event names.
  • Fixed the ElementInternals accessibility getters and setters. (They were introduced in v23.1.0, but due to inadequate test coverage never actually worked.)
  • Fixed using Object.defineProperty() on certain objects, such as HTMLSelectElement instances.
  • Fixed jsdom.reconfigure({ url }) not updating document.baseURI or properties derived from it. (This regressed in v26.1.0.)
  • Fixed CSS system colors, as well as the initial, inherit, and unset keywords, to resolve correctly. (asamuzaK)
  • Fixed CSS display style resolution. (asamuzaK)

Changes since 27.0.0-beta.3

  • Upgraded cssstyle, which brings along various CSS parsing fixes.

... (truncated)

Commits
  • adb999a Version 27.1.0
  • 91f40c4 Update dependencies and dev dependencies
  • ebad33c Note more strict minimum version requirement
  • bd02585 Swap rweb-cssom to @​acemir/cssom
  • f15c830 Add failing test for cssText setter
  • a833763 Clear domSelector cache on attribute change
  • 819ff52 Version 27.0.1
  • 23539d4 Call domSelector.clear() on class change
  • 894151b Add regression tests and update dependencies
  • aa2d8db Add a regression test for getComputedStyle() across shadow boundaries
  • Additional commits viewable in compare view

Updates terser from 5.44.0 to 5.44.1

Changelog

Sourced from terser's changelog.

v5.44.1

  • fix bitwise optimization changing the result of &&, ||
  • switches: make sure var is extracted from a deleted default case
Commits
  • 31799cf 5.44.1
  • 33b022e update changelog
  • 4f373ca fix bitwise optimization changing the result of &&, ||
  • 04039eb switches: make sure var is extracted from a deleted default case
  • See full diff in compare view

Updates vue from 3.5.22 to 3.5.23

Release notes

Sourced from vue's releases.

v3.5.23

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.23 (2025-11-06)

Bug Fixes

  • compiler-core: correctly handle ts type assertions in expressions (#13397) (e6544ac), closes #13395
  • compiler-core: fix v-bind shorthand handling for in-DOM templates (#13933) (b3cca26), closes #13930
  • compiler-sfc: resolve numeric literals and template literals without expressions as static property key (#13998) (75d44c7)
  • compiler-ssr: textarea with v-text directive SSR (#13975) (006a0c1)
  • compiler: using guard instead of non-nullish assertion (#13982) (dcc6f36)
  • custom-element: batch custom element prop patching (#13478) (c13e674), closes #12619
  • custom-element: optimize slot retrieval to avoid duplicates (#13961) (84ca349), closes #13955
  • hydration: avoid mismatch during hydrate text with newlines in interpolation (#9232) (6cbdf78), closes #9229
  • runtime-core: pass props and children to loadingComponent (#13997) (40c4b2a)
  • runtime-dom: ensure iframe sandbox is handled as an attribute to prevent unintended behavior (#13950) (5689884), closes #13946
  • suspense: clear placeholder and fallback el after resolve to enable GC (#13928) (f411c66)
  • transition-group: use offsetLeft and offsetTop instead of getBoundingClientRect to avoid transform scale affect animation (#6108) (dc4dd59), closes #6105
  • v-model: handle number modifier on change (#13959) (8fbe48f), closes #13958
Commits
  • 5cf0097 release: v3.5.23
  • f411c66 fix(suspense): clear placeholder and fallback el after resolve to enable GC (...
  • dc4dd59 fix(TransitionGroup): use offsetLeft and offsetTop instead of getBoundingClie...
  • 40c4b2a fix(runtime-core): pass props and children to loadingComponent (#13997)
  • e6544ac fix(compiler-core): correctly handle ts type assertions in expressions (#13397)
  • 75d44c7 fix(compiler-sfc): resolve numeric literals and template literals without exp...
  • dcc6f36 fix(compiler): using guard instead of non-nullish assertion (#13982)
  • 8fbe48f fix(v-model): handle number modifier on change (#13959)
  • 6cbdf78 fix(hydration): avoid mismatch during hydrate text with newlines in interpola...
  • 006a0c1 fix(compiler-ssr): textarea with v-text directive SSR (#13975)
  • Additional commits viewable in compare view

Updates @docsearch/css from 3.9.0 to 4.3.1

Release notes

Sourced from @​docsearch/css's releases.

v4.3.1

4.3.1 (2025-11-04)

Bug Fixes

  • npm: Publish new packages with public access (#2795) (2d045b5)

v4.2.0

4.2.0 (2025-10-06)

Bug Fixes

  • askai: Fixes issue with askai state being outside DocSearchModal (#2778) (5d8943b)
  • remove hit favorite and hit deletion animations (#2777) (cd9e6fb)
  • typo (1ff1198)

Features

v4.1.0

4.1.0 (2025-09-22)

Bug Fixes

Features

v4.0.1

4.0.1 (2025-09-16)

Bug Fixes

  • deps: Adds zod to dependency list (#2759) (4011294)
  • modal: Fixes issue with index typings on DocSearchModal (#2760) (55934d8)

v4.0.0

... (truncated)

Changelog

Sourced from @​docsearch/css's changelog.

4.3.1 (2025-11-04)

Bug Fixes

  • npm: Publish new packages with public access (#2795) (2d045b5)

4.3.0 (2025-11-04)

Bug Fixes

  • docsearch-js: resultsFooterComponent not working in JS CDN version (#2786) (5381e76)
  • website: Fix API Reference docs page formatting (#2783) (8980d47)
  • website: updated askai markdown documentation (#2788) (f7be2a6)

Features

4.2.0 (2025-10-06)

Bug Fixes

  • askai: Fixes issue with askai state being outside DocSearchModal (#2778) (5d8943b)
  • remove hit favorite and hit deletion animations (#2777) (cd9e6fb)
  • typo (1ff1198)

Features

4.1.0 (2025-09-22)

... (truncated)

Commits

Updates @docsearch/js from 3.9.0 to 4.3.1

Release notes

Sourced from @​docsearch/js's releases.

v4.3.1

4.3.1 (2025-11-04)

Bug Fixes

  • npm: Publish new packages with public access (#2795) (2d045b5)

v4.2.0

4.2.0 (2025-10-06)

Bug Fixes

  • askai: Fixes issue with askai state being outside DocSearchModal (#2778) (5d8943b)
  • remove hit favorite and hit deletion animations (#2777) (cd9e6fb)
  • typo (1ff1198)

Features

v4.1.0

4.1.0 (2025-09-22)

Bug Fixes

Features

v4.0.1

4.0.1 (2025-09-16)

Bug Fixes

  • deps: Adds zod to dependency list (#2759) (4011294)
  • modal: Fixes issue with index typings on DocSearchModal (#2760) (55934d8)

v4.0.0

... (truncated)

Changelog

Sourced from @​docsearch/js's changelog.

4.3.1 (2025-11-04)

Bug Fixes

  • npm: Publish new packages with public access (#2795) (2d045b5)

4.3.0 (2025-11-04)

Bug Fixes

  • docsearch-js: resultsFooterComponent not working in JS CDN version (#2786) (5381e76)
  • website: Fix API Reference docs page formatting (#2783) (8980d47)
  • website: updated askai markdown documentation (#2788) (f7be2a6)

Features

4.2.0 (2025-10-06)

Bug Fixes

  • askai: Fixes issue with askai state being outside DocSearchModal (#2778) (5d8943b)
  • remove hit favorite and hit deletion animations (#2777) (cd9e6fb)
  • typo (1ff1198)

Features

4.1.0 (2025-09-22)

... (truncated)

Commits

Updates @mdit-vue/plugin-component from 2.1.4 to 3.0.2

Release notes

Sourced from @​mdit-vue/plugin-component's releases.

v3.0.2

   🐞 Bug Fixes

    View changes on GitHub

v3.0.1

No significant changes

    View changes on GitHub

v3.0.0

No significant changes

    View changes on GitHub
Changelog

Sourced from @​mdit-vue/plugin-component's changelog.

3.0.2 (2025-08-11)

Bug Fixes

  • plugin-title: avoid output types being tree-shaken (6255fd4)

3.0.1 (2025-08-11)

Note: Version bump only for package @​mdit-vue/monorepo

3.0.0 (2025-08-11)

Build System

BREAKING CHANGES

  • drop node 18 and migrate to pure ESM packages
Commits
  • 3b5332d build: version 3.0.2
  • 6255fd4 fix(plugin-title): avoid output types being tree-shaken
  • 7a0ef91 build: add clean scripts
  • cdffe38 build: version 3.0.1
  • 3da869c build: migrate to pure esm packages
  • bbb62a4 build: version 3.0.0
  • a4775a6 build: drop node 18
  • 6d865a1 build: migrate to tsdown
  • 46407b9 build: bump deps and migrate to pnpm catalogs
  • 6256f3a build: bump deps
  • Additional commits viewable in compare view

Updates @mdit-vue/plugin-frontmatter from 2.1.4 to 3.0.2

Release notes

Sourced from @​mdit-vue/plugin-frontmatter's releases.

v3.0.2

   🐞 Bug Fixes

    View changes on GitHub

v3.0.1

No significant changes

    View changes on GitHub

v3.0.0

No significant changes

    View changes on GitHub
Changelog

Sourced from @​mdit-vue/plugin-frontmatter's changelog.

3.0.2 (2025-08-11)

Bug Fixes

  • plugin-title: avoid output types being tree-shaken (6255fd4)

3.0.1 (2025-08-11)

Note: Version bump only for package @​mdit-vue/monorepo

3.0.0 (2025-08-11)

Build System

BREAKING CHANGES

  • drop node 18 and migrate to pure ESM packages
Commits
  • 3b5332d build: version 3.0.2
  • 6255fd4 fix(plugin-title): avoid output types being tree-shaken
  • 7a0ef91 build: add clean scripts
  • cdffe38 build: version 3.0.1
  • 3da869c build: migrate to pure esm packages
  • bbb62a4 build: version 3.0.0
  • a4775a6 build: drop node 18
  • 6d865a1 build: migrate to tsdown
  • 46407b9 build: bump deps and migrate to pnpm catalogs
  • 6256f3a build: bump deps
  • Additional commits viewable in compare view

Updates @mdit-vue/plugin-headers from 2.1.4 to 3.0.2

Release notes

Sourced from @​mdit-vue/plugin-headers's releases.

v3.0.2

   🐞 Bug Fixes

    View changes on GitHub

v3.0.1

No significant changes

    View changes on GitHub

v3.0.0

No significant changes

    View changes on GitHub
Changelog

Sourced from @​mdit-vue/plugin-headers's changelog.

3.0.2 (2025-08-11)

Bug Fixes

  • plugin-title: avoid output types being tree-shaken (6255fd4)

3.0.1 (2025-08-11)

Note: Version bump only for package @​mdit-vue/monorepo

3.0.0 (2025-08-11)

Build System

BREAKING CHANGES

  • drop node 18 and migrate to pure ESM packages
Commits
  • 3b5332d build: version 3.0.2
  • 6255fd4 fix(plugin-title): avoid output types being tree-shaken
  • 7a0ef91 build: add clean scripts
  • cdffe38 build: version 3.0.1
  • 3da869c build: migrate to pure esm packages
  • bbb62a4 build: version 3.0.0
  • a4775a6 build: drop node 18
  • 6d865a1 build: migrate to tsdown

…23 updates

Bumps the all-dependencies group with 23 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cross-env](https://github.com/kentcdodds/cross-env) | `7.0.3` | `10.1.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `24.1.3` | `27.1.0` |
| [terser](https://github.com/terser/terser) | `5.44.0` | `5.44.1` |
| [vue](https://github.com/vuejs/core) | `3.5.22` | `3.5.23` |
| [@docsearch/css](https://github.com/algolia/docsearch/tree/HEAD/packages/docsearch-css) | `3.9.0` | `4.3.1` |
| [@docsearch/js](https://github.com/algolia/docsearch/tree/HEAD/packages/docsearch-js) | `3.9.0` | `4.3.1` |
| [@mdit-vue/plugin-component](https://github.com/mdit-vue/mdit-vue) | `2.1.4` | `3.0.2` |
| [@mdit-vue/plugin-frontmatter](https://github.com/mdit-vue/mdit-vue) | `2.1.4` | `3.0.2` |
| [@mdit-vue/plugin-headers](https://github.com/mdit-vue/mdit-vue) | `2.1.4` | `3.0.2` |
| [@mdit-vue/shared](https://github.com/mdit-vue/mdit-vue) | `2.1.4` | `3.0.2` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.14` | `30.0.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.19.22` | `24.10.0` |
| [@vue/devtools-kit](https://github.com/vuejs/devtools/tree/HEAD/packages/devtools-kit) | `7.7.7` | `8.0.3` |
| [@vueuse/shared](https://github.com/vueuse/vueuse/tree/HEAD/packages/shared) | `12.8.2` | `14.0.0` |
| [chromatic](https://github.com/chromaui/chromatic-cli) | `11.29.0` | `13.3.3` |
| [mermaid](https://github.com/mermaid-js/mermaid) | `10.9.4` | `11.12.1` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.0` |
| [remove-markdown](https://github.com/zuchka/remove-markdown) | `0.5.5` | `0.6.2` |
| [sass](https://github.com/sass/dart-sass) | `1.93.2` | `1.93.3` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `2.5.0` | `3.15.0` |
| [sitemap](https://github.com/ekalinin/sitemap.js) | `8.0.1` | `9.0.0` |
| [uuid](https://github.com/uuidjs/uuid) | `10.0.0` | `13.0.0` |



Updates `cross-env` from 7.0.3 to 10.1.0
- [Release notes](https://github.com/kentcdodds/cross-env/releases)
- [Changelog](https://github.com/kentcdodds/cross-env/blob/main/CHANGELOG.md)
- [Commits](kentcdodds/cross-env@v7.0.3...v10.1.0)

Updates `jsdom` from 24.1.3 to 27.1.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@24.1.3...27.1.0)

Updates `terser` from 5.44.0 to 5.44.1
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](terser/terser@v5.44.0...v5.44.1)

Updates `vue` from 3.5.22 to 3.5.23
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.22...v3.5.23)

Updates `@docsearch/css` from 3.9.0 to 4.3.1
- [Release notes](https://github.com/algolia/docsearch/releases)
- [Changelog](https://github.com/algolia/docsearch/blob/main/CHANGELOG.md)
- [Commits](https://github.com/algolia/docsearch/commits/v4.3.1/packages/docsearch-css)

Updates `@docsearch/js` from 3.9.0 to 4.3.1
- [Release notes](https://github.com/algolia/docsearch/releases)
- [Changelog](https://github.com/algolia/docsearch/blob/main/CHANGELOG.md)
- [Commits](https://github.com/algolia/docsearch/commits/v4.3.1/packages/docsearch-js)

Updates `@mdit-vue/plugin-component` from 2.1.4 to 3.0.2
- [Release notes](https://github.com/mdit-vue/mdit-vue/releases)
- [Changelog](https://github.com/mdit-vue/mdit-vue/blob/main/CHANGELOG.md)
- [Commits](mdit-vue/mdit-vue@v2.1.4...v3.0.2)

Updates `@mdit-vue/plugin-frontmatter` from 2.1.4 to 3.0.2
- [Release notes](https://github.com/mdit-vue/mdit-vue/releases)
- [Changelog](https://github.com/mdit-vue/mdit-vue/blob/main/CHANGELOG.md)
- [Commits](mdit-vue/mdit-vue@v2.1.4...v3.0.2)

Updates `@mdit-vue/plugin-headers` from 2.1.4 to 3.0.2
- [Release notes](https://github.com/mdit-vue/mdit-vue/releases)
- [Changelog](https://github.com/mdit-vue/mdit-vue/blob/main/CHANGELOG.md)
- [Commits](mdit-vue/mdit-vue@v2.1.4...v3.0.2)

Updates `@mdit-vue/shared` from 2.1.4 to 3.0.2
- [Release notes](https://github.com/mdit-vue/mdit-vue/releases)
- [Changelog](https://github.com/mdit-vue/mdit-vue/blob/main/CHANGELOG.md)
- [Commits](mdit-vue/mdit-vue@v2.1.4...v3.0.2)

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

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

Updates `@vue/devtools-kit` from 7.7.7 to 8.0.3
- [Release notes](https://github.com/vuejs/devtools/releases)
- [Commits](https://github.com/vuejs/devtools/commits/v8.0.3/packages/devtools-kit)

Updates `@vueuse/shared` from 12.8.2 to 14.0.0
- [Release notes](https://github.com/vueuse/vueuse/releases)
- [Commits](https://github.com/vueuse/vueuse/commits/v14.0.0/packages/shared)

Updates `chromatic` from 11.29.0 to 13.3.3
- [Release notes](https://github.com/chromaui/chromatic-cli/releases)
- [Changelog](https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md)
- [Commits](chromaui/chromatic-cli@v11.29.0...v13.3.3)

Updates `mermaid` from 10.9.4 to 11.12.1
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Commits](https://github.com/mermaid-js/mermaid/compare/[email protected])

Updates `react` from 18.3.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react)

Updates `react-dom` from 18.3.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react-dom)

Updates `remove-markdown` from 0.5.5 to 0.6.2
- [Commits](https://github.com/zuchka/remove-markdown/commits/0.6.2)

Updates `sass` from 1.93.2 to 1.93.3
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.93.2...1.93.3)

Updates `shiki` from 2.5.0 to 3.15.0
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v3.15.0/packages/shiki)

Updates `sitemap` from 8.0.1 to 9.0.0
- [Release notes](https://github.com/ekalinin/sitemap.js/releases)
- [Changelog](https://github.com/ekalinin/sitemap.js/blob/master/CHANGELOG.md)
- [Commits](ekalinin/sitemap.js@8.0.1...9.0.0)

Updates `uuid` from 10.0.0 to 13.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v10.0.0...v13.0.0)

---
updated-dependencies:
- dependency-name: cross-env
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: jsdom
  dependency-version: 27.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: terser
  dependency-version: 5.44.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: vue
  dependency-version: 3.5.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@docsearch/css"
  dependency-version: 4.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@docsearch/js"
  dependency-version: 4.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@mdit-vue/plugin-component"
  dependency-version: 3.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@mdit-vue/plugin-frontmatter"
  dependency-version: 3.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@mdit-vue/plugin-headers"
  dependency-version: 3.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@mdit-vue/shared"
  dependency-version: 3.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/jest"
  dependency-version: 30.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.10.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@vue/devtools-kit"
  dependency-version: 8.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@vueuse/shared"
  dependency-version: 14.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: chromatic
  dependency-version: 13.3.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: mermaid
  dependency-version: 11.12.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: react
  dependency-version: 19.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: remove-markdown
  dependency-version: 0.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: sass
  dependency-version: 1.93.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: shiki
  dependency-version: 3.15.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: sitemap
  dependency-version: 9.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: uuid
  dependency-version: 13.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

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 Nov 6, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 17, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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.

1 participant