Skip to content

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

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 19, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@builder.io/qwik (source) ^1.13.0 -> ^1.14.1 age adoption passing confidence
@clack/prompts (source) ^0.10.1 -> ^0.11.0 age adoption passing confidence
@eslint/js (source) ^9.26.0 -> ^9.27.0 age adoption passing confidence
@oxc-project/runtime (source) ^0.70.0 -> ^0.71.0 age adoption passing confidence
@oxc-project/types (source) ^0.70.0 -> ^0.71.0 age adoption passing confidence
@tailwindcss/postcss (source) ^4.1.6 -> ^4.1.7 age adoption passing confidence
@tailwindcss/vite (source) ^4.1.6 -> ^4.1.7 age adoption passing confidence
@types/express (source) ^5.0.1 -> ^5.0.2 age adoption passing confidence
@types/node (source) ^22.15.17 -> ^22.15.21 age adoption passing confidence
@types/react (source) ^19.1.4 -> ^19.1.5 age adoption passing confidence
@types/react-dom (source) ^19.1.4 -> ^19.1.5 age adoption passing confidence
@vitejs/plugin-react (source) ^4.4.1 -> ^4.5.0 age adoption passing confidence
@vitejs/plugin-react-swc (source) 3.9.0 -> 3.10.0 age adoption passing confidence
@vue/shared (source) ^3.5.13 -> ^3.5.14 age adoption passing confidence
baseline-browser-mapping ^2.3.0 -> ^2.4.2 age adoption passing confidence
debug ^4.4.0 -> ^4.4.1 age adoption passing confidence
eslint (source) ^9.26.0 -> ^9.27.0 age adoption passing confidence
eslint-plugin-import-x ^4.11.1 -> ^4.12.2 age adoption passing confidence
lightningcss ^1.30.0 -> ^1.30.1 age adoption passing confidence
miniflare (source) ^4.20250507.0 -> ^4.20250508.3 age adoption passing confidence
playwright-chromium (source) ^1.50.1 -> ^1.52.0 age adoption passing confidence
pnpm (source) 10.10.0 -> 10.11.0 age adoption passing confidence
rolldown-plugin-dts ^0.13.3 -> ^0.13.4 age adoption passing confidence
sass ^1.88.0 -> ^1.89.0 age adoption passing confidence
sass-embedded ^1.88.0 -> ^1.89.0 age adoption passing confidence
solid-js (source) ^1.9.6 -> ^1.9.7 age adoption passing confidence
svelte (source) ^5.28.6 -> ^5.33.1 age adoption passing confidence
svelte-check ^4.1.7 -> ^4.2.1 age adoption passing confidence
tailwindcss (source) ^4.1.6 -> ^4.1.7 age adoption passing confidence
terser (source) ^5.39.0 -> ^5.39.2 age adoption passing confidence
tsconfck (source) ^3.1.5 -> ^3.1.6 age adoption passing confidence
tsdown ^0.11.12 -> ^0.12.2 age adoption passing confidence
vitepress-plugin-group-icons ^1.5.2 -> ^1.5.5 age adoption passing confidence
vitepress-plugin-llms ^1.1.4 -> ^1.3.3 age adoption passing confidence
vitest (source) ^3.1.3 -> ^3.1.4 age adoption passing confidence
vue (source) ^3.5.13 -> ^3.5.14 age adoption passing confidence

Release Notes

QwikDev/qwik (@​builder.io/qwik)

v1.14.1

Compare Source

v1.14.0

Compare Source

