Skip to content

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

Merged
sapphi-red merged 2 commits intomainfrom
renovate/all-minor-patch
Apr 20, 2026
Merged

fix(deps): update all non-major dependencies#22268
sapphi-red merged 2 commits intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 20, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@rolldown/plugin-babel (source) 0.2.20.2.3 age confidence patch
@vercel/detect-agent (source) ^1.2.2^1.2.3 age confidence devDependencies patch
@vitejs/devtools (source) ^0.1.13^0.1.14 age confidence devDependencies patch
@vitejs/plugin-vue (source) ^6.0.5^6.0.6 age confidence devDependencies patch
autoprefixer ^10.4.27^10.5.0 age confidence dependencies minor
baseline-browser-mapping ^2.10.18^2.10.20 age confidence devDependencies patch
eslint-plugin-react-hooks (source) ^7.0.1^7.1.1 age confidence devDependencies minor
feed ^5.2.0^5.2.1 age confidence devDependencies patch
miniflare (source) ^4.20260409.0^4.20260415.0 age confidence devDependencies minor
nanoid ^5.1.7^5.1.9 age confidence devDependencies patch
oxfmt (source) ^0.44.0^0.45.0 age confidence devDependencies minor
parse5 (source) ^8.0.0^8.0.1 age confidence devDependencies patch
postcss (source) ^8.5.9^8.5.10 age confidence dependencies patch
svelte (source) ^5.55.3^5.55.4 age confidence devDependencies patch
tj-actions/changed-files v47.0.5v47.0.6 age confidence action patch
typescript-eslint (source) ^8.58.1^8.58.2 age confidence devDependencies patch
vitepress-plugin-graphviz (source) ^0.0.1^0.1.0 age confidence devDependencies minor
vitepress-plugin-group-icons ^1.7.3^1.7.5 age confidence devDependencies patch
vitepress-plugin-llms ^1.12.0^1.12.1 age confidence devDependencies patch
vue-tsc (source) ^3.2.6^3.2.7 age confidence devDependencies patch

Release Notes

rolldown/plugins (@​rolldown/plugin-babel)

v0.2.3

Bug Fixes
Miscellaneous Chores
vercel/vercel (@​vercel/detect-agent)

v1.2.3

Compare Source

Patch Changes
  • Add v0 to detect-agent supported agents (#​16016)
vitejs/devtools (@​vitejs/devtools)

v0.1.14

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v6.0.6

Features
  • plugin-vue: propagate multiRoot for template-only vapor components (#​745) (9e07ae9)
Bug Fixes
Miscellaneous Chores
postcss/autoprefixer (autoprefixer)

v10.5.0

Compare Source

  • Added mask-position-x and mask-position-y support (by @​toporek).
web-platform-dx/baseline-browser-mapping (baseline-browser-mapping)

v2.10.20

Compare Source

v2.10.19

Compare Source

facebook/react (eslint-plugin-react-hooks)

v7.1.1

Compare Source

Note: 7.1.0 accidentally removed the component-hook-factories rule, causing errors for users who referenced it in their ESLint config. This is now fixed.

  • Add deprecated no-op component-hook-factories rule for backwards compatibility. (@​mofeiZ in #​36307)

v7.1.0

Compare Source

This release adds ESLint v10 support, improves performance by skipping compilation for non-React files, and includes compiler lint improvements including better set-state-in-effect detection, improved ref validation, and more helpful error reporting.

jpmonette/feed (feed)

v5.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: jpmonette/feed@5.2.0...5.2.1

cloudflare/workers-sdk (miniflare)

v4.20260415.0

Compare Source

Patch Changes
  • #​13354 854d66c Thanks @​courtney-sims! - Prepares asset-worker for a more gradual rollout by refactoring and separating out the invocation from the business logic. In the future, this will provide space for us to route requests to new versions of asset-worker based on their plan, but should make no functional difference today.

  • #​13450 6f63eaa Thanks @​petebacondarwin! - Fix POST/PUT requests with non-2xx responses throwing "fetch failed"

    Previously, sending a POST or PUT request that received a non-2xx response (e.g. 401, 400, 403) would throw a TypeError: fetch failed error. This was caused by an undici bug where isTraversableNavigable() incorrectly returned true, causing the 401 credential-retry block to execute in Node.js and fail on stream-backed request bodies. This has been fixed upstream in undici v7.24.8, so we've bumped our dependency and removed the previous pnpm patch workaround.

  • #​13447 aef9825 Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260410.1 1.20260413.1
  • #​13475 eaaa728 Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260413.1 1.20260415.1
  • #​13472 58292f6 Thanks @​roerohan! - Fix wrangler dev crash when using a Flagship binding with remote: true

    In remote mode, the flagship binding is backed by a generic proxy worker that only has a default export. The plugin was requesting a named entrypoint "FlagshipBinding" which doesn't exist on it, causing workerd to reject the binding at startup. The named entrypoint is now omitted in remote mode so workerd routes to the default export, which correctly proxies all RPC calls to the remote Flagship service.

  • #​13386 5e5bbc1 Thanks @​mksglu! - Make startup network requests non-blocking on slow connections

    Wrangler makes network requests during startup (npm update check, request.cf data fetch) that previously blocked the CLI indefinitely on slow or degraded connections (airplane wifi, trains), causing 10+ second delays.

    • Update check: The banner now races the update check against a 100ms grace period. On a cache hit (most runs) the result resolves in <1ms via the I/O poll phase; on a cache miss the banner prints immediately without blocking. A 3s safety-net timeout caps the update-check library's auth-retry path.
    • request.cf fetch: The fetch to workers.cloudflare.com/cf.json now uses AbortSignal.timeout(3000), falling back to cached/default data on timeout.
  • #​13476 d5ff5a4 Thanks @​roerohan! - Fix wrangler dev crash when using a Stream binding with remote: true

    In remote mode, the Stream binding is backed by a generic proxy worker that only has a default export. The plugin was requesting a named entrypoint "StreamBinding" which doesn't exist on it, causing workerd to reject the binding at startup. The named entrypoint is now omitted in remote mode so workerd routes to the default export, which correctly proxies all RPC calls to the remote Stream service.

  • #​13426 89c7829 Thanks @​edmundhung! - Reject non-local /cdn-cgi/* requests in Miniflare

    Miniflare now validates Host and Origin on /cdn-cgi/* requests before request rewriting. Requests are still allowed for localhost, configured route hostnames, and the configured upstream hostname, but non-local hostnames can no longer reach internal development endpoints such as platform-proxy, handler routes, live reload, and the local explorer.

v4.20260410.0

Compare Source

Minor Changes
  • #​13139 79fd529 Thanks @​roerohan! - feat: add Flagship feature flag binding support

    Adds end-to-end support for the Flagship feature flag binding, which allows Workers to evaluate feature flags from Cloudflare's Flagship service. Configure it in wrangler.json with a flagship array containing binding and app_id entries. In local dev, the binding returns default values for all flag evaluations; use "remote": true in the binding to evaluate flags against the live Flagship service.

  • #​13392 2589395 Thanks @​emily-shen! - Add telemetry to local REST API

    The local REST API (used by the local explorer) now collects anonymous usage telemetry. This respects any existing telemetry preferences, which can be disabled by running the command wrangler telemetry disable.

    This only applies when the dev session is started via Wrangler, and not via the Vite plugin or standalone Miniflare.

    No actual data values, keys, query contents, or resource IDs are collected.

    Event schema:

    {
      "event": "localapi.<route>.<method>", // e.g. localapi.kv.keys.get
      "deviceId": "<uuid>",
      "timestamp": 1234567890,
      "properties": {
        "userAgent": "Mozilla/5.0 ...",
        // Only for localapi.local.workers.get:
        "workerCount": 2,
        "kvCount": 3,
        "d1Count": 1,
        "r2Count": 0,
        "doCount": 1,
        "workflowsCount": 0
      }
    }

    Note: the Local Explorer and corresponding local REST API is still an experimental feature.

Patch Changes
  • #​13393 c50cb5b Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260409.1 1.20260410.1
  • #​13335 5eff8c1 Thanks @​KennethRuan! - Return metadata in queue broker response

    The queue broker's /message and /batch endpoints now return a JSON response body containing queue metrics (backlogCount, backlogBytes, oldestMessageTimestamp) instead of an empty response. A new GET /metrics endpoint is also added to support the metrics() API.

ai/nanoid (nanoid)

v5.1.9

Compare Source

  • Fixed npm package size regression.

v5.1.8

Compare Source

oxc-project/oxc (oxfmt)

v0.45.0

Compare Source

🐛 Bug Fixes
inikulin/parse5 (parse5)

v8.0.1

Compare Source

What's Changed


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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 Apr 20, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a5f819c to fd3870d Compare April 20, 2026 03:33
@sapphi-red sapphi-red merged commit c28e9c1 into main Apr 20, 2026
17 checks passed
@sapphi-red sapphi-red deleted the renovate/all-minor-patch branch April 20, 2026 04:03
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