Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 12, 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
@typescript-eslint/utils (source) 8.42.0 -> 8.43.0 age confidence
eslint (source) 9.34.0 -> 9.35.0 age confidence
pnpm (source) 10.15.1 -> 10.16.0 age confidence
tsdown ^0.14.1 -> ^0.15.0 age confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/utils)

v8.43.0

Compare Source

🩹 Fixes
  • scope-manager: exclude Program from DefinitionBase node types (#​11469)
❤️ Thank You

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

eslint/eslint (eslint)

v9.35.0

Compare Source

pnpm/pnpm (pnpm)

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.
rolldown/tsdown (tsdown)

v0.15.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

Copy link

vercel bot commented Sep 12, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
vue-echarts Ready Ready Preview Comment Sep 20, 2025 4:02pm

@renovate renovate bot requested a review from a team as a code owner September 12, 2025 18:34
@renovate renovate bot force-pushed the renovate/minors-after-7-days branch from d788afa to 4e802c8 Compare September 15, 2025 23:26
@renovate renovate bot changed the title chore(deps): update dependency eslint to v9.35.0 chore(deps): update minors after 7 days Sep 15, 2025
@renovate renovate bot force-pushed the renovate/minors-after-7-days branch from 4e802c8 to 5190d64 Compare September 16, 2025 14:29
@renovate renovate bot force-pushed the renovate/minors-after-7-days branch from 5190d64 to b45bff6 Compare September 19, 2025 13:54
@renovate renovate bot force-pushed the renovate/minors-after-7-days branch from b45bff6 to e58f607 Compare September 20, 2025 14:36
@renovate renovate bot force-pushed the renovate/minors-after-7-days branch from e58f607 to 4ba4a21 Compare September 20, 2025 14:54
@renovate renovate bot force-pushed the renovate/minors-after-7-days branch from 4ba4a21 to 50a0a63 Compare September 20, 2025 16:02
@Justineo Justineo merged commit 3faa375 into main Sep 20, 2025
9 checks passed
@Justineo Justineo deleted the renovate/minors-after-7-days branch September 20, 2025 17:32
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