Minor Changes
  • ✨ Major improvements to prefetching with automatic bundle preloading (by @​wmertens in #​7453)

    • This removes the need for service workers, and instead utilize modulepreload link tags for better browser integration.
    • Improves initial load performance by including dynamic imports in the prefetch
    • Reduces complexity while maintaining similar (and even better) functionality
    • Enables some preloading capabilities in dev mode (SSR result only)
    • Includes path-to-bundle mapping in bundle graph (this improves the experience using the <Link> component, AKA "single page app" mode)
    • Server now has built-in manifest support (so no need to pass manifest around)
    • Moves insights-related build code to insights plugin

    ⚠️ ATTENTION:

    • Keep your service worker code as is (either <ServiceWorkerRegister/> or <PrefetchServiceWorker/>).
    • Configure your server to provide long caching headers.

    Service Worker:

    This new implementation will use it to uninstall the current service worker to reduce the unnecessary duplication.

    The builtin service workers components are deprecated but still exist for backwards compatibility.

    ⚠️ IMPORTANT: Caching Headers:

    The files under build/ and assets/ are named with their content hash and may therefore be cached indefinitely. Typically you should serve build/* and assets/* with Cache-Control: public, max-age=31536000, immutable.

    However, if you changed the rollup configuration for output filenames, you will have to adjust the caching configuration accordingly.


    You can configure the preload behavior in your SSR configuration:

    // entry.ssr.ts
    export default function (opts: RenderToStreamOptions) {
      return renderToStream(<Root />, {
        preload: {
          // Enable debug logging for preload operations
          debug: true,
          // Maximum simultaneous preload links
          maxIdlePreloads: 5,
          // Minimum probability threshold for preloading
          preloadProbability: 0.25
          // ...and more, see the type JSDoc on hover
        },
        ...opts,
      });
    }
Optional for legacy apps:

For legacy apps that still need service worker functionality, you can add it back using:

npm run qwik add service-worker

This will add a basic service worker setup that you can customize for specific caching strategies, offline support, or other PWA features beyond just prefetching.

Patch Changes
bombshell-dev/clack (@​clack/prompts)

v0.11.0

Compare Source

Minor Changes
  • 07ca32d: Reverted a change where placeholders were being set as values on return.
Patch Changes
eslint/eslint (@​eslint/js)

v9.27.0

Compare Source

oxc-project/oxc (@​oxc-project/types)

v0.71.0

Features
  • d47b305 ast/estree: Add phase field to ImportExpression in ESTree AST (#​11165) (overlookmotel)
  • 1bc8d29 ast/estree: Add phase field to ImportDeclaration in ESTree AST (#​11157) (overlookmotel)
tailwindlabs/tailwindcss (@​tailwindcss/postcss)

v4.1.7

Compare Source

Added
  • Upgrade: Migrate bare values to named values (#​18000)
  • Upgrade: Added cache to improve template migration performance (#​18025)
Fixed
  • Allow _ before numbers during candidate extraction (#​17961)
  • Prevent duplicate suggestions when using @theme and @utility together (#​17675)
  • Ensure that media queries within ::before and ::after pseudo selectors create valid CSS rules in production builds (#​17979)
  • Ensure that the standalone CLI does not leave temporary files behind (#​17981)
  • Ensure -rotate-* utilities properly negate arbitrary values (#​18014)
  • Ignore custom variants using :merge(…) selectors in legacy JS plugins (#​18020)
  • Ensure classes containing . are properly extracted from Clojure files (#​18038)
  • Upgrade: Fix error when using @import … source(…) (#​17963)
  • Upgrade: Change casing of utilities with named values to kebab-case to match updated theme variables (#​18017)
  • Upgrade: Don't migrate strings that match utility names in Vue attribute bindings other than class (#​18025)
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.5.0

Compare Source

Add filter for rolldown-vite #​470

Added filter so that it is more performant when running this plugin with rolldown-powered version of Vite.

Skip HMR for JSX files with hooks #​480

This removes the HMR warning for hooks with JSX.

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

v3.10.0

Compare Source

Add filter for rolldown-vite #​470

Added filter so that it is more performant when running this plugin with rolldown-powered version of Vite.

Skip HMR preamble in Vitest browser mode #​478

This was causing annoying Sourcemap for "/@&#8203;react-refresh" points to missing source files and is unnecessary in test mode.

Skip HMR for JSX files with hooks #​480

This removes the HMR warning for hooks with JSX.

vuejs/core (@​vue/shared)

v3.5.14

Compare Source

Bug Fixes
Features
web-platform-dx/baseline-browser-mapping (baseline-browser-mapping)

v2.4.2

Compare Source

What's Changed

Full Changelog: web-platform-dx/baseline-browser-mapping@v2.4.1...v2.4.2

v2.4.1: - bug fix

Compare Source

  • v2.4.0 introduced an incorrect depenencies list, v2.4.1 fixes it

Full Changelog: web-platform-dx/baseline-browser-mapping@v2.4.0...v2.4.1

v2.4.0

Compare Source

What's Changed

eslint/eslint (eslint)

v9.27.0

Compare Source

un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.12.2

Compare Source

Patch Changes

v4.12.1

Compare Source

Patch Changes

v4.12.0

Compare Source

Minor Changes
parcel-bundler/lightningcss (lightningcss)

v1.30.1

Compare Source

Fixed crash on process exit when lightningcss was loaded inside a Node.js worker thread on Linux

cloudflare/workers-sdk (miniflare)

v4.20250508.3

Compare Source

Patch Changes

v4.20250508.2

Compare Source

Patch Changes

v4.20250508.1

Compare Source

Patch Changes
  • #​9246 d033a7d Thanks @​edmundhung! - fix: strip CF-Connecting-IP header within fetch

    In v4.15.0, Miniflare began stripping the CF-Connecting-IP header via a global outbound service, which led to a TCP connection regression due to a bug in Workerd. This PR patches the fetch API to strip the header during local wrangler dev sessions as a temporary workaround until the underlying issue is resolved.

v4.20250508.0

Compare Source

Patch Changes
microsoft/playwright (playwright-chromium)

v1.52.0

Compare Source

v1.51.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/35093 - [Regression]: TimeoutOverflowWarning: 2149630.634 does not fit into a 32-bit signed integer
https://github.com/microsoft/playwright/issues/35138 - [Regression]: TypeError: Cannot read properties of undefined (reading 'expectInfo')

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133

[v1.51.0](https://redirect.github.com/microsoft/pla


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 Pull requests that update a dependency file label May 19, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 3da408f to 24816f0 Compare May 21, 2025 02:43
@JounQin
Copy link
Contributor

JounQin commented May 21, 2025

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from ca188e4 to 2c5ebd4 Compare May 23, 2025 01:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2c5ebd4 to ed12984 Compare May 23, 2025 09:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant