Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 7, 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
@sxzz/eslint-config ^7.1.2 -> ^7.2.6 age confidence
@sxzz/prettier-config ^2.2.3 -> ^2.2.4 age confidence
@types/node (source) ^24.2.1 -> ^24.6.1 age confidence
bumpp ^10.2.2 -> ^10.2.3 age confidence
eslint (source) ^9.33.0 -> ^9.36.0 age confidence
magic-string ^0.30.17 -> ^0.30.19 age confidence
magic-string-stack ^1.0.0 -> ^1.1.0 age confidence
pnpm (source) 10.14.0 -> 10.17.1 age confidence
tsdown ^0.14.0 -> ^0.15.6 age confidence
tsx (source) ^4.20.3 -> ^4.20.6 age confidence
typescript (source) ^5.9.2 -> ^5.9.3 age confidence

Release Notes

sxzz/eslint-config (@​sxzz/eslint-config)

v7.2.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.5

Compare Source

No significant changes

    View changes on GitHub

v7.2.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v7.2.2

Compare Source

   🐞 Bug Fixes
  • Disable no-anonymous-default-export for vue/jsx files  -  by @​sxzz (a1e6a)
    View changes on GitHub

v7.2.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v7.2.0

Compare Source

   🚀 Features
    View changes on GitHub

v7.1.4

Compare Source

   🚀 Features
    View changes on GitHub

v7.1.3

Compare Source

No significant changes

    View changes on GitHub
sxzz/prettier-config (@​sxzz/prettier-config)

v2.2.4

Compare Source

No significant changes

    View changes on GitHub
antfu-collective/bumpp (bumpp)

v10.2.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v9.36.0

Compare Source

v9.35.0

Compare Source

v9.34.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)

v0.30.18

Compare Source

Bug Fixes
antfu/magic-string-stack (magic-string-stack)

v1.1.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
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.
rolldown/tsdown (tsdown)

v0.15.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.15.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

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

v0.14.2

Compare Source

   🚀 Features
    View changes on GitHub

v0.14.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
privatenumber/tsx (tsx)

v4.20.6

Compare Source

Bug Fixes
  • properly hide relaySignal from process.listeners() (#​741) (710a424)

This release is also available on:

v4.20.5

Compare Source

Bug Fixes
  • handle ambiguous packages (796053a)

This release is also available on:

v4.20.4

Compare Source

microsoft/TypeScript (typescript)

v5.9.3

Compare Source


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.

@renovate renovate bot added the dependencies label Apr 7, 2025
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 73d83e6 to 24c35c1 Compare April 14, 2025 12:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 520af03 to c193e00 Compare April 24, 2025 01:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 026ee40 to 33a1695 Compare April 29, 2025 20:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a97aba4 to 0aa2c3d Compare May 6, 2025 02:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 22ade35 to d5eccf2 Compare August 22, 2025 02:14
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Aug 22, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 30cc6b3 to 9695987 Compare August 25, 2025 11:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4ec26a1 to 77f07fe Compare September 6, 2025 19:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3651545 to 4a0cdd8 Compare September 14, 2025 14:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from a708555 to d855802 Compare September 22, 2025 17:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 5d31774 to 45ad6b0 Compare September 30, 2025 23:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 45ad6b0 to 4a75eb4 Compare October 1, 2025 03:04
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.

0 participants