Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@clack/prompts (source) ^0.10.0 -> ^0.10.1 age adoption passing confidence
@eslint/compat ^1.2.7 -> ^1.2.8 age adoption passing confidence
@eslint/js (source) ^9.23.0 -> ^9.25.1 age adoption passing confidence
@microsoft/api-extractor (source) ^7.52.2 -> ^7.52.6 age adoption passing confidence
@rslib/core (source) 0.6.1 -> 0.6.8 age adoption passing confidence
@types/node (source) 22.13.14 -> 22.15.3 age adoption passing confidence
eslint (source) ^9.23.0 -> ^9.25.1 age adoption passing confidence
eslint-plugin-react ^7.37.4 -> ^7.37.5 age adoption passing confidence
eslint-plugin-svelte (source) ^3.4.1 -> ^3.5.1 age adoption passing confidence
eslint-plugin-vue (source) ^10.0.0 -> ^10.1.0 age adoption passing confidence
pnpm (source) 10.7.0 -> 10.10.0 age adoption passing confidence
simple-git-hooks ^2.12.1 -> ^2.13.0 age adoption passing confidence
typescript (source) ^5.8.2 -> ^5.8.3 age adoption passing confidence
typescript-eslint (source) ^8.29.0 -> ^8.31.1 age adoption passing confidence

Release Notes

bombshell-dev/clack (@​clack/prompts)

v0.10.1

Compare Source

Patch Changes
  • 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
  • 30aa7ed: Adds a new selectableGroups boolean to the group multi-select prompt. Using selectableGroups: false will disable the ability to select a top-level group, but still allow every child to be selected individually.
  • Updated dependencies [30aa7ed]
  • Updated dependencies [5dfce8a]
  • Updated dependencies [f574297]
eslint/rewrite (@​eslint/compat)

v1.2.8

Compare Source

eslint/eslint (@​eslint/js)

v9.25.1

Compare Source

v9.25.0

Compare Source

v9.24.0

Compare Source

microsoft/rushstack (@​microsoft/api-extractor)

v7.52.6

Compare Source

Thu, 01 May 2025 00:11:12 GMT

Version update only

v7.52.5

Compare Source

Mon, 21 Apr 2025 22:24:25 GMT

Version update only

v7.52.4

Compare Source

Thu, 17 Apr 2025 00:11:21 GMT

Patches
  • Update documentation for extends

v7.52.3

Compare Source

Fri, 04 Apr 2025 18:34:35 GMT

Patches
  • Add support for customizing which TSDoc tags appear in API reports
web-infra-dev/rslib (@​rslib/core)

v0.6.8

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.7...v0.6.8

v0.6.7

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.6...v0.6.7

v0.6.6

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.5...v0.6.6

v0.6.5

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.4...v0.6.5

v0.6.4

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.3...v0.6.4

v0.6.3

Compare Source

What's Changed

Performance 🚀
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.6.2...v0.6.3

v0.6.2

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.1...v0.6.2

eslint/eslint (eslint)

v9.25.1

Compare Source

v9.25.0

Compare Source

v9.24.0

Compare Source

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.5

Compare Source

Fixed
Changed
sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v3.5.1

Compare Source

Patch Changes

v3.5.0

Compare Source

Minor Changes
Patch Changes
vuejs/eslint-plugin-vue (eslint-plugin-vue)

v10.1.0

Compare Source

v10.0.1

Compare Source

pnpm/pnpm (pnpm)

v10.10.0

Compare Source

Minor Changes
  • Allow loading the preResolution, importPackage, and fetchers hooks from local pnpmfile.
Patch Changes
  • Fix cd command, when shellEmulator is true #​7838.
  • Sort keys in pnpm-workspace.yaml #​9453.
  • Pass the npm_package_json environment variable to the executed scripts #​9452.
  • Fixed a mistake in the description of the --reporter=silent option.

v10.9.0

Compare Source

Minor Changes
  • Added support for installing JSR packages. You can now install JSR packages using the following syntax:

    pnpm add jsr:<pkg_name>
    

    or with a version range:

    pnpm add jsr:<pkg_name>@&#8203;<range>
    

    For example, running:

    pnpm add jsr:@&#8203;foo/bar
    

    will add the following entry to your package.json:

    {
      "dependencies": {
        "@&#8203;foo/bar": "jsr:^0.1.2"
      }
    }

    When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:

    {
      "dependencies": {
        "@&#8203;foo/bar": "npm:@&#8203;jsr/foo__bar@^0.1.2"
      }
    }

    Related issue: #​8941.

    Note: The @jsr scope defaults to https://npm.jsr.io/ if the @jsr:registry setting is not defined.

  • Added a new setting, dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this to pnpm-workspace.yaml:

    neverBuiltDependencies: []

    dangerouslyAllowAllBuilds has the same effect but also allows to be set globally via:

    pnpm config set dangerouslyAllowAllBuilds true
    

    It can also be set when running a command:

    pnpm install --dangerously-allow-all-builds
    
Patch Changes
  • Fix a false negative in verifyDepsBeforeRun when nodeLinker is hoisted and there is a workspace package without dependencies and node_modules directory #​9424.
  • Explicitly drop verifyDepsBeforeRun support for nodeLinker: pnp. Combining verifyDepsBeforeRun and nodeLinker: pnp will now print a warning.

v10.8.1

Compare Source

Patch Changes
  • Removed bright white highlighting, which didn't look good on some light themes #​9389.
  • If there is no pnpm related configuration in package.json, onlyBuiltDependencies will be written to pnpm-workspace.yaml file #​9404.

v10.8.0

Compare Source

Minor Changes
  • Experimental. A new hook is supported for updating configuration settings. The hook can be provided via .pnpmfile.cjs. For example:

    module.exports = {
      hooks: {
        updateConfig: (config) => ({
          ...config,
          nodeLinker: "hoisted",
        }),
      },
    };
  • Now you can use the pnpm add command with the --config flag to install new configurational dependencies #​9377.

Patch Changes
  • Do not hang indefinitely, when there is a glob that starts with !/ in pnpm-workspace.yaml. This fixes a regression introduced by #​9169.
  • pnpm audit --fix should update the overrides in pnpm-workspace.yaml.
  • pnpm link should update overrides in pnpm-workspace.yaml, not in package.json #​9365.

v10.7.1: pnpm 10.7.1

Compare Source

Patch Changes

  • pnpm config set should convert the settings to their correct type before adding them to pnpm-workspace.yaml #​9355.
  • pnpm config get should read auth related settings via npm CLI #​9345.
  • Replace leading ~/ in a path in .npmrc with the home directory #​9217.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz
toplenboren/simple-git-hooks (simple-git-hooks)

v2.13.0

Compare Source

Minor Changes
microsoft/TypeScript (typescript)

v5.8.3

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.31.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

v8.31.0

Compare Source

🩹 Fixes
  • typescript-eslint: gracefully handle invalid flat config objects in config helper (#​11070)
  • typescript-eslint: address bugs in config() around global ignores (#​11065)
❤️ Thank You

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

v8.30.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

v8.30.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

v8.29.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 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.

@chenjiahan chenjiahan merged commit a6e41bb into main May 1, 2025
4 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch May 1, 2025 01:36
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.

2 participants