Bumps the development group with 7 updates in the / directory:
Updates @jest/globals from 29.7.0 to 30.0.5
Release notes
Sourced from @jest/globals's releases.
30.0.2
What's Changed
Fixes
- [jest-matcher-utils]Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#15689)
- [jest-util]Make garbage collection protection property writable (#15689)
Full Changelog: https://github.com/jestjs/jest/blob/main/CHANGELOG.md 
Jest 30.0.1
What's Changed
Features
- [jest-resolver]Implement the- defaultAsyncResolver(#15679)
Fixes
- [jest-resolver]Resolve builtin modules correctly (#15683)
- [jest-environment-node, jest-util]Avoid setting globals cleanup protection symbol when feature is off (#15684)
Chore & Maintenance
- [*]Remove and deprecate- jest-replpackage (#15673)
- [jest-resolver]Replace custom- isBuiltinModulewith node's- isBuiltin(#15685)
New Contributors
Full Changelog: https://github.com/jestjs/jest/blob/main/CHANGELOG.md 
Jest 30
Today we are happy to announce the release of Jest 30. This release features a substantial number of changes, fixes, and improvements. While it is one of the largest major releases of Jest ever, we admit that three years for a major release is too long. In the future, we are aiming to make more frequent major releases to keep Jest great for the next decade.
If you want to skip all the news and just get going, run npm install jest@^30.0.0 and follow the migration guide: Upgrading from Jest 29 to 30.
Read the full blog post 
Features
- [*]Renamed- globalsCleanupModeto- globalsCleanupand- --waitNextEventLoopTurnForUnhandledRejectionEventsto- --waitForUnhandledRejections
- [expect]Add- ArrayOfasymmetric matcher for validating array elements. (#15567)
- [babel-jest]Add option- excludeJestPresetto allow opting out of- babel-preset-jest(#15164)
- [expect]Revert #15038 to fix- expect(fn).toHaveBeenCalledWith(expect.objectContaining(...))when there are multiple calls (#15508)
- [jest-circus, jest-cli, jest-config]Add- waitNextEventLoopTurnForUnhandledRejectionEventsflag to minimise performance impact of correct detection of unhandled promise rejections introduced in #14315 (#14681)
- [jest-circus]Add a- waitBeforeRetryoption to- jest.retryTimes(#14738)
- [jest-circus]Add a- retryImmediatelyoption to- jest.retryTimes(#14696)
- [jest-circus, jest-jasmine2]Allow- setupFilesAfterEnvto export an async function (#10962)
- [jest-circus, jest-test-result]Add- startedAttimestamp in- TestCaseResultObjectwithin- onTestCaseResult(#15145)
... (truncated)
 
Changelog
Sourced from @jest/globals's changelog.
30.0.5
Features
- [jest-config]Allow- testMatchto take a string value
- [jest-worker]Let- workerIdleMemoryLimitaccept 0 to always restart worker child processes
Fixes
- [expect]Fix- biginterror (#15702)
30.0.4
Features
- [expect]The- Inversetype is now exported (#15714)
- [expect]feat: support- async functionsin- toBe(#15704)
Fixes
- [jest]jest --onlyFailures --listTests now correctly lists only failed tests (#15700)
- [jest-snapshot]Handle line endings in snapshots (#15708)
30.0.3
Fixes
- [jest-config]Fix ESM TS config loading in a CJS project (#15694)
- [jest-core]jest --onlyFailures --listTests now correctly lists only failed tests(#15700)
Features
- [jest-diff]Show non-printable control characters to diffs (#15696)
30.0.2
Fixes
- [jest-matcher-utils]Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#15689)
- [jest-util]Make garbage collection protection property writable (#15689)
30.0.1
Features
- [jest-resolver]Implement the- defaultAsyncResolver(#15679)
Fixes
- [jest-resolver]Resolve builtin modules correctly (#15683)
... (truncated)
 
Commits
 
Maintainer changes
This version was pushed to npm by cpojer, a new releaser for @jest/globals since your current version.
 
Updates @sveltejs/vite-plugin-svelte from 5.1.1 to 6.1.0
Release notes
Sourced from @sveltejs/vite-plugin-svelte's releases.
@sveltejs/vite-plugin-svelte@6.1.0
Minor Changes
- feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (#1176)
Patch Changes
@sveltejs/vite-plugin-svelte@6.0.0
Major Changes
- 
drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (#1129) 
- 
Remove experimental "advanced raw queries" feature. Basic File.svelte?rawis still supported. (#1145)
 
- 
Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg @tsconfig/svelte(#1135)
 
- 
remove support for loading commonjs svelte config files (#1142) 
- 
bump vite peer dependency to ^6.3.0 || ^7.0.0 (#1130) 
- 
define filters using object hook syntax and optimize the filter for resolveId (#1132) 
NOTE
include logic has changed to files matching svelteConfig.includeORsvelteConfig.extensions. Previously only files matching both were loaded and transformed.
 
 
- 
split preprocess and compile into separate plugins (#1145) It allows vite plugins to transform code between preprocess and compile, see docs and is the recommended way to replace plugin.api.sveltePreprocessusage in other vite plugins.
You can also use vite-plugin-inspect now to inspect the result of svelte.preprocess by checking the transform ofvite-plugin-svelte:preprocess
 
NOTE
This can be a breaking change in case you have other plugins besides vite-plugin-svelte transforming your svelte code
To fix this, read the docs on how to order plugins in relation to preprocess and compile 
 
Minor Changes
... (truncated)
 
Changelog
Sourced from @sveltejs/vite-plugin-svelte's changelog.
6.1.0
Minor Changes
- feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (#1176)
Patch Changes
6.0.0
Major Changes
- 
drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (#1129) 
- 
Remove experimental "advanced raw queries" feature. Basic File.svelte?rawis still supported. (#1145)
 
- 
Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg @tsconfig/svelte(#1135)
 
- 
remove support for loading commonjs svelte config files (#1142) 
- 
bump vite peer dependency to ^6.3.0 || ^7.0.0 (#1130) 
- 
define filters using object hook syntax and optimize the filter for resolveId (#1132) 
NOTE
include logic has changed to files matching svelteConfig.includeORsvelteConfig.extensions. Previously only files matching both were loaded and transformed.
 
 
- 
split preprocess and compile into separate plugins (#1145) It allows vite plugins to transform code between preprocess and compile, see docs and is the recommended way to replace plugin.api.sveltePreprocessusage in other vite plugins.
You can also use vite-plugin-inspect now to inspect the result of svelte.preprocess by checking the transform ofvite-plugin-svelte:preprocess
 
NOTE
This can be a breaking change in case you have other plugins besides vite-plugin-svelte transforming your svelte code
To fix this, read the docs on how to order plugins in relation to preprocess and compile 
 
... (truncated)
 
Commits
- b5f7194Version Packages (#1169)
- 16c08e5fix: log missing config at info level (#1179)
- 6abf2c6feat: support experimental.async and dynamicCompileOptions for Svelte modules...
- 55951defix(deps): update all non-major dependencies (#1175)
- 666dc61fix: do not wrongly suggest that a lang attribute is missing when finding com...
- 280a5e7Version Packages (#1164)
- cb00201fix(deps): update all non-major dependencies (#1162)
- e687ccfVersion Packages (next) (#1159)
- fac52a4fix: crawl local workspace private packages devDependencies (#1155)
- 47e8a9ffix: reduce logging for deprecations (#1158)
- Additional commits viewable in compare view 
 
Updates eslint-plugin-unicorn from 59.0.1 to 60.0.0
Release notes
Sourced from eslint-plugin-unicorn's releases.
v60.0.0
Breaking
- Require Node.js 20.10 (#2698) 2dc27d90
New rules
Improvements
- prefer-string-replace-all: Preserve escape (#2667) 2310b507
- Support SuppressedError(#2669) f51aeb9a
Fixes
- no-array-callback-reference: Fix optional chaining expressions being ignored (#2694) ad27922e
- no-unnecessary-await: Fix handling of experimental pipeline operator (#2658) 2b8ebe57
sindresorhus/eslint-plugin-unicorn@v59.0.1...v60.0.0 
 
Commits
 
Updates happy-dom from 17.6.3 to 18.0.1
Release notes
Sourced from happy-dom's releases.
v18.0.1
👷♂️ Patch fixes
- Addresses an issue where an error occurred if the Element ID was set to the same name as a Window property with a null value - By @capricorn86in task #1841
v18.0.0
💣 Breaking Changes
- Makes the types for Happy DOM strict - By @capricorn86in task #1154
- This makes it possible to use the option skipLibCheckset to "false" in the typescript configuration for projects with a strict configuration
- This change has resulted in that some types has changed and is therefore considered as a breaking change
 
- BrowserContext.close()now throws an error when trying to close the default context of a browser - By- @capricorn86in task #1154
🎨 Features
- Adds support for Browser.closed,BrowserContext.closed,BrowserPage.closedandBrowserFrame.closed- By@capricorn86in task #1154
- Adds support for VirtualConsolePrinter.close()andVirtualConsolePrinter.closed- By@capricorn86in task #1154
- Adds support for CookieContainer.clearCookies()- By@capricorn86in task #1154
 
Commits
 
Updates jest from 29.7.0 to 30.0.5
Release notes
Sourced from jest's releases.
30.0.2
What's Changed
Fixes
- [jest-matcher-utils]Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#15689)
- [jest-util]Make garbage collection protection property writable (#15689)
Full Changelog: https://github.com/jestjs/jest/blob/main/CHANGELOG.md 
Jest 30.0.1
What's Changed
Features
- [jest-resolver]Implement the- defaultAsyncResolver(#15679)
Fixes
- [jest-resolver]Resolve builtin modules correctly (#15683)
- [jest-environment-node, jest-util]Avoid setting globals cleanup protection symbol when feature is off (#15684)
Chore & Maintenance
- [*]Remove and deprecate- jest-replpackage (#15673)
- [jest-resolver]Replace custom- isBuiltinModulewith node's- isBuiltin(#15685)
New Contributors
Full Changelog: https://github.com/jestjs/jest/blob/main/CHANGELOG.md 
Jest 30
Today we are happy to announce the release of Jest 30. This release features a substantial number of changes, fixes, and improvements. While it is one of the largest major releases of Jest ever, we admit that three years for a major release is too long. In the future, we are aiming to make more frequent major releases to keep Jest great for the next decade.
If you want to skip all the news and just get going, run npm install jest@^30.0.0 and follow the migration guide: Upgrading from Jest 29 to 30.
Read the full blog post 
Features
- [*]Renamed- globalsCleanupModeto- globalsCleanupand- --waitNextEventLoopTurnForUnhandledRejectionEventsto- --waitForUnhandledRejections
- [expect]Add- ArrayOfasymmetric matcher for validating array elements. (#15567)
- [babel-jest]Add option- excludeJestPresetto allow opting out of- babel-preset-jest(#15164)
- [expect]Revert #15038 to fix- expect(fn).toHaveBeenCalledWith(expect.objectContaining(...))when there are multiple calls (#15508)
- [jest-circus, jest-cli, jest-config]Add- waitNextEventLoopTurnForUnhandledRejectionEventsflag to minimise performance impact of correct detection of unhandled promise rejections introduced in #14315 (#14681)
- [jest-circus]Add a- waitBeforeRetryoption to- jest.retryTimes(#14738)
- [jest-circus]Add a- retryImmediatelyoption to- jest.retryTimes(#14696)
- [jest-circus, jest-jasmine2]Allow- setupFilesAfterEnvto export an async function (#10962)
- [jest-circus, jest-test-result]Add- startedAttimestamp in- TestCaseResultObjectwithin- onTestCaseResult(#15145)
... (truncated)
 
Changelog
Sourced from jest's changelog.
30.0.5
Features
- [jest-config]Allow- testMatchto take a string value
- [jest-worker]Let- workerIdleMemoryLimitaccept 0 to always restart worker child processes
Fixes
- [expect]Fix- biginterror (#15702)
30.0.4
Features
- [expect]The- Inversetype is now exported (#15714)
- [expect]feat: support- async functionsin- toBe(#15704)
Fixes
- [jest]jest --onlyFailures --listTests now correctly lists only failed tests (#15700)
- [jest-snapshot]Handle line endings in snapshots (#15708)
30.0.3
Fixes
- [jest-config]Fix ESM TS config loading in a CJS project (#15694)
- [jest-core]jest --onlyFailures --listTests now correctly lists only failed tests(#15700)
Features
- [jest-diff]Show non-printable control characters to diffs (#15696)
30.0.2
Fixes
- [jest-matcher-utils]Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#15689)
- [jest-util]Make garbage collection protection property writable (#15689)
30.0.1
Features
- [jest-resolver]Implement the- defaultAsyncResolver(#15679)
Fixes
- [jest-resolver]Resolve builtin modules correctly (#15683)
... (truncated)
 
Commits
 
Updates jest-environment-jsdom from 29.7.0 to 30.0.5
Release notes
Sourced from jest-environment-jsdom's releases.
30.0.2
What's Changed
Fixes
- [jest-matcher-utils]Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#15689)
- [jest-util]Make garbage collection protection property writable (#15689)
Full Changelog: https://github.com/jestjs/jest/blob/main/CHANGELOG.md 
Jest 30.0.1
What's Changed
Features
- [jest-resolver]Implement the- defaultAsyncResolver(#15679)
Fixes
- [jest-resolver]Resolve builtin modules correctly (#15683)
- [jest-environment-node, jest-util]Avoid setting globals cleanup protection symbol when feature is off (#15684)
Chore & Maintenance
- [*]Remove and deprecate- jest-replpackage (#15673)
- [jest-resolver]Replace custom- isBuiltinModulewith node's- isBuiltin(#15685)
New Contributors
Full Changelog: https://github.com/jestjs/jest/blob/main/CHANGELOG.md 
Jest 30
Today we are happy to announce the release of Jest 30. This release features a substantial number of changes, fixes, and improvements. While it is one of the largest major releases of Jest ever, we admit that three years for a major release is too long. In the future, we are aiming to make more frequent major releases to keep Jest great for the next decade.
If you want to skip all the news and just get going, run npm install jest@^30.0.0 and follow the migration guide: Upgrading from Jest 29 to 30.
Read the full blog post 
Features
- [*]Renamed- globalsCleanupModeto- globalsCleanupand- --waitNextEventLoopTurnForUnhandledRejectionEventsto- --waitForUnhandledRejections
- [expect]Add- ArrayOfasymmetric matcher for validating array elements. (#15567)
- [babel-jest]Add option- excludeJestPresetto allow opting out of- babel-preset-jest(#15164)
- [expect]Revert #15038 to fix- expect(fn).toHaveBeenCalledWith(expect.objectContaining(...))when there are multiple calls (#15508)
- [jest-circus, jest-cli, jest-config]Add- waitNextEventLoopTurnForUnhandledRejectionEventsflag to minimise performance impact of correct detection of unhandled promise rejections introduced in #14315 (#14681)
- [jest-circus]Add a- waitBeforeRetryoption to- jest.retryTimes(#14738)
- [jest-circus]Add a- retryImmediatelyoption to- jest.retryTimes(#14696)
- [jest-circus, jest-jasmine2]Allow- setupFilesAfterEnvto export an async function (#10962)
- [jest-circus, jest-test-result]Add- startedAttimestamp in- TestCaseResultObjectwithin- onTestCaseResult(#15145)
... (truncated)
 
Changelog
Sourced from jest-environment-jsdom's changelog.
30.0.5
Features
- [jest-config]Allow- testMatchto take a string value
- [jest-worker]Let- workerIdleMemoryLimitaccept 0 to always restart worker child processes
Fixes
- [expect]Fix- biginterror (#15702)
30.0.4
Features
- [expect]The- Inversetype is now exported (#15714)
- [expect]feat: support- async functionsin- toBe(#15704)
Fixes
- [jest]jest --onlyFailures --listTests now correctly lists only failed tests (#15700)
- [jest-snapshot]Handle line endings in snapshots (#15708)
30.0.3
Fixes
- [jest-config]Fix ESM TS config loading in a CJS project (#15694)
- [jest-core]jest --onlyFailures --listTests now correctly lists only failed tests(#15700)
Features
- [jest-diff]Show non-printable control characters to diffs (#15696)
30.0.2
Fixes
- [jest-matcher-utils]Make 'deepCyclicCopyObject' safer by setting descriptors to a null-prototype object (#15689)
- [jest-util]Make garbage collection protection property writable (#15689)
30.0.1
Features
- [jest-resolver]Implement the- defaultAsyncResolver(#15679)
Fixes
- [jest-resolver]Resolve builtin modules correctly (#15683)
... (truncated)
 
Commits
 
Updates vite from 6.3.5 to 7.0.6
Release notes
Sourced from vite's releases.
v7.0.6
Please refer to CHANGELOG.md for details.
v7.0.5
Please refer to CHANGELOG.md for details.
v7.0.4
Please refer to CHANGELOG.md for details.
v7.0.3
Please refer to CHANGELOG.md for details.
create-vite@7.0.3
Please refer to CHANGELOG.md for details.
v7.0.2
Please refer to CHANGELOG.md for details.
create-vite@7.0.2
Please refer to CHANGELOG.md for details.
v7.0.1
Please refer to CHANGELOG.md for details.
create-vite@7.0.1
Please refer to CHANGELOG.md for details.
plugin-legacy@7.0.1
Please refer to CHANGELOG.md for details.
create-vite@7.0.0
Please refer to CHANGELOG.md for details.
plugin-legacy@7.0.0
Please refer to CHANGELOG.md for details.
v7.0.0
Please refer to CHANGELOG.md for details.
v7.0.0-beta.2
Please refer to CHANGELOG.md for details.
v7.0.0-beta.1
Please refer to CHANGELOG.md for details.
plugin-legacy@7.0.0-beta.1
Please refer to CHANGELOG.md for details.
plugin-legacy@7.0.0-beta.0
Please refer to CHANGELOG.md for details.
... (truncated)
 
Changelog
Sourced from vite's changelog.
7.0.6 (2025年07月24日)
Bug Fixes
- deps: update all non-major dependencies (#20442) (e49f505)
- dev: incorrect sourcemap when optimized CJS is imported (#20458) (ead2dec)
- module-runner: normalize file:// on windows (#20449) (1c9cb49)
- respond with correct headers and status code for HEAD requests (#20421) (23d04fc)
Miscellaneous Chores
Code Refactoring
7.0.5 (2025年07月17日)
Bug Fixes
- deps: update all non-major dependencies (#20406) (1a1cc8a)
- remove special handling for Accept: text/html(#20376) (c9614b9)
- watch assets referenced by new URL(, import.meta.url)(#20382) (6bc8bf6)
Miscellaneous Chores
- deps: update dependency rolldown to ^1.0.0-beta.27 (#20405) (1165667)
Code Refactoring
- use foo.endsWith("bar")instead of/bar$/.test(foo)(#20413) (862e192)
7.0.4 (2025年07月10日)
Bug Fixes
- allow resolving bare specifiers to relative paths for entries (#20379) (324669c)
Build System
7.0.3 (2025年07月08日)
Bug Fixes
Miscellaneous Chores
... (truncated)
 
Commits
 
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 <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- @dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- @dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- @dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency
- @dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
 
  
 
Uh oh!
There was an error while loading. Please reload this page.
Bumps the development group with 7 updates in the / directory:
29.7.030.0.55.1.16.1.059.0.160.0.017.6.318.0.129.7.030.0.529.7.030.0.56.3.57.0.6Updates
@jest/globalsfrom 29.7.0 to 30.0.5Release notes
Sourced from
@jest/globals's releases.... (truncated)
Changelog
Sourced from
@jest/globals's changelog.... (truncated)
Commits
22236cfv30.0.5f4296d2v30.0.4d4a6c94v30.0.3393acbfv30.0.25ce865bv30.0.1469f665v30.0.0ce14203v30.0.0-rc.1ac334c0v30.0.0-beta.87c799e5v30.0.0-beta.74f96449v30.0.0-beta.6Maintainer changes
This version was pushed to npm by cpojer, a new releaser for
@jest/globalssince your current version.Updates
@sveltejs/vite-plugin-sveltefrom 5.1.1 to 6.1.0Release notes
Sourced from
@sveltejs/vite-plugin-svelte's releases.... (truncated)
Changelog
Sourced from
@sveltejs/vite-plugin-svelte's changelog.... (truncated)
Commits
b5f7194Version Packages (#1169)16c08e5fix: log missing config at info level (#1179)6abf2c6feat: support experimental.async and dynamicCompileOptions for Svelte modules...55951defix(deps): update all non-major dependencies (#1175)666dc61fix: do not wrongly suggest that a lang attribute is missing when finding com...280a5e7Version Packages (#1164)cb00201fix(deps): update all non-major dependencies (#1162)e687ccfVersion Packages (next) (#1159)fac52a4fix: crawl local workspace private packages devDependencies (#1155)47e8a9ffix: reduce logging for deprecations (#1158)Updates
eslint-plugin-unicornfrom 59.0.1 to 60.0.0Release notes
Sourced from eslint-plugin-unicorn's releases.
Commits
f4eb2e760.0.030f2d31Update dependencies70346e0Update@eslint/plugin-kitto^0.3.3(#2706)d1c4a48no-nested-ternary: Fix typo in message (#2705)2a8e152Addrequire-module-specifiersrule (#2686)b051302Addno-array-reverserule (#2677)2dc27d9Require Node.js v20 (#2698)ad27922no-array-callback-reference: Fix optional chaining expressions being ignore...a7864a3FixisUnresolvedVariable(#2693)7e86a8aAdd more test cases forprefer-string-rawrule (#2690)Updates
happy-domfrom 17.6.3 to 18.0.1Release notes
Sourced from happy-dom's releases.
Commits
cf74f5ffix: #1841 Addresses an issue where an error occurred if the Element ID was...bfd0fffchore: #1154 Fixes failing unit test (#1843)99ebbfcBREAKING CHANGE: #1154 Makes the types for Happy DOM strict (#1842)Updates
jestfrom 29.7.0 to 30.0.5Release notes
Sourced from jest's releases.
... (truncated)
Changelog
Sourced from jest's changelog.
... (truncated)
Commits
22236cfv30.0.5f4296d2v30.0.4d4a6c94v30.0.3393acbfv30.0.25ce865bv30.0.1469f665v30.0.0ce14203v30.0.0-rc.10ab14bav30.0.0-beta.9ac334c0v30.0.0-beta.87c799e5v30.0.0-beta.7Updates
jest-environment-jsdomfrom 29.7.0 to 30.0.5Release notes
Sourced from jest-environment-jsdom's releases.
... (truncated)
Changelog
Sourced from jest-environment-jsdom's changelog.
... (truncated)
Commits
22236cfv30.0.5f4296d2v30.0.4393acbfv30.0.25ce865bv30.0.1469f665v30.0.0ce14203v30.0.0-rc.1ac334c0v30.0.0-beta.87c799e5v30.0.0-beta.74f96449v30.0.0-beta.6286dc4av30.0.0-beta.5Updates
vitefrom 6.3.5 to 7.0.6Release notes
Sourced from vite's releases.
... (truncated)
Changelog
Sourced from vite's changelog.
... (truncated)
Commits
bdde0f9release: v7.0.623d04fcfix: respond with correct headers and status code for HEAD requests (#20421)ead2decfix(dev): incorrect sourcemap when optimized CJS is imported (#20458)e49f505fix(deps): update all non-major dependencies (#20442)f689d61chore(deps): update rolldown-related dependencies (#20441)8403f69chore: remove some files from prettier ignore (#20459)1c9cb49fix(module-runner): normalize file:// on windows (#20449)24e6a0crefactor: use environment transform request (#20430)832f687release: v7.0.5c9614b9fix: remove special handling forAccept: text/html(#20376)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 <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions