Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 15, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@cloudflare/vite-plugin (source) ^1.12.3 -> ^1.13.3 age confidence
@remix-run/node-fetch-server (source) ^0.8.0 -> ^0.9.0 age confidence
@rolldown/pluginutils (source) 1.0.0-beta.35 -> 1.0.0-beta.38 age confidence
@types/node (source) ^22.18.1 -> ^22.18.6 age confidence
@types/react (source) ^19.1.12 -> ^19.1.13 age confidence
eslint-plugin-n ^17.21.3 -> ^17.23.1 age confidence
fs-extra ^11.3.1 -> ^11.3.2 age confidence
globals ^16.3.0 -> ^16.4.0 age confidence
magic-string ^0.30.18 -> ^0.30.19 age confidence
pnpm (source) 10.15.1 -> 10.17.0 age confidence
react-router (source) 7.8.2 -> 7.9.1 age confidence
rolldown (source) 1.0.0-beta.35 -> 1.0.0-beta.38 age confidence
tsdown ^0.14.2 -> ^0.15.2 age confidence
typescript-eslint (source) ^8.42.0 -> ^8.44.0 age confidence
vite (source) ^7.1.6 -> ^7.1.11 age confidence
vite (source) ^7.1.4 -> ^7.1.6 age confidence
vite (source) ^7.1.5 -> ^7.1.6 age confidence
wrangler (source) ^4.34.0 -> ^4.38.0 age confidence

Release Notes

cloudflare/workers-sdk (@​cloudflare/vite-plugin)

v1.13.3

Compare Source

Patch Changes

v1.13.2

Compare Source

Patch Changes

v1.13.1

Compare Source

Patch Changes

v1.13.0

Compare Source

Minor Changes
  • #​10212 0837a8d Thanks @​jamesopstad! - Support packages and virtual modules in the main field of the Worker config. The primary use case is to enable users to directly provide a file exported by a framework as the Worker entry module.

  • #​10604 135e066 Thanks @​penalosa! - Enable Remote Bindings without the need for the experimental: { remoteBindings: true } property

Patch Changes

v1.12.4

Compare Source

Patch Changes
remix-run/remix (@​remix-run/node-fetch-server)

v0.9.0

