Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 8, 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 Type Update
@babel/core (source) ^7.28.3 -> ^7.28.4 age confidence devDependencies patch
@types/semver (source) 7.7.0 -> 7.7.1 age confidence devDependencies patch
@vue/reactivity (source) ^3.5.20 -> ^3.5.21 age confidence devDependencies patch
c12 ^3.2.0 -> ^3.3.0 age confidence dependencies minor
danielroe/provenance-action v0.1.0 -> v0.1.1 age confidence action patch
knip (source) 5.63.0 -> 5.64.0 age confidence devDependencies minor
magic-string ^0.30.18 -> ^0.30.19 age confidence dependencies patch
nitropack ^2.12.4 -> ^2.12.6 age confidence dependencies patch
nitropack ^2.12.4 -> ^2.12.6 age confidence devDependencies patch
nypm ^0.6.1 -> ^0.6.2 age confidence dependencies patch
pnpm (source) 10.15.1 -> 10.17.0 age confidence packageManager minor
rollup (source) ^4.50.0 -> ^4.52.0 age confidence devDependencies minor
terser (source) ^5.43.1 -> ^5.44.0 age confidence dependencies patch
unimport ^5.2.0 -> ^5.3.0 age confidence dependencies minor
vite (source) ~7.1.4 -> ~7.1.7 age confidence dependencies patch
vite (source) ~7.1.4 -> ~7.1.7 age confidence devDependencies patch

Release Notes

unjs/c12 (c12)

v3.3.0

Compare Source

compare changes

🚀 Enhancements
  • Support loading config with array exports (#​272)
  • Allow extends without extension (#​268)
🩹 Fixes
  • loadDotenv: cwd is optional (#​273)
📖 Documentation
  • Improve dotenv section with multiple files example (#​270)
🏡 Chore
✅ Tests
❤️ Contributors
danielroe/provenance-action (danielroe/provenance-action)

v0.1.1

Compare Source

compare changes

🚀 Enhancements
  • Add support for bun.lock (#​12)
📖 Documentation
  • Use @main constraint for example (237ceea)
❤️ Contributors
webpro-nl/knip (knip)

v5.64.0

Compare Source

v5.63.1

Compare Source

unjs/nypm (nypm)

v0.6.2

Compare Source

compare changes

🚀 Enhancements
  • runScript: Support custom env (#​215)
  • dlx and packages option for dlxCommand (#​218)
🏡 Chore
❤️ Contributors
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") {
            return `license: ${manifest.license}`;
          }
          return false;
        },
      },
    };

    Every matched package will also print out the license from its package.json:

    @&#8203;apollo/client 4.0.4
    ├── @&#8203;graphql-typed-document-node/core 3.2.0
    │   license: MIT
    └── graphql-tag 2.12.6
        license: MIT
    
Patch Changes
  • Fix deprecation warning printed when executing pnpm with Node.js 24 #​9529.
  • Throw an error if nodeVersion is not set to an exact semver version #​9934.
  • pnpm publish should be able to publish a .tar.gz file #​9927.
  • Canceling a running process with Ctrl-C should make pnpm run return a non-zero exit code #​9626.
rollup/rollup (rollup)

v4.52.0

Compare Source

2025-09-19

Features
  • Add option output.onlyExplicitManualChunks to turn off merging additional dependencies into manual chunks (#​6087)
  • Add support for x86_64-pc-windows-gnu platform (#​6110)
Pull Requests

v4.51.0

Compare Source

2025-09-19

Features
  • Support ROLLUP_FILE_URL_OBJ placeholder to inject file URLs into the generated code (#​6108)
Bug Fixes
  • Improve OpenHarmony build to work in more situations (#​6115)
Pull Requests

v4.50.2

Compare Source

2025-09-15

Bug Fixes
  • Resolve an issue where unused destructured array pattern declarations would conflict with included variables (#​6100)
Pull Requests
unjs/unimport (unimport)

v5.3.0

Compare Source

Features
  • optimize type declaration generation with const { ... } (#​468) (0a47eab)
vitejs/vite (vite)

v7.1.7

Bug Fixes
  • build: fix ssr environment emitAssets: true when sharedConfigBuild: true (#​20787) (4c4583c)
  • client: use CSP nonce when rendering error overlay (#​20791) (9bc9d12)
  • deps: update all non-major dependencies (#​20811) (9f2247c)
  • glob: handle glob imports from folders starting with dot (#​20800) (105abe8)
  • hmr: trigger prune event when import is removed from non hmr module (#​20768) (9f32b1d)
  • hmr: wait for import.meta.hot.prune callbacks to complete before running other HMRs (#​20698) (98a3484)

v7.1.6

Compare Source

Bug Fixes
  • deps: update all non-major dependencies (#​20773) (88af2ae)
  • esbuild: inject esbuild helper functions with minified $ variables correctly (#​20761) (7e8e004)
  • fallback terser to main thread when nameCache is provided (#​20750) (a679a64)
  • types: strict env typings fail when skipLibCheck is false (#​20755) (cc54e29)
Miscellaneous Chores

Configuration

📅 Schedule: Branch creation - "on Monday" (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 requested a review from wattanx as a code owner September 8, 2025 03:00
Copy link

pkg-pr-new bot commented Sep 8, 2025

Open in StackBlitz

npm i https://pkg.pr.new/@nuxt/bridge@1605
npm i https://pkg.pr.new/@nuxt/bridge-schema@1605

commit: 12f632a

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 050e822 to 69b1839 Compare September 14, 2025 01:04
@wattanx
Copy link
Collaborator

wattanx commented Sep 14, 2025

knip has an issue at webpro-nl/knip#1262

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from cc57f99 to 5b5a8d4 Compare September 22, 2025 03:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5b5a8d4 to 12f632a Compare September 22, 2025 06:41
@wattanx wattanx merged commit 47a061b into main Sep 22, 2025
41 checks passed
@wattanx wattanx deleted the renovate/all-minor-patch branch September 22, 2025 06:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant