Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 31, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence Type Update Pending
nikic/php-parser 5.6.0 -> 5.6.1 age confidence require patch
node (source) 22.17.1 -> 22.20.0 age confidence minor
pnpm (source) 10.13.1 -> 10.17.1 age confidence packageManager minor 10.18.0
typescript (source) 5.8.3 -> 5.9.2 age confidence dependencies minor 5.9.3

Release Notes

nikic/PHP-Parser (nikic/php-parser)

v5.6.1

Compare Source

Fixed
  • Fixed Param::isPublic() for parameters with asymmetric visibility keyword.
  • Fixed PHP 8.5 deprecation warnings for SplObjectStorage methods.
Added
  • Added cast kind attributes to Cast\Int_, Cast\Bool_ and Cast\String_.
    These allow distinguishing the deprecated versions of these casts.
nodejs/node (node)

v22.20.0

Compare Source

v22.19.0

Compare Source

v22.18.0

Compare Source

pnpm/pnpm (pnpm)

v10.17.1

Compare Source

Patch Changes
  • When a version specifier cannot be resolved because the versions don't satisfy the minimumReleaseAge setting, print this information out in the error message #​9974.
  • Fix state.json creation path when executing pnpm patch in a workspace project #​9733.
  • When minimumReleaseAge is set and the latest tag is not mature enough, prefer a non-deprecated version as the new latest #​9987.

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.

v10.15.1

Compare Source

Patch Changes
  • Fix .pnp.cjs crash when importing subpath #​9904.
  • When resolving peer dependencies, pnpm looks whether the peer dependency is present in the root workspace project's dependencies. This change makes it so that the peer dependency is correctly resolved even from aliased npm-hosted dependencies or other types of dependencies #​9913.

v10.15.0

Compare Source

Minor Changes
  • Added the cleanupUnusedCatalogs configuration. When set to true, pnpm will remove unused catalog entries during installation #​9793.
  • Automatically load pnpmfiles from config dependencies that are named @*/pnpm-plugin-* #​9780.
  • pnpm config get now prints an INI string for an object value #​9797.
  • pnpm config get now accepts property paths (e.g. pnpm config get catalog.react, pnpm config get .catalog.react, pnpm config get 'packageExtensions["@&#8203;babel/parser"].peerDependencies["@&#8203;babel/types"]'), and pnpm config set now accepts dot-leading or subscripted keys (e.g. pnpm config set .ignoreScripts true).
  • pnpm config get --json now prints a JSON serialization of config value, and pnpm config set --json now parses the input value as JSON.
Patch Changes
  • Semi-breaking. When automatically installing missing peer dependencies, prefer versions that are already present in the direct dependencies of the root workspace package #​9835.
  • When executing the pnpm create command, must verify whether the node version is supported even if a cache already exists #​9775.
  • When making requests for the non-abbreviated packument, add */* to the Accept header to avoid getting a 406 error on AWS CodeArtifact #​9862.
  • The standalone exe version of pnpm works with glibc 2.26 again #​9734.
  • Fix a regression in which pnpm dlx pkg --help doesn't pass --help to pkg #​9823.

v10.14.0

Compare Source

Minor Changes
  • Added support for JavaScript runtime resolution

    Declare Node.js, Deno, or Bun in devEngines.runtime (inside package.json) and let pnpm download and pin it automatically.

    Usage example:

    {
      "devEngines": {
        "runtime": {
          "name": "node",
          "version": "^24.4.0",
          "onFail": "download" (we only support the "download" value for now)
        }
      }
    }

    How it works:

    1. pnpm install resolves your specified range to the latest matching runtime version.
    2. The exact version (and checksum) is saved in the lockfile.
    3. Scripts use the local runtime, ensuring consistency across environments.

    Why this is better:

    1. This new setting supports also Deno and Bun (vs. our Node-only settings useNodeVersion and executionEnv.nodeVersion)
    2. Supports version ranges (not just a fixed version).
    3. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity.
    4. It can be used on any workspace project (like executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.
    5. For now devEngines.runtime setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.

    Related PR: #​9755.

  • Add --cpu, --libc, and --os to pnpm install, pnpm add, and pnpm dlx to customize supportedArchitectures via the CLI #​7510.

Patch Changes
  • Fix a bug in which pnpm add downloads packages whose libc differ from pnpm.supportedArchitectures.libc.
  • The integrities of the downloaded Node.js artifacts are verified #​9750.
  • Allow dlx to parse CLI flags and options between the dlx command and the command to run or between the dlx command and -- #​9719.
  • pnpm install --prod should removing hoisted dev dependencies #​9782.
  • Fix an edge case bug causing local tarballs to not re-link into the virtual store. This bug would happen when changing the contents of the tarball without renaming the file and running a filtered install.
  • Fix a bug causing pnpm install to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.
microsoft/TypeScript (typescript)

v5.9.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from de66789 to 5262358 Compare July 31, 2025 15:57
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 5262358 to 4415768 Compare July 31, 2025 21:48
@renovate renovate bot changed the title chore(deps): update pnpm to v10.14.0 fix(deps): update automerge non-major updates Jul 31, 2025
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 4415768 to 92f7613 Compare July 31, 2025 21:49
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 92f7613 to 5fcc3a4 Compare August 1, 2025 03:14
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 5fcc3a4 to c6d2feb Compare August 1, 2025 03:15
@renovate renovate bot assigned rainx Aug 1, 2025
@renovate renovate bot requested a review from rainx August 1, 2025 06:32
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from c6d2feb to 48f3db1 Compare August 4, 2025 05:54
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 48f3db1 to 45236ba Compare August 4, 2025 05:55
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 45236ba to b8cd9b8 Compare August 10, 2025 13:42
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from b8cd9b8 to 35a86e7 Compare August 10, 2025 13:43
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 35a86e7 to 2c6af84 Compare August 11, 2025 05:57
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 2c6af84 to 619e357 Compare August 11, 2025 05:58
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 619e357 to 67e0c4d Compare August 13, 2025 17:27
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 67e0c4d to 280b822 Compare August 13, 2025 17:28
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 280b822 to fffc3ff Compare August 13, 2025 21:01
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from fffc3ff to 04589f7 Compare August 13, 2025 21:02
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 04589f7 to a782722 Compare August 14, 2025 11:30
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from a782722 to ffbfe6a Compare August 14, 2025 11:31
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from ffbfe6a to 3c5af71 Compare August 18, 2025 05:33
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 3c5af71 to 7535579 Compare August 18, 2025 05:34
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 7535579 to 2c570f9 Compare August 19, 2025 14:12
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 2c570f9 to f95797e Compare August 19, 2025 14:13
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from f95797e to efe23a6 Compare August 19, 2025 21:11
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from efe23a6 to a964a76 Compare August 19, 2025 21:12
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from a964a76 to 12f2f82 Compare August 25, 2025 05:45
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 12f2f82 to a2d738f Compare August 25, 2025 05:46
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from a2d738f to 9ec3b22 Compare August 31, 2025 09:57
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 9ec3b22 to afcb449 Compare August 31, 2025 09:58
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from afcb449 to bc75aac Compare September 8, 2025 00:07
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from bc75aac to 4368878 Compare September 8, 2025 00:08
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 4368878 to 56e3eea Compare September 8, 2025 00:37
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 56e3eea to cdb1b03 Compare September 8, 2025 00:38
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from cdb1b03 to 93e9fac Compare September 15, 2025 06:11
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 93e9fac to fd01cb4 Compare September 15, 2025 06:13
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from fd01cb4 to 6dbe060 Compare September 19, 2025 16:31
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 6dbe060 to ecb2320 Compare September 19, 2025 16:32
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from ecb2320 to d14e6d3 Compare September 20, 2025 18:13
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from d14e6d3 to 4bbf6f9 Compare September 20, 2025 18:14
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 4bbf6f9 to 6e5b6f4 Compare September 24, 2025 17:01
@rainx rainx force-pushed the renovate/automerge-non-major-updates branch from 6e5b6f4 to 54cb09a Compare September 24, 2025 17:02
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch 2 times, most recently from ea396db to 90ba42f Compare September 29, 2025 17:52
@renovate renovate bot force-pushed the renovate/automerge-non-major-updates branch from 90ba42f to 395276a Compare October 1, 2025 01:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

1 participant