Compare Source

  • Support statusText in HTTP/1 responses (#​10745)

v0.8.1

Compare Source

  • Only abort request.signal when the connection closes before the response completes (see #​10726)
rolldown/rolldown (@​rolldown/pluginutils)

v1.0.0-beta.38

Compare Source

💥 BREAKING CHANGES
  • rolldown_plugin_oxc_runtime: embed helpers to support browser environment (#​6177) by @​shulaoda
🚀 Features
🐛 Bug Fixes
💼 Other
  • rolldown: support to build rolldown with .wasm binding (#​6153) by @​hyf0
  • rolldown: refactor build.ts to prepare to support build rolldown package with wasi binding (#​6152) by @​hyf0
🚜 Refactor
📚 Documentation
⚡ Performance
🧪 Testing
  • hmr: ensure each test isolated to be able to be retryed (#​6142) by @​hyf0
⚙️ Miscellaneous Tasks

v1.0.0-beta.37

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
🧪 Testing
⚙️ Miscellaneous Tasks
◀️ Revert

v1.0.0-beta.36

Compare Source

💥 BREAKING CHANGES
🚀 Features
🐛 Bug Fixes
🚜 Refactor
  • dev: introduce DevWatchOptions for enhanced file watching configuration (#​6057) by @​hyf0
  • unify to use is_in_node_modules from rolldown_plugin_utils (#​6066) by @​shulaoda
🧪 Testing
⚙️ Miscellaneous Tasks
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.23.1

Compare Source

🩹 Fixes
  • node-builtins-modules/tls.js: Update minimal version (#​484) (fe94432)
📚 Documentation
  • improve clarity of no-missing-import and no-missing-require (#​455) (92ea876)

v17.23.0

Compare Source

🌟 Features

v17.22.0

Compare Source

🌟 Features
🩹 Fixes
  • ci: bump markdowncli-lint version (#​468) (91a56d0)
  • no-unsupported: URL.createObjectURL, URL.revokeObjectURL are supported (#​471) (844155c)
jprichardson/node-fs-extra (fs-extra)

v11.3.2

Compare Source

  • Fix spurrious UnhandledPromiseRejectionWarning that could occur when calling .copy() in some cases (#​1056, #​1058)
sindresorhus/globals (globals)

v16.4.0

Compare Source


rich-harris/magic-string (magic-string)

v0.30.19

Compare Source

Bug Fixes
Features
  • replace(All) support replacement for functions when the first parameter is a string (#​304) (fd1d887)
pnpm/pnpm (pnpm)

v10.17.0

Compare Source

Minor Changes
  • The minimumReleaseAgeExclude setting now supports patterns. For instance:

    minimumReleaseAge: 1440
    minimumReleaseAgeExclude:
      - "@​eslint/*"

    Related PR: #​9984.

Patch Changes
  • Don't ignore the minimumReleaseAge check, when the package is requested by exact version and the packument is loaded from cache #​9978.
  • When minimumReleaseAge is set and the active version under a dist-tag is not mature enough, do not downgrade to a prerelease version in case the original version wasn't a prerelease one #​9979.

v10.16.1

Compare Source

Patch Changes
  • The full metadata cache should be stored not at the same location as the abbreviated metadata. This fixes a bug where pnpm was loading the abbreviated metadata from cache and couldn't find the "time" field as a result #​9963.
  • Forcibly disable ANSI color codes when generating patch diff #​9914.

v10.16.0

Compare Source

Minor Changes
  • There have been several incidents recently where popular packages were successfully attacked. To reduce the risk of installing a compromised version, we are introducing a new setting that delays the installation of newly released dependencies. In most cases, such attacks are discovered quickly and the malicious versions are removed from the registry within an hour.

    The new setting is called minimumReleaseAge. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, setting minimumReleaseAge: 1440 ensures that only packages released at least one day ago can be installed.

    If you set minimumReleaseAge but need to disable this restriction for certain dependencies, you can list them under the minimumReleaseAgeExclude setting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time:

    minimumReleaseAgeExclude:
      - webpack

    Related issue: #​9921.

  • Added support for finders #​9946.

    In the past, pnpm list and pnpm why could only search for dependencies by name (and optionally version). For example:

    pnpm why minimist
    

    prints the chain of dependencies to any installed instance of minimist:

    verdaccio 5.20.1
    ├─┬ handlebars 4.7.7
    │ └── minimist 1.2.8
    └─┬ mv 2.1.1
      └─┬ mkdirp 0.5.6
        └── minimist 1.2.8
    

    What if we want to search by other properties of a dependency, not just its name? For instance, find all packages that have react@17 in their peer dependencies?

    This is now possible with "finder functions". Finder functions can be declared in .pnpmfile.cjs and invoked with the --find-by=<function name> flag when running pnpm list or pnpm why.

    Let's say we want to find any dependencies that have React 17 in peer dependencies. We can add this finder to our .pnpmfile.cjs:

    module.exports = {
      finders: {
        react17: (ctx) => {
          return ctx.readManifest().peerDependencies?.react === "^17.0.0";
        },
      },
    };

    Now we can use this finder function by running:

    pnpm why --find-by=react17
    

    pnpm will find all dependencies that have this React in peer dependencies and print their exact locations in the dependency graph.

    @&#8203;apollo/client 4.0.4
    ├── @&#8203;graphql-typed-document-node/core 3.2.0
    └── graphql-tag 2.12.6
    

    It is also possible to print out some additional information in the output by returning a string from the finder. For example, with the following finder:

    module.exports = {
      finders: {
        react17: (ctx) => {
          const manifest = ctx.readManifest();
          if (manifest.peerDependencies?.react === "^17.0.0") {
            r

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.

@hi-ogawa
Copy link
Contributor

Reported an issue for @cloudflare/vite-plugin in cloudflare/workers-sdk#10650

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 50f1db5 to d22fd16 Compare September 18, 2025 13:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d22fd16 to f426d3a Compare September 18, 2025 18:15
@hi-ogawa hi-ogawa merged commit 3c2ebf8 into main Sep 19, 2025
21 checks passed
@hi-ogawa hi-ogawa deleted the renovate/all-minor-patch branch September 19, 2025 00:12
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