Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 9, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update
@bomb.sh/tab ^0.0.12^0.0.13 age confidence devDependencies patch
@faker-js/faker (source) ^10.2.0^10.3.0 age confidence devDependencies minor
@playwright/test (source) ^1.58.1^1.58.2 age confidence devDependencies patch
@types/node (source) ^24.10.9^24.10.13 age confidence devDependencies patch
@types/node (source) 24.10.924.10.13 age confidence devDependencies patch
@types/react (source) ^19.2.10^19.2.14 age confidence devDependencies patch
@vitejs/plugin-react (source) ^5.1.3^5.1.4 age confidence devDependencies patch
@​voidzero-dev/vitepress-theme ^4.4.2^4.5.0 age confidence devDependencies minor
@vueuse/core (source) ^14.2.0^14.2.1 age confidence pnpm.catalog.default patch
@vueuse/integrations (source) ^14.2.0^14.2.1 age confidence devDependencies patch
@wdio/types (source) ^9.23.3^9.24.0 age confidence devDependencies minor
actions-cool/issues-helper v3.7.5v3.7.6 age confidence action patch
bumpp ^10.4.0^10.4.1 age confidence devDependencies patch
cr.jaegertracing.io/jaegertracing/jaeger 2.14.12.15.1 age confidence minor
esbuild ^0.27.2^0.27.3 age confidence devDependencies patch
happy-dom ^20.4.0^20.6.1 age confidence devDependencies minor
magicast ^0.5.1^0.5.2 age confidence devDependencies patch
magicast ^0.5.1^0.5.2 age confidence pnpm.catalog.default patch
mcr.microsoft.com/playwright v1.58.1-noblev1.58.2-noble age confidence patch
msw (source) ^2.12.7^2.12.10 age confidence pnpm.catalog.default patch
playwright (source) ^1.58.1^1.58.2 age confidence devDependencies patch
playwright (source) ^1.58.1^1.58.2 age confidence pnpm.catalog.default patch
pnpm (source) 10.28.210.29.3 age confidence packageManager minor
tj-actions/changed-files v47.0.1v47.0.2 age confidence action patch
vite-plugin-pages ^0.33.2^0.33.3 age confidence devDependencies patch
vitepress-plugin-llms ^1.10.0^1.11.0 age confidence devDependencies minor
vitest-package-exports ^1.1.2^1.2.0 age confidence devDependencies minor
vue (source) ^3.5.27^3.5.28 age confidence pnpm.catalog.default patch

Release Notes

bombshell-dev/tab (@​bomb.sh/tab)

v0.0.13

Compare Source

Patch Changes
  • f619ad7: Widen peerDependencies to accept citty v0.2.
faker-js/faker (@​faker-js/faker)

v10.3.0

Compare Source

New Locales
Features
Changed Locales
Bug Fixes
microsoft/playwright (@​playwright/test)

v1.58.2

Compare Source

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v5.1.4

Compare Source

Fix canSkipBabel not accounting for babel.overrides (#​1098)

When configuring babel.overrides without top-level plugins or presets, Babel was incorrectly skipped. The canSkipBabel function now checks for overrides.length to ensure override configurations are processed.

vueuse/vueuse (@​vueuse/core)

v14.2.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
webdriverio/webdriverio (@​wdio/types)

v9.24.0

Compare Source

🚀 New Feature
💅 Polish
📝 Documentation
Committers: 3
actions-cool/issues-helper (actions-cool/issues-helper)

v3.7.6

Compare Source

2026.02.10

antfu-collective/bumpp (bumpp)

v10.4.1

Compare Source

   🚀 Features
    View changes on GitHub
evanw/esbuild (esbuild)

v0.27.3

Compare Source

  • Preserve URL fragments in data URLs (#​4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }
  • Parse and print CSS @scope rules (#​4322)

    This release includes dedicated support for parsing @scope rules in CSS. These rules include optional "start" and "end" selector lists. One important consequence of this is that the local/global status of names in selector lists is now respected, which improves the correctness of esbuild's support for CSS modules. Minification of selectors inside @scope rules has also improved slightly.

    Here's an example:

    /* Original code */
    @&#8203;scope (:global(.foo)) to (:local(.bar)) {
      .bar {
        color: red;
      }
    }
    
    /* Old output (with --loader=local-css --minify) */
    @&#8203;scope (:global(.foo)) to (:local(.bar)){.o{color:red}}
    
    /* New output (with --loader=local-css --minify) */
    @&#8203;scope(.foo)to (.o){.o{color:red}}
  • Fix a minification bug with lowering of for await (#​4378, #​4385)

    This release fixes a bug where the minifier would incorrectly strip the variable in the automatically-generated catch clause of lowered for await loops. The code that generated the loop previously failed to mark the internal variable references as used.

  • Update the Go compiler from v1.25.5 to v1.25.7 (#​4383, #​4388)

    This PR was contributed by @​MikeWillCook.

capricorn86/happy-dom (happy-dom)

v20.6.1

Compare Source

v20.6.0

Compare Source

v20.5.5

Compare Source

v20.5.4

Compare Source

👷‍♂️ Patch fixes

v20.5.3

Compare Source

v20.5.2

Compare Source

v20.5.1

Compare Source

v20.5.0

Compare Source

unjs/magicast (magicast)

v0.5.2

Compare Source

   🚀 Features
    View changes on GitHub
mswjs/msw (msw)

v2.12.10

Compare Source

v2.12.10 (2026-02-10)

Bug Fixes

v2.12.9

Compare Source

v2.12.9 (2026-02-06)

Bug Fixes

v2.12.8

Compare Source

v2.12.8 (2026-02-03)

Bug Fixes
pnpm/pnpm (pnpm)

v10.29.3

Compare Source

v10.29.2

Compare Source

v10.29.1: pnpm 10.29.1

Compare Source

Minor Changes

  • The pnpm dlx / pnpx command now supports the catalog: protocol. Example: pnpm dlx shx@catalog:.
  • Support configuring auditLevel in the pnpm-workspace.yaml file #​10540.
  • Support bare workspace: protocol without version specifier. It is now treated as workspace:* and resolves to the concrete version during publish #​10436.

Patch Changes

  • Fixed pnpm list --json returning incorrect paths when using global virtual store #​10187.

  • Fix pnpm store path and pnpm store status using workspace root for path resolution when storeDir is relative #​10290.

  • Fixed pnpm run -r failing with "No projects matched the filters" when an empty pnpm-workspace.yaml exists #​10497.

  • Fixed a bug where catalogMode: strict would write the literal string "catalog:" to pnpm-workspace.yaml instead of the resolved version specifier when re-adding an existing catalog dependency #​10176.

  • Fixed the documentation URL shown in pnpm completion --help to point to the correct page at https://pnpm.io/completion #​10281.

  • Skip local file: protocol dependencies during pnpm fetch. This fixes an issue where pnpm fetch would fail in Docker builds when local directory dependencies were not available #​10460.

  • Fixed pnpm audit --json to respect the --audit-level setting for both exit code and output filtering #​10540.

  • update tar to version 7.5.7 to fix security issue

    Updating the version of dependency tar to 7.5.7 because the previous one have a security vulnerability reported here: CVE-2026-24842

  • Fix pnpm audit --fix replacing reference overrides (e.g. $foo) with concrete versions #​10325.

  • Fix shamefullyHoist set via updateConfig in .pnpmfile.cjs not being converted to publicHoistPattern #​10271.

  • pnpm help should correctly report if the currently running pnpm CLI is bundled with Node.js #​10561.

  • Add a warning when the current directory contains the PATH delimiter character. On macOS, folder names containing forward slashes (/) appear as colons (:) at the Unix layer. Since colons are PATH separators in POSIX systems, this breaks PATH injection for node_modules/.bin, causing binaries to not be found when running commands like pnpm exec #​10457.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite
tj-actions/changed-files (tj-actions/changed-files)

v47.0.2

Compare Source

hannoeru/vite-plugin-pages (vite-plugin-pages)

v0.33.3

Compare Source

No significant changes

    View changes on GitHub
okineadev/vitepress-plugin-llms (vitepress-plugin-llms)

v1.11.0

Compare Source

    🩹 Fixes
   💖 Contributors
     View changes on GitHub
antfu/vitest-package-exports (vitest-package-exports)

v1.2.0

Compare Source

   🚀 Features
    View changes on GitHub
vuejs/core (vue)

v3.5.28

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 added the dependencies label Feb 9, 2026
@netlify
Copy link

netlify bot commented Feb 9, 2026

Deploy Preview for vitest-dev ready!

Name Link
🔨 Latest commit 37c62e7
🔍 Latest deploy log https://app.netlify.com/projects/vitest-dev/deploys/698cc1c40d45ca0008a28968
😎 Deploy Preview https://deploy-preview-9614--vitest-dev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 47fd3bc to 4892cac Compare February 11, 2026 13:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4892cac to 37c62e7 Compare February 11, 2026 17:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants