Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

fix(deps): update all non-major dependencies #600

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 12, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 9, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rolldown/pluginutils (source) 1.0.0-beta.11 -> 1.0.0-beta.15 age adoption passing confidence
@rolldown/pluginutils (source) ^1.0.0-beta.11 -> ^1.0.0-beta.15 age adoption passing confidence
@tailwindcss/vite (source) ^4.1.8 -> ^4.1.10 age adoption passing confidence
@types/node (source) ^22.15.30 -> ^22.15.31 age adoption passing confidence
eslint-plugin-regexp ^2.8.0 -> ^2.9.0 age adoption passing confidence
playwright-chromium (source) ^1.52.0 -> ^1.53.0 age adoption passing confidence
pnpm (source) 10.11.1 -> 10.12.1 age adoption passing confidence
sass ^1.89.1 -> ^1.89.2 age adoption passing confidence
tailwindcss (source) ^4.1.8 -> ^4.1.10 age adoption passing confidence
tsx (source) ^4.19.4 -> ^4.20.1 age adoption passing confidence
typescript-eslint (source) ^8.33.1 -> ^8.34.0 age adoption passing confidence
vitest (source) ^3.2.2 -> ^3.2.3 age adoption passing confidence

Release Notes

rolldown/rolldown (@​rolldown/pluginutils)

v1.0.0-beta.15

Compare Source

🚀 Features
🐛 Bug Fixes
🧪 Testing
⚙️ Miscellaneous Tasks

v1.0.0-beta.14

Compare Source

💥 BREAKING CHANGES
🚀 Features
  • strictExecutionOrder: feat(strictExecutionOrder): no need to generate plain chunk imports for addressing side effects by @​hyf0 in #​4890
  • feat: make wasm fallback plugin callable in node by @​shulaoda in #​4885
  • rolldown_plugin_module_preload_polyfill: feat(rolldown_plugin_module_preload_polyfill): align with rolldown-vite by @​shulaoda in #​4884
  • attachDebugInfo: feat(attachDebugInfo): improve format and distinguish dynamic entries by @​hyf0 in #​4861
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
🧪 Testing
⚙️ Miscellaneous Tasks
◀️ Revert
  • revert: "refactor(rolldown_plugin_load_fallback): align with rolldown-vite" by @​shulaoda in #​4868

v1.0.0-beta.13

Compare Source

🚀 Features
🐛 Bug Fixes
  • ci: disable generate_release_notes by @​Boshen
📚 Documentation
  • docs: add MAINTENANCE.md; remove rolldown.rs/contrib-guide/release by @​Boshen in #​4854
⚙️ Miscellaneous Tasks
  • add input description to prepare-release.yml by @​Boshen
  • fix prepare-release.yml by @​Boshen
  • CHANGELOG.md: ci(CHANGELOG.md): use git-cliff to generate changelogs by @​Boshen in #​4858

v1.0.0-beta.12

Compare Source

Features
Bug Fixes
tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.1.10

Compare Source

Fixed
  • Fix incorrectly generated CSS when using percentages in arbitrary values with calc, e.g.: w-[calc(100%-var(--offset))] (#​18289)

v4.1.9

Compare Source

Fixed
  • Correctly parse custom properties with strings containing semicolons (#​18251)
  • Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g. /[0.16]/16) (#​18184)
  • Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#​18184)
  • Upgrade: Migrate negative arbitrary values to negative bare values (e.g. mb-[-32rem]-mb-128) (#​18212)
  • Upgrade: Do not migrate blur in wire:model.blur (#​18216)
  • Don't add spaces around CSS dashed idents when formatting math expressions (#​18220)
ota-meshi/eslint-plugin-regexp (eslint-plugin-regexp)

v2.9.0

Compare Source

Minor Changes
  • feat: support explicit comparisons to null for prefer-regexp-test (#​839)
microsoft/playwright (playwright-chromium)

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #​1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137
pnpm/pnpm (pnpm)

v10.12.1

Minor Changes
  • Experimental. Added support for global virtual stores. When enabled, node_modules contains only symlinks to a central virtual store, rather to node_modules/.pnpm. By default, this central store is located at <store-path>/links (you can find the store path by running pnpm store path).

    In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.

    This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.

    To enable the global virtual store, set enableGlobalVirtualStore: true in your root pnpm-workspace.yaml, or globally via:

    pnpm config -g set enable-global-virtual-store true

    NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.

    Related PR: #​8190

  • The pnpm update command now supports updating catalog: protocol dependencies and writes new specifiers to pnpm-workspace.yaml.
  • Added two new CLI options (--save-catalog and --save-catalog-name=<name>) to pnpm add to save new dependencies as catalog entries. catalog: or catalog:<name> will be added to package.json and the package specifier will be added to the catalogs or catalog[<name>] object in pnpm-workspace.yaml #​9425.
  • Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #​9605.
  • Added a new setting called ci for explicitly telling pnpm if the current environment is a CI or not.
Patch Changes
  • Sort versions printed by pnpm patch using semantic versioning rules.
  • Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects #​9598.
  • Revert #​9574 to fix a regression #​9596.
sass/dart-sass (sass)

v1.89.2

Compare Source

Embedded Host
  • Fixed a compilation error caused by an outdated buf dependency.
privatenumber/tsx (tsx)

v4.20.1

Compare Source

v4.20.0

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.34.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitest-dev/vitest (vitest)

v3.2.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

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 Jun 9, 2025
Copy link

pkg-pr-new bot commented Jun 9, 2025

Open in StackBlitz

npm i https://pkg.pr.new/@vitejs/plugin-vue@600
npm i https://pkg.pr.new/@vitejs/plugin-vue-jsx@600

commit: 2aa715f

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 03285d1 to f3ac8e7 Compare June 11, 2025 20:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f3ac8e7 to f9c081c Compare June 11, 2025 21:39
@sapphi-red sapphi-red merged commit a4c32a8 into main Jun 12, 2025
13 checks passed
@sapphi-red sapphi-red deleted the renovate/all-minor-patch branch June 12, 2025 01:27
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.

1 participant
Morty Proxy This is a proxified and sanitized view of the page, visit original site.