Skip to content

chore(deps): update npm packages (major) - #1782

Open
renovate[bot] wants to merge 2 commits into
mainfrom
renovate/major-npm-packages
Open

chore(deps): update npm packages (major)#1782
renovate[bot] wants to merge 2 commits into
mainfrom
renovate/major-npm-packages

Conversation

@renovate

@renovate renovate Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) ^7.29.7^8.0.0 age adoption passing confidence
@babel/generator (source) ^7.28.5^8.0.0 age adoption passing confidence
@babel/parser (source) ^7.28.5^8.0.0 age adoption passing confidence
@babel/preset-env (source) ^7.29.7^8.0.0 age adoption passing confidence
@babel/preset-typescript (source) ^7.29.7^8.0.0 age adoption passing confidence
@babel/types (source) ^7.28.5^8.0.0 age adoption passing confidence
@vitejs/plugin-react (source) ^5.1.2^6.0.0 age adoption passing confidence
@vitest/browser (source) 4.1.115.0.0 age adoption passing confidence
@vitest/browser-playwright (source) 4.1.115.0.0 age adoption passing confidence
@vitest/browser-preview (source) 4.1.115.0.0 age adoption passing confidence
@vitest/expect (source) 4.1.115.0.0 age adoption passing confidence
@vitest/mocker (source) 4.1.115.0.0 age adoption passing confidence
@vitest/pretty-format (source) 4.1.115.0.0 age adoption passing confidence
@vitest/snapshot (source) 4.1.115.0.0 age adoption passing confidence
@vitest/spy (source) 4.1.115.0.0 age adoption passing confidence
@vitest/utils (source) 4.1.115.0.0 age adoption passing confidence
@​voidzero-dev/vitepress-theme 4.8.45.0.6 age adoption passing confidence
chalk ^5.3.0^6.0.0 age adoption passing confidence
es-module-lexer ^1.7.0^2.0.0 age adoption passing confidence
execa ^9.2.0^10.0.0 age adoption passing confidence
fast-string-width ^1.1.0^3.0.0 age adoption passing confidence
is-unicode-supported ^1.3.0^2.0.0 age adoption passing confidence
lint-staged ^16.2.6^17.0.0 age adoption passing confidence
magic-string ^0.30.21^1.0.0 age adoption passing confidence
mocha (source) ^11.7.5^12.0.0 age adoption passing confidence
next (source) ^15.4.3^16.0.0 age adoption passing confidence
sisteransi ^1.0.5^2.0.0 age adoption passing confidence
typescript (source) ^6.0.0^7.0.0 age adoption passing confidence
validate-npm-package-name ^7.0.2^8.0.0 age adoption passing confidence
zod (source) ^3.25.76^4.0.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v8.0.1

Compare Source

💥 Breaking Change
  • babel-core, babel-plugin-transform-object-rest-spread, babel-plugin-transform-runtime, babel-preset-env, babel-standalone

v8.0.0

Compare Source

👓 Spec Compliance
💥 Breaking Change
  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser
🐛 Bug Fix
  • babel-generator
  • babel-plugin-transform-modules-systemjs
📝 Documentation
🏠 Internal
🏃‍♀️ Performance
babel/babel (@​babel/parser)

v8.0.4

Compare Source

v8.0.4 (2026-07-09)

👓 Spec Compliance
  • babel-parser, babel-plugin-transform-typescript
  • babel-generator, babel-parser, babel-plugin-transform-typescript
🐛 Bug Fix
🏠 Internal
  • babel-helper-validator-identifier
Committers: 4

v8.0.0

Compare Source

v8.0.0 (2026-06-16)

NOTE: The changelog below is relative to v8.0.0-rc.6. You can find a summary of all the breaking changes shipped in the Babel 8 release line in the migration guide for users and migration guide for plugin developers.

Read the release blog post at http://babeljs.io/blog/2026/06/16/8.0.0!

👓 Spec Compliance
💥 Breaking Change
  • babel-cli, babel-node, babel-plugin-proposal-decorators, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-modules-commonjs, babel-plugin-transform-object-rest-spread, babel-plugin-transform-parameters, babel-plugin-transform-react-constant-elements, babel-plugin-transform-regenerator, babel-preset-env, babel-register
  • babel-plugin-transform-runtime, babel-runtime-corejs3, babel-runtime
  • babel-parser
🐛 Bug Fix
  • babel-generator
  • babel-plugin-transform-modules-systemjs
📝 Documentation
🏠 Internal
🏃‍♀️ Performance
Committers: 6
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v6.1.1

Compare Source

Add compiler.logDiagnostics option

Recoverable React Compiler diagnostics are no longer logged by default. Set compiler.logDiagnostics to true to log them through Vite. Fatal diagnostics are always logged and fail the transform.

Respect environment sourcemap option for React Compiler transform when builder.sharedPlugins is enabled (#​1439)

The React Compiler transform was using the top-level sourcemap option instead of the environment sourcemap option. This caused a problem when the experimental builder.sharedPlugins was enabled.

v6.1.0

Compare Source

Add experimental native React Compiler support (#​1419)

Add experimental native React Compiler support.

You can use it by installing oxc-transform-react and enabling it via the compiler option:

npm install -D oxc-transform-react
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

export default defineConfig({
  plugins: [
     react({ compiler: true })
  ]
})

v6.0.5

Compare Source

Fixed the react compiler preset filter to be linear (#​1353)

The improved filter in v6.0.3 was non-linear and caused a performance regression (#​1349). The filter was changed to be linear to avoid that.

v6.0.4

Compare Source

Fixed $RefreshSig$ is not defined error when running vite dev with NODE_ENV=production

When running vite dev with NODE_ENV=production, the app errored with $RefreshSig$ is not defined.
This error is now fixed.

v6.0.3

Compare Source

v6.0.2

Compare Source

Allow all options in reactCompilerPreset (#​1189)

This is a type only change. Only compilationMode and target options were available for reactCompilerPreset.

v6.0.1

Compare Source

Expand @rolldown/plugin-babel peer dep range (#​1146)

Expanded @rolldown/plugin-babel peer dep range to include ^0.2.0.

v6.0.0

Compare Source

vitest-dev/vitest (@​vitest/browser)

v5.0.0

Compare Source

Vitest 5 is officially out! This release focuses on performance and brings a lot of new features while fixing long-standing bugs. See our blog post for the official announcement.

   🚨 Breaking Changes
   🚀 Features

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • "before 10am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Scope: all 6 workspace projects
 ENOENT  ENOENT: no such file or directory, open '/tmp/renovate/repos/github/voidzero-dev/vite-plus/vite/patches/sirv@3.0.2.patch'

pnpm: ENOENT: no such file or directory, open '/tmp/renovate/repos/github/voidzero-dev/vite-plus/vite/patches/sirv@3.0.2.patch'
    at async open (node:internal/fs/promises:639:25)
    at async Object.readFile (node:internal/fs/promises:1243:14)
    at async readNormalizedFile (/opt/containerbase/tools/pnpm/10.33.2/22.18.0/node_modules/pnpm/dist/pnpm.cjs:51185:23)
    at async createHexHashFromFile (/opt/containerbase/tools/pnpm/10.33.2/22.18.0/node_modules/pnpm/dist/pnpm.cjs:51182:28)
    at async /opt/containerbase/tools/pnpm/10.33.2/22.18.0/node_modules/pnpm/dist/pnpm.cjs:140925:17
    at async /opt/containerbase/tools/pnpm/10.33.2/22.18.0/node_modules/pnpm/dist/pnpm.cjs:140902:24
    at async Promise.all (index 0)
    at async pMapValue (/opt/containerbase/tools/pnpm/10.33.2/22.18.0/node_modules/pnpm/dist/pnpm.cjs:140901:7)
    at async _install (/opt/containerbase/tools/pnpm/10.33.2/22.18.0/node_modules/pnpm/dist/pnpm.cjs:163490:134)
    at async mutateModules (/opt/containerbase/tools/pnpm/10.33.2/22.18.0/node_modules/pnpm/dist/pnpm.cjs:163438:23)

@netlify

netlify Bot commented Jun 7, 2026

Copy link
Copy Markdown

Deploy Preview for viteplus-preview canceled.

Name Link
🔨 Latest commit bc7a067
🔍 Latest deploy log https://app.netlify.com/projects/viteplus-preview/deploys/6a9e12892f2d890008ea1682

@renovate
renovate Bot force-pushed the renovate/major-npm-packages branch 2 times, most recently from e72e6b4 to 6f274d0 Compare June 14, 2026 17:38
@renovate
renovate Bot force-pushed the renovate/major-npm-packages branch 3 times, most recently from ba10bd3 to 9187b13 Compare June 28, 2026 16:46
@renovate
renovate Bot force-pushed the renovate/major-npm-packages branch 2 times, most recently from 9da68e2 to b538d6a Compare July 5, 2026 16:19
fengmk2 added a commit that referenced this pull request Aug 16, 2026
Renovate aborts the whole repository scan with
`ERR_PNPM_INVALID_SELECTOR` when it parses the multi-level pnpm override
selector (`vite-plugin-svgr>foo>vite`) in the
`migration_monorepo_pnpm_overrides_dependency_selector` snapshot fixture
([error
log](https://developer.mend.io/github/voidzero-dev/vite-plus/-/job/5694ac3b-1f35-49c0-b558-51d59fe4842b)).
The selector is intentional `vp migrate` test data, but
`@pnpm/parse-overrides` cannot parse two `>` levels. Every run since
mid-June failed, so the update PRs #1780, #1782, and #1831 went stale.

Fix: add the snapshot and unit-test fixture trees to `ignorePaths`.
Renovate applies `ignorePaths` before extraction, so fixture files never
reach the parser on any Renovate version. Fixture dependencies also stop
receiving bump PRs, which would break recorded snapshots.

Verified with `renovate-config-validator` and a local dry run (`npx
renovate --platform=local --dry-run=extract`): the npm manager drops
from 726 files to 11 real package files, no fixture file is extracted,
and the cargo and github-actions managers are unchanged
(`crates/vp_cli_snapshots/Cargo.toml` stays managed).

Closes #2451
@renovate
renovate Bot force-pushed the renovate/major-npm-packages branch from d36b486 to 4b93a95 Compare August 16, 2026 17:29
@github-actions

github-actions Bot commented Aug 16, 2026

Copy link
Copy Markdown
Contributor

✅ Staging deployment successful!

Preview: https://viteplus-staging.void.app/
Commit: bc7a067

@renovate
renovate Bot force-pushed the renovate/major-npm-packages branch 2 times, most recently from 0951b0b to c293acb Compare August 23, 2026 18:47
@renovate
renovate Bot force-pushed the renovate/major-npm-packages branch 2 times, most recently from 2f2b7e2 to 1a15fea Compare September 6, 2026 16:06
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Sep 6, 2026

Copy link
Copy Markdown

🚀 Deploying Preview to Cloudflare 🚀

Preview URL: https://renovate-major-npm-packages-viteplus-dev.voidzero-docs.workers.dev (commit bc7a067)

This URL reflects your latest Preview deployment

Preview Deployments by commit

Status Deployment URL Commit Updated (UTC) See this deployment's details
  • Build: Success ✅
  • Deployment: Success ✅

View logs ↗
https://9bc62a82-viteplus-dev.voidzero-docs.workers.dev bc7a067 2026-09-07T01:26:53.640Z Visit the dashboard ↗
  • Build: Failed ❌

View logs ↗
8186236 2026-09-07T01:24:42.138Z View logs ↗
  • Build: Success ✅
  • Deployment: Success ✅

View logs ↗
https://b6fad726-viteplus-dev.voidzero-docs.workers.dev 7415d5a 2026-09-06T16:09:02.230Z Visit the dashboard ↗
  • Build: Failed ❌

View logs ↗
1a15fea 2026-09-06T16:06:42.035Z View logs ↗

@renovate
renovate Bot force-pushed the renovate/major-npm-packages branch from 7415d5a to 8186236 Compare September 7, 2026 01:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants