Skip to content

chore(deps): update devdependencies#541

Merged
Roma-Naito merged 3 commits intomainfrom
renovate/devdependencies
Sep 26, 2025
Merged

chore(deps): update devdependencies#541
Roma-Naito merged 3 commits intomainfrom
renovate/devdependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Sep 18, 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
@changesets/cli (source) 2.29.5 -> 2.29.7 age confidence
eslint (source) 9.33.0 -> 9.36.0 age confidence
pkg-pr-new (source) 0.0.54 -> 0.0.60 age confidence
pnpm (source) 10.14.0 -> 10.17.1 age confidence
stylelint (source) 16.23.1 -> 16.24.0 age confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.29.7

Compare Source

Patch Changes

v2.29.6

Compare Source

Patch Changes
eslint/eslint (eslint)

v9.36.0

Compare Source

v9.35.0

Compare Source

v9.34.0

Compare Source

stackblitz-labs/pkg.pr.new (pkg-pr-new)

v0.0.60

Compare Source

v0.0.59

Compare Source

v0.0.58

Compare Source

v0.0.57

Compare Source

v0.0.56

Compare Source

v0.0.55

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

v16.24.0

Compare Source

It adds 1 new rule, adds 1 option to a rule and fixes 2 bugs.


Configuration

📅 Schedule: Branch creation - "before 4:00am on Friday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.

@renovate renovate Bot added the renovate Created by renovate label Sep 18, 2025
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Sep 18, 2025

🦋 Changeset detected

Latest commit: fc1bd42

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 2 packages
Name Type
@virtual-live-lab/eslint-config Patch
@virtual-live-lab/stylelint-config Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@github-actions github-actions Bot added eslint issues about eslint stylelint Issues about stylelint labels Sep 18, 2025
@renovate renovate Bot force-pushed the renovate/devdependencies branch 5 times, most recently from aea8d40 to d8005ae Compare September 26, 2025 14:24
@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Sep 26, 2025

Open in StackBlitz

npm i https://pkg.pr.new/@virtual-live-lab/eslint-config@541
npm i https://pkg.pr.new/@virtual-live-lab/prettier-config@541
npm i https://pkg.pr.new/@virtual-live-lab/stylelint-config@541
npm i https://pkg.pr.new/@virtual-live-lab/tsconfig@541

commit: ad73c8e

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Sep 26, 2025

✅ Snapshot test success

See the details: workflow run

@renovate renovate Bot force-pushed the renovate/devdependencies branch from 15003ae to 0b20102 Compare September 26, 2025 14:50
@Roma-Naito Roma-Naito added the update-snapshot スナップショットの更新が含まれるPR label Sep 26, 2025
@robo-miku
Copy link
Copy Markdown
Contributor

robo-miku Bot commented Sep 26, 2025

🚚 Updated snapshots

  • ESLint
  • Stylelint

@Roma-Naito Roma-Naito merged commit 70c04c8 into main Sep 26, 2025
7 checks passed
@Roma-Naito Roma-Naito deleted the renovate/devdependencies branch September 26, 2025 15:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

eslint issues about eslint renovate Created by renovate stylelint Issues about stylelint update-snapshot スナップショットの更新が含まれるPR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant