web-analytics-starter-kit
web-analytics-starter-kit copied to clipboard
Bump vite, @vitejs/plugin-react and vitest in /dashboard
Bumps vite to 6.2.6 and updates ancestor dependencies vite, @vitejs/plugin-react and vitest. These dependencies need to be updated together.
Updates vite from 3.0.8 to 6.2.6
Release notes
Sourced from vite's releases.
v6.2.6
Please refer to CHANGELOG.md for details.
v6.2.5
Please refer to CHANGELOG.md for details.
v6.2.4
Please refer to CHANGELOG.md for details.
v6.2.3
Please refer to CHANGELOG.md for details.
v6.2.2
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v6.2.1
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v6.2.0
Please refer to CHANGELOG.md for details.
v6.2.0-beta.1
Please refer to CHANGELOG.md for details.
v6.2.0-beta.0
Please refer to CHANGELOG.md for details.
v6.1.5
Please refer to CHANGELOG.md for details.
v6.1.4
Please refer to CHANGELOG.md for details.
v6.1.3
Please refer to CHANGELOG.md for details.
v6.1.2
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v6.1.1
Please refer to CHANGELOG.md for details.
... (truncated)
Changelog
Sourced from vite's changelog.
6.2.6 (2025-04-10)
6.2.5 (2025-04-03)
6.2.4 (2025-03-31)
6.2.3 (2025-03-24)
6.2.2 (2025-03-14)
- fix: await client buildStart on top level buildStart (#19624) (b31faab), closes #19624
- fix(css): inline css correctly for double quote use strict (#19590) (d0aa833), closes #19590
- fix(deps): update all non-major dependencies (#19613) (363d691), closes #19613
- fix(indexHtml): ensure correct URL when querying module graph (#19601) (dc5395a), closes #19601
- fix(preview): use preview https config, not server (#19633) (98b3160), closes #19633
- fix(ssr): use optional chaining to prevent "undefined is not an object" happening in `ssrRewriteStac (4309755), closes #19612
- feat: show friendly error for malformed
base(#19616) (2476391), closes #19616- feat(worker): show asset filename conflict warning (#19591) (367d968), closes #19591
- chore: extend commit hash correctly when ambigious with a non-commit object (#19600) (89a6287), closes #19600
6.2.1 (2025-03-07)
- refactor: remove
isBuildcheck from preAliasPlugin (#19587) (c9e086d), closes #19587- refactor: restore endsWith usage (#19554) (6113a96), closes #19554
- refactor: use
applyToEnvironmentin internal plugins (#19588) (f678442), closes #19588- fix(css): stabilize css module hashes with lightningcss in dev mode (#19481) (92125b4), closes #19481
- fix(deps): update all non-major dependencies (#19555) (f612e0f), closes #19555
- fix(reporter): fix incorrect bundle size calculation with non-ASCII characters (#19561) (437c0ed), closes #19561
- fix(sourcemap): combine sourcemaps with multiple sources without matched source (#18971) (e3f6ae1), closes #18971
- fix(ssr): named export should overwrite export all (#19534) (2fd2fc1), closes #19534
- feat: add
*?url&no-inlinetype and warning for.json?inline/.json?no-inline(#19566) (c0d3667), closes #19566- test: add glob import test case (#19516) (aa1d807), closes #19516
... (truncated)
Commits
d3dbf25release: v6.2.63bb0883fix: reject requests with#in request-target (#19830)c176acfrelease: v6.2.5fdb196efix: backport #19782, fs check with svg and relative paths037f801release: v6.2.47a4fabafix: fs check in transform middleware (#19761)16869d7release: v6.2.3f234b57fix: fs raw query with query separators (#19702)b12911erelease: v6.2.298b3160fix(preview): use preview https config, not server (#19633)- Additional commits viewable in compare view
Updates @vitejs/plugin-react from 2.0.1 to 4.3.4
Release notes
Sourced from @vitejs/plugin-react's releases.
v4.3.4
Add Vite 6 to peerDependencies range
Vite 6 is highly backward compatible, not much to add!
Force Babel to output spec compliant import attributes #386
The default was an old spec (
with type: "json"). We now enforce spec compliant (with { type: "json" })v4.3.3
React Compiler runtimeModule option removed
React Compiler was updated to accept a
targetoption andruntimeModulewas removed. vite-plugin-react will still detectruntimeModulefor backwards compatibility.When using a custom
runtimeModuleortarget !== '19', the plugin will not try to pre-optimizereact/compiler-runtimedependency.The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.
Here is the configuration to use the compiler with React 18 and correct source maps in development:
npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-developmentexport default defineConfig(({ command }) => { const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]] if (command === 'serve') { babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}]) }return { plugins: [react({ babel: { plugins: babelPlugins } })], } })
v4.3.2
Ignore directive sourcemap error #369
v4.3.1
Fix support for React Compiler with React 18
The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom
runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43When using a custom
runtimeModule, the plugin will not try to pre-optimizereact/compiler-runtimedependency.Reminder: Vite expect code outside of
node_modulesto be ESM, so you will need to update the gist withimport React from 'react'.v4.3.0
... (truncated)
Changelog
Sourced from @vitejs/plugin-react's changelog.
4.3.4 (2024-11-26)
Add Vite 6 to peerDependencies range
Vite 6 is highly backward compatible, not much to add!
Force Babel to output spec compliant import attributes #386
The default was an old spec (
with type: "json"). We now enforce spec compliant (with { type: "json" })4.3.3 (2024-10-19)
React Compiler runtimeModule option removed
React Compiler was updated to accept a
targetoption andruntimeModulewas removed. vite-plugin-react will still detectruntimeModulefor backwards compatibility.When using a custom
runtimeModuleortarget !== '19', the plugin will not try to pre-optimizereact/compiler-runtimedependency.The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.
Here is the configuration to use the compiler with React 18 and correct source maps in development:
npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-developmentexport default defineConfig(({ command }) => { const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]] if (command === 'serve') { babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}]) }return { plugins: [react({ babel: { plugins: babelPlugins } })], } })
4.3.2 (2024-09-29)
Ignore directive sourcemap error #369
4.3.1 (2024-06-10)
Fix support for React Compiler with React 18
The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom
runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43When using a custom
runtimeModule, the plugin will not try to pre-optimizereact/compiler-runtimedependency.
... (truncated)
Commits
- See full diff in compare view
Updates vitest from 0.22.1 to 3.1.1
Release notes
Sourced from vitest's releases.
v3.1.1
🐞 Bug Fixes
- reporter:
- Report tests in correct order - by
@sheremet-vain vitest-dev/vitest#7752 (b166e)- Print test only once in the verbose mode - by
@sheremet-vain vitest-dev/vitest#7738 (69ca4)View changes on GitHub
v3.1.0
🚀 Features
- Introduce
%$option to add number of the test to its title - by@kemuridamain vitest-dev/vitest#7412 (df347)- Add
diff.maxDepthoption and set non-Infinityvalue as a default to reduce crash - by@hi-ogawain vitest-dev/vitest#7481 (eacab)- Allow array element for
test.each/fortitle formatting - by@hi-ogawain vitest-dev/vitest#7522 (ea3d6)- Add "configureVitest" plugin hook - by
@sheremet-vaand@AriPerkkioin vitest-dev/vitest#7349 (20a5d)- Support
--configLoaderCLI option - by@Carnageousand@hi-ogawain vitest-dev/vitest#7574 (2a852)- Added
vitest-browser-littovitest init browserand docs - by@EskiMojo14and@hi-ogawain vitest-dev/vitest#7705 (5659a)- Use providers request interception for module mocking - by
@sheremet-vain vitest-dev/vitest#7576 (7883a)- browser:
- Introduce
and,orandfilterlocators - by@sheremet-vaand@AriPerkkioin vitest-dev/vitest#7463 (63949)- reporter:
- Always render test time - by
@AriPerkkioand@spamshakerin vitest-dev/vitest#7529 (5eba6)--silent=passed-onlyto log failed tasks only - by@AriPerkkioin vitest-dev/vitest#7530 (f9e1c)- runner:
- Add
test.scopedto overridetest.extendfixtures per-suite - by@sheremet-vain vitest-dev/vitest#7233 (e5851)- vitest:
- Allow conditional
context.skip(boolean)- by@sheremet-vaand@AriPerkkioin vitest-dev/vitest#7659 (6adec)- Support rolldown-vite in NormalizeUrlPlugin - by
@sapphi-redand@sheremet-vain vitest-dev/vitest#7739 (1ef31)🐞 Bug Fixes
- Update test stats regularly - by
@hi-ogawain vitest-dev/vitest#7700 (b7953)- Fix vm tests flakiness - by
@sheremet-vain vitest-dev/vitest#7741 (2702c)- Set
diff.expand: falseas default - by@hi-ogawain vitest-dev/vitest#7697 (f3420)- browser:
- Correctly calculate timeout in hooks when actions are performed - by
@sheremet-vain vitest-dev/vitest#7747 (a5505)- deps:
- Update all non-major dependencies - by
@hi-ogawain vitest-dev/vitest#7600 (7fc5a)- reporter:
--hideSkippedTestsshould hide suites too - by@AriPerkkioin vitest-dev/vitest#7695 (ba9b5)- Report tests in correct order - by
@sheremet-vain vitest-dev/vitest#7752 (b166e)- Print test only once in the verbose mode - by
@sheremet-vain vitest-dev/vitest#7738 (69ca4)- snapshot:
- Fix indent normalization - by
@hi-ogawain vitest-dev/vitest#7400 (82997)- This change can cause small amount of very old snapshots to be updated, but there will be no functional change to how they work.
🏎 Performance
- browser: Fork jest-dom instead of bundling it - by
@sheremet-vain vitest-dev/vitest#7605 (12762)
... (truncated)
Commits
a9d36c7chore: release v3.1.169ca425fix(reporter): print test only once in the verbose mode (#7738)b166efafix(reporter): report tests in correct order (#7752)b8eda4bchore: release v3.1.0938da77fix (ui): rerun individually tests with special chars in name (#7707)7883acdfeat: use providers request interception for module mocking (#7576)a7ecd0frefactor: remove direct imports from rollup (#7751)5659a0efeat: Addedvitest-browser-littovitest init browserand docs (#7705)2702cf4fix: fix vm tests flakiness (#7741)12762eaperf(browser): fork jest-dom instead of bundling it (#7605)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by vitestbot, a new releaser for vitest since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.