Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2025

Bumps the vite group with 13 updates:

Package From To
@julr/vite-plugin-validate-env 1.3.0 2.2.0
@vitejs/plugin-react-swc 3.8.0 4.2.2
@vitest/coverage-v8 1.6.1 4.0.16
vite 5.4.14 7.3.0
vite-plugin-checker 0.7.2 0.12.0
vite-plugin-compression2 0.11.0 2.4.0
vite-plugin-radar 0.9.6 0.10.1
vite-plugin-svgr 4.3.0 4.5.0
vite-tsconfig-paths 4.3.2 6.0.3
vitest 1.6.1 4.0.16
vite-plugin-dts 3.9.1 4.5.4
vite-plugin-lib-inject-css 1.3.0 2.2.2
@storybook/react-vite 8.5.8 10.1.11

Updates @julr/vite-plugin-validate-env from 1.3.0 to 2.2.0

Release notes

Sourced from @​julr/vite-plugin-validate-env's releases.

v2.2.0

Changes

  • Add support for Vite 7
    View changes on GitHub

v2.1.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v2.0.0

   🚨 Breaking Changes

    View changes on GitHub
Commits
  • 6309794 chore: release v2.2.0
  • 4ba3ad8 chore: update dependencies and accept vite 7 as peer deps
  • a3ea9c1 docs: fix missing validator and schema in env.ts example (#42)
  • 7f82fe1 docs: fix TypeScript declaration filename to match Vite conventions (#43)
  • 0bf9d7a chore: release v2.1.0
  • b5b0e98 chore: update dependencies
  • 47026f1 feat: expose function for validation without running Vite (#36)
  • 15d4300 fix: include @standard-schema/spec as a dependency (#38)
  • db7de67 docs: recommend strictImportMetaEnv
  • cfa9502 chore: release v2.0.0
  • Additional commits viewable in compare view

Updates @vitejs/plugin-react-swc from 3.8.0 to 4.2.2

Release notes

Sourced from @​vitejs/plugin-react-swc's releases.

[email protected]

Update code to support newer rolldown-vite (#978)

rolldown-vite will remove optimizeDeps.rollupOptions in favor of optimizeDeps.rolldownOptions soon. This plugin now uses optimizeDeps.rolldownOptions to support newer rolldown-vite. Please update rolldown-vite to the latest version if you are using an older version.

[email protected]

Remove generic parameter on Plugin to avoid type error with Rollup 4/Vite 5 and skipLibCheck: false.

I expect very few people to currently use this feature, but if you are extending the React plugin via api object, you can get back the typing of the hook by importing ViteReactPluginApi:

import type { Plugin } from 'vite'
import type { ViteReactPluginApi } from '@vitejs/plugin-react'
export const somePlugin: Plugin = {
name: 'some-plugin',
api: {
reactBabel: (babelConfig) => {
babelConfig.plugins.push('some-babel-plugin')
},
} satisfies ViteReactPluginApi,
}

[email protected]

Fix @vitejs/plugin-react-swc/preamble on build (#962)

[email protected]

Update peer dependency range to target Vite 5

There were no breaking change that impacted this plugin, so any combination of React plugins and Vite core version will work.

Align jsx runtime for optimized dependencies

This will only affect people using internal libraries that contains untranspiled JSX. This change aligns the optimizer with the source code and avoid issues when the published source don't have React in the scope.

Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.

[email protected]

Add @vitejs/plugin-react-swc/preamble virtual module for SSR HMR (#890)

SSR applications can now initialize HMR runtime by importing @vitejs/plugin-react-swc/preamble at the top of their client entry instead of manually calling transformIndexHtml. This simplifies SSR setup for applications that don't use the transformIndexHtml API.

Use SWC when useAtYourOwnRisk_mutateSwcOptions is provided (#951)

Previously, this plugin did not use SWC if plugins were not provided even if useAtYourOwnRisk_mutateSwcOptions was provided. This is now fixed.

[email protected]

  • Enable retainLines to get correct line numbers for jsxDev (fix #235)

... (truncated)

Changelog

Sourced from @​vitejs/plugin-react-swc's changelog.

4.2.2 (2025-11-12)

Update code to support newer rolldown-vite (#978)

rolldown-vite will remove optimizeDeps.rollupOptions in favor of optimizeDeps.rolldownOptions soon. This plugin now uses optimizeDeps.rolldownOptions to support newer rolldown-vite. Please update rolldown-vite to the latest version if you are using an older version.

4.2.1 (2025-11-05)

Fix @vitejs/plugin-react-swc/preamble on build (#962)

4.2.0 (2025-10-24)

Add @vitejs/plugin-react-swc/preamble virtual module for SSR HMR (#890)

SSR applications can now initialize HMR runtime by importing @vitejs/plugin-react-swc/preamble at the top of their client entry instead of manually calling transformIndexHtml. This simplifies SSR setup for applications that don't use the transformIndexHtml API.

Use SWC when useAtYourOwnRisk_mutateSwcOptions is provided (#951)

Previously, this plugin did not use SWC if plugins were not provided even if useAtYourOwnRisk_mutateSwcOptions was provided. This is now fixed.

4.1.0 (2025-09-17)

Set SWC cacheRoot options

This is set to {viteCacheDir}/swc and override the default of .swc.

Perf: simplify refresh wrapper generation (#835)

4.0.1 (2025-08-19)

Set optimizeDeps.rollupOptions.transform.jsx instead of optimizeDeps.rollupOptions.jsx for rolldown-vite (#735)

optimizeDeps.rollupOptions.jsx is going to be deprecated in favor of optimizeDeps.rollupOptions.transform.jsx.

4.0.0 (2025-08-07)

4.0.0-beta.0 (2025-07-28)

Require Node 20.19+, 22.12+

This plugin now requires Node 20.19+ or 22.12+.

3.11.0 (2025-07-18)

Add HMR support for compound components (#518)

HMR now works for compound components like this:

const Root = () => <div>Accordion Root</div>
</tr></table> 

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​vitejs/plugin-react-swc since your current version.


Updates @vitest/coverage-v8 from 1.6.1 to 4.0.16

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.0.16

   🐞 Bug Fixes

    View changes on GitHub

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.0.14

   🚀 Experimental Features

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​vitest/coverage-v8 since your current version.


Updates vite from 5.4.14 to 7.3.0

Release notes

Sourced from vite's releases.

v7.3.0

Please refer to CHANGELOG.md for details.

v7.2.7

Please refer to CHANGELOG.md for details.

v7.2.6

Please refer to CHANGELOG.md for details.

v7.2.5

Please refer to CHANGELOG.md for details.

Note: 7.2.5 failed to publish so it is skipped on npm

v7.2.4

Please refer to CHANGELOG.md for details.

v7.2.3

Please refer to CHANGELOG.md for details.

v7.2.2

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.2.1

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.2.0

Please refer to CHANGELOG.md for details.

v7.2.0-beta.1

Please refer to CHANGELOG.md for details.

v7.2.0-beta.0

Please refer to CHANGELOG.md for details.

v7.1.12

Please refer to CHANGELOG.md for details.

v7.1.11

Please refer to CHANGELOG.md for details.

v7.1.10

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

7.3.0 (2025-12-15)

Features

  • deps: update esbuild from ^0.25.0 to ^0.27.0 (#21183) (cff26ec)

7.2.7 (2025-12-08)

Bug Fixes

7.2.6 (2025-12-01)

7.2.5 (2025-12-01)

Bug Fixes

Performance Improvements

Documentation

  • clarify manifest.json imports field is JS chunks only (#21136) (46d3077)

Miscellaneous Chores

7.2.4 (2025-11-20)

Bug Fixes

  • revert "perf(deps): replace debug with obug (#21107)" (2d66b7b)

7.2.3 (2025-11-20)

Bug Fixes

  • allow multiple bindCLIShortcuts calls with shortcut merging (#21103) (5909efd)
  • deps: update all non-major dependencies (#21096) (6a34ac3)
  • deps: update all non-major dependencies (#21128) (4f8171e)

Performance Improvements

Miscellaneous Chores

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite since your current version.


Updates vite-plugin-checker from 0.7.2 to 0.12.0

Release notes

Sourced from vite-plugin-checker's releases.

[email protected]

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits
  • 88de310 v0.12.0
  • 49802a8 chore(deps): update dependency @​vue/language-core to ~3.1.7 (#619)
  • fee51fe chore(deps): update dependency @​vitejs/plugin-vue to ^6.0.2 (#618)
  • c05b1ad chore(deps): update dependency eslint to v9.39.1 (#609)
  • 8e73eaa chore(deps): update dependency @​tsconfig/node20 to ^20.1.8 (#613)
  • a719994 chore(deps): update dependency @​tsconfig/strictest to ^2.0.8 (#614)
  • 1c1ec15 chore(deps): update dependency @​tsconfig/node20 to ^20.1.7 (#612)
  • c4d014c chore(deps): update danielroe/provenance-action action to v0.1.1 (#611)
  • 8732c96 feat(biome): Add watchPath option (#590)
  • 9d906eb chore: revert pnpm trust policy and restore provenance action
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite-plugin-checker since your current version.


Updates vite-plugin-compression2 from 0.11.0 to 2.4.0

Release notes

Sourced from vite-plugin-compression2's releases.

v2.4.0

  • Add support for rolldown-vite

v2.3.1

  • Fixed where it didn't work with vite manifest plugin.

v2.3.0

  • Add new option artifacts.

v2.2.1

  • Enhanced algorithms option to accept alias strings in array format.
  • Add new option logLevel to control log in stdout.

v2.2.0

  • Add compression algorithm aliases.
  • The correct variable should be passed when using custom filename.

Credits

@​solonovamax

v2.1.0

  • Add zstd support. (Use the built-in zstd of nodejs. Note that you need to ensure your local node version)

v2.0.1

  • Fix build script.

v2.0.0

Major Changes

  • Changed algorithm option to algorithms (array support)
  • Removed compressionOptions in favor of new defineAlgorithm() helper
  • Enhanced API for better developer experience

New Features

  • Support for multiple compression algorithms in a single plugin instance
  • New defineAlgorithm() helper for better type-safety and options control
  • Custom compression algorithm support via function callbacks

Improvements

  • Better TypeScript type definitions
  • Simplified configuration for common use cases
  • Added comprehensive migration guide
  • Added Q&A document for common usage patterns

See the Migration Guide for detailed upgrade instructions.

... (truncated)

Changelog

Sourced from vite-plugin-compression2's changelog.

2.4.0

  • Add support for rolldown-vite

2.3.1

  • Fixed where it didn't work with vite manifest plugin.

2.3.0

  • Add new option artifacts.

2.2.1

  • Enhanced algorithms option to accept alias strings in array format.
  • Add new option logLevel to control log in stdout.

2.2.0

  • Add compression algorithm aliases.
  • The correct variable should be passed when using custom filename.

Credits

@​solonovamax

2.1.0

  • Add zstd support. (Use the built-in zstd of nodejs. Note that you need to ensure your local node version)

2.0.1

  • Fix build script.

2.0.0

Major Changes

  • Changed algorithm option to algorithms (array support)
  • Removed compressionOptions in favor of new defineAlgorithm() helper
  • Enhanced API for better developer experience

New Features

  • Support for multiple compression algorithms in a single plugin instance
  • New defineAlgorithm() helper for better type-safety and options control
  • Custom compression algorithm support via function callbacks

Improvements

... (truncated)

Commits
  • db3ebf2 chore: release v2.4.0
  • ce140f3 workflow: remove low-version NodeJs for CI
  • 9f3c812 feat: manifest support rolldown vite
  • bc8aa11 docs: enhance documentation with deployment guides and framework integration ...
  • 9d7d7ca chore: release v2.3.1
  • 64a8896 docs: add download statics in readme.md (#85)
  • 6d60eb0 chore: release v2.3.0
  • c5e137d feat: add new option artifacts
  • 1b8a19d chore: release v2.2.1
  • c5154cb feat: support passing alias without helper
  • Additional commits viewable in compare view

Updates vite-plugin-radar from 0.9.6 to 0.10.1

Release notes

Sourced from vite-plugin-radar's releases.

v0.10.1

What's Changed

New Contributors

Full Changelog: stafyniaksacha/vite-plugin-radar@v0.10.0...v0.10.1

v0.10.0

Potential breaking changes

  • disable default export, only named export will work
- import VitePluginRadar from 'vite-plugin-radar'
+ import { VitePluginRadar } from 'vite-plugin-radar'

What's Changed

New Contributors

Full Changelog: stafyniaksacha/vite-plugin-radar@v0.9.6...v0.10.0

Changelog

Sourced from vite-plugin-radar's changelog.

0.10.1 (2025-07-22)

Features

Bug Fixes

  • yandex metrika base link changed to a new one (#40) (ac24b89)

0.10.0 (2025-01-17)

⚠ BREAKING CHANGES

  • disable default export

Features

Commits

Updates vite-plugin-svgr from 4.3.0 to 4.5.0

Release notes

Sourced from vite-plugin-svgr's releases.

v4.5.0

No significant changes

    View changes on GitHub
Commits

Updates vite-tsconfig-paths from 4.3.2 to 6.0.3

Release notes

Sourced from vite-tsconfig-paths's releases.

v6.0.0

Note: No intentional breaking changes. Major version bump due to extensive internal refactoring; downgrade to v5 if needed.

Highlights

  • On-demand tsconfig discovery via projectDiscovery: "lazy", while eager discovery remains the default.
  • tsconfig/jsconfig files are watched and reloaded automatically in both modes, including during vite build --watch.
  • New logFile option for per-import resolution traces (pass true for vite-tsconfig-paths.log or provide a path).
  • Support for root /* aliases and other absolute-style imports.
  • Support for .astro files when allowJs/loose is enabled.

Fixes

  • More reliable tsconfig watching and resolver refreshes: handles lazy discovery edge cases, recreates resolvers after file changes, tolerates missing directories, and copes better with virtual importers.
  • Windows path handling now normalizes drive-letter casing to avoid missed matches (#183).

Upgrade notes

  • Install the stable release: pnpm add -D vite-tsconfig-paths.
  • Opt into lazy discovery or logging when needed:
import tsconfigPaths from 'vite-tsconfig-paths'
export default {
plugins: [
tsconfigPaths({
projectDiscovery: 'lazy',
logFile: true,
}),
],
}

  • Rooted path patterns such as "/*": ["src/*"] now resolve the same way tsserver does.

v6.0.0-beta.4

  • fix(windows): ensure drive letter is uppercase (#183)
  • feat: add .astro to JS-like extension regex (fbbc8edb86606c612565a6672c8e0ae93f0001a0)

v6.0.0-beta.3

  • Added support for /* path aliases. (#101)

v6.0.0-beta.2

  • Added a new logFile option.
    Pass logFile: true and the plugin will create a vite-tsconfig-paths.log file in your working directory.

    Using DEBUG=vite-tsconfig-paths in the past has worked pretty well, but it isn't always the most readable. In v6 and above, this plugin will still have debug logs using this approach, but module resolution will only be logged through the new logFile option. The log file will be comprehensive (as in, every import that vite-tsconfig-paths receives will be logged). If an import goes unhandled by this plu...

    Description has been truncated

Bumps the vite group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@julr/vite-plugin-validate-env](https://github.com/Julien-R44/vite-plugin-validate-env) | `1.3.0` | `2.2.0` |
| [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `3.8.0` | `4.2.2` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `1.6.1` | `4.0.16` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.14` | `7.3.0` |
| [vite-plugin-checker](https://github.com/fi3ework/vite-plugin-checker) | `0.7.2` | `0.12.0` |
| [vite-plugin-compression2](https://github.com/nonzzz/vite-plugin-compression) | `0.11.0` | `2.4.0` |
| [vite-plugin-radar](https://github.com/stafyniaksacha/vite-plugin-radar) | `0.9.6` | `0.10.1` |
| [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.3.0` | `4.5.0` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `4.3.2` | `6.0.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.1` | `4.0.16` |
| [vite-plugin-dts](https://github.com/qmhc/vite-plugin-dts) | `3.9.1` | `4.5.4` |
| [vite-plugin-lib-inject-css](https://github.com/emosheeep/vite-plugin-lib-inject-css) | `1.3.0` | `2.2.2` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.5.8` | `10.1.11` |


Updates `@julr/vite-plugin-validate-env` from 1.3.0 to 2.2.0
- [Release notes](https://github.com/Julien-R44/vite-plugin-validate-env/releases)
- [Commits](Julien-R44/vite-plugin-validate-env@v1.3.0...v2.2.0)

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

Updates `@vitest/coverage-v8` from 1.6.1 to 4.0.16
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.16/packages/coverage-v8)

Updates `vite` from 5.4.14 to 7.3.0
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.0/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.3.0/packages/vite)

Updates `vite-plugin-checker` from 0.7.2 to 0.12.0
- [Release notes](https://github.com/fi3ework/vite-plugin-checker/releases)
- [Commits](https://github.com/fi3ework/vite-plugin-checker/compare/[email protected]@0.12.0)

Updates `vite-plugin-compression2` from 0.11.0 to 2.4.0
- [Release notes](https://github.com/nonzzz/vite-plugin-compression/releases)
- [Changelog](https://github.com/nonzzz/vite-plugin-compression/blob/master/CHANGELOG.md)
- [Commits](nonzzz/vite-plugin-compression@v0.11.0...v2.4.0)

Updates `vite-plugin-radar` from 0.9.6 to 0.10.1
- [Release notes](https://github.com/stafyniaksacha/vite-plugin-radar/releases)
- [Changelog](https://github.com/stafyniaksacha/vite-plugin-radar/blob/main/CHANGELOG.md)
- [Commits](stafyniaksacha/vite-plugin-radar@v0.9.6...v0.10.1)

Updates `vite-plugin-svgr` from 4.3.0 to 4.5.0
- [Release notes](https://github.com/pd4d10/vite-plugin-svgr/releases)
- [Commits](pd4d10/vite-plugin-svgr@v4.3.0...v4.5.0)

Updates `vite-tsconfig-paths` from 4.3.2 to 6.0.3
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v4.3.2...v6.0.3)

Updates `vitest` from 1.6.1 to 4.0.16
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.16/packages/vitest)

Updates `vite-plugin-dts` from 3.9.1 to 4.5.4
- [Release notes](https://github.com/qmhc/vite-plugin-dts/releases)
- [Changelog](https://github.com/qmhc/unplugin-dts/blob/v4.5.4/CHANGELOG.md)
- [Commits](qmhc/unplugin-dts@v3.9.1...v4.5.4)

Updates `vite-plugin-lib-inject-css` from 1.3.0 to 2.2.2
- [Release notes](https://github.com/emosheeep/vite-plugin-lib-inject-css/releases)
- [Changelog](https://github.com/emosheeep/vite-plugin-lib-inject-css/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emosheeep/vite-plugin-lib-inject-css/commits/[email protected])

Updates `@storybook/react-vite` from 8.5.8 to 10.1.11
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.11/code/frameworks/react-vite)

---
updated-dependencies:
- dependency-name: "@julr/vite-plugin-validate-env"
  dependency-version: 2.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@vitejs/plugin-react-swc"
  dependency-version: 4.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite
  dependency-version: 7.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-checker
  dependency-version: 0.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-plugin-compression2
  dependency-version: 2.4.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-radar
  dependency-version: 0.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-plugin-svgr
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-tsconfig-paths
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vitest
  dependency-version: 4.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-dts
  dependency-version: 4.5.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-lib-inject-css
  dependency-version: 2.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.1.11
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
...

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 Dec 29, 2025
@changeset-bot
Copy link

changeset-bot bot commented Dec 29, 2025

⚠️ No Changeset found

Latest commit: 475c25a

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 2, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/vite-74fde5d88b branch January 2, 2026 10:53
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.

2 participants