Skip to content

chore(deps): update all non-major dependencies#56

Merged
chenjiahan merged 1 commit intomainfrom
renovate/all-minor-patch
Dec 1, 2025
Merged

chore(deps): update all non-major dependencies#56
chenjiahan merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 1, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@rslib/core (source) ^0.17.2 -> ^0.18.2 age confidence devDependencies minor
@storybook/addon-themes (source) ^10.0.7 -> ^10.1.2 age confidence devDependencies minor
@storybook/react (source) ^10.0.7 -> ^10.1.2 age confidence devDependencies minor
@types/react (source) ^18.3.26 -> ^18.3.27 age confidence devDependencies patch
antd (source) ^5.28.1 -> ^5.29.1 age confidence devDependencies minor
execa 9.6.0 -> 9.6.1 age confidence devDependencies patch
nano-staged ^0.8.0 -> ^0.9.0 age confidence devDependencies minor
node 24.11.0 -> 24.11.1 age confidence uses-with patch
pnpm (source) 10.22.0 -> 10.24.0 age confidence packageManager minor
prettier (source) ~3.6.2 -> ~3.7.3 age confidence devDependencies minor
rimraf ~6.1.0 -> ~6.1.2 age confidence devDependencies patch
storybook (source) ^10.0.7 -> ^10.1.2 age confidence devDependencies minor
storybook-addon-rslib (source) ^2.1.5 -> ^2.1.6 age confidence devDependencies patch
storybook-react-rsbuild (source) ^2.1.5 -> ^2.1.6 age confidence devDependencies patch

Release Notes

web-infra-dev/rslib (@​rslib/core)

v0.18.2

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.1...v0.18.2

v0.18.1

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.0...v0.18.1

v0.18.0

Compare Source

Highlights 💡
Enable persistent build cache by default

Rslib enables Rspack's persistent build cache by default, allowing it to reuse the cached results instead of rebuilding from scratch, which can significantly reduce build time for large projects.

// rslib.config.ts
export default {
  performance: {
    buildCache: true,
  },
};

More details:

What's Changed
New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.17.2...v0.18.0

storybookjs/storybook (@​storybook/addon-themes)

v10.1.2

Compare Source

  • Checklist: Fix how state changes are reported and drop some completion restrictions - #​33217, thanks @​ghengeveld!

v10.1.1

Compare Source

v10.1.0

Compare Source

Easier to setup, more accessible to use

Storybook 10.1 focuses on two key improvements: installation and accessibility:

  • ♿ UI overhaul to fix hundreds of a11y issues
  • 🧑‍💻 CLI overhaul for faster, more reliable install
  • ✅ Checklist-based onboarding guide for new users

The release also contains compatibility fixes for:

  • 🅰️ Angular 21 support
  • 🦀 RSbuild install support in CLI
  • ⚡️ Preact support for Vitest addon

Finally, it contains two highly-requested experimental features:

  • 📋 Component manifest for Storybook MCP
  • ⚛️ Improved JSX code snippets for React
List of all updates

v10.0.8

Compare Source

ant-design/ant-design (antd)

v5.29.1

Compare Source


v5.29.0

Compare Source

  • 🆕 InputNumber component deprecates addonAfter and addonBefore props, use Space.Compact instead. #​55505 @​EmilyyyLiu
  • ⌨️ Improve Drawer accessibility by adding aria-labelledby when a title is present. #​55697 @​rxy001
  • 🌐 Fixed spacing in Korean localization for “복사됨” message. #​55672 @​rapsealk

  • 🆕 InputNumber 组件废弃 addonAfteraddonBefore 属性,使用 Space.Compact 替换。 #​55505 @​EmilyyyLiu
  • ⌨️ 优化 Drawer 组件的可访问性,存在标题时的属性 aria-labelledby#​55697 @​rxy001
  • 🌐 修复韩语本地化中“복사됨”文本的空格规则问题。#​55672 @​rapsealk
sindresorhus/execa (execa)

v9.6.1

Compare Source


actions/node-versions (node)

v24.11.1: 24.11.1

Compare Source

Node.js 24.11.1

pnpm/pnpm (pnpm)

v10.24.0

Compare Source

v10.23.0: pnpm 10.23

Compare Source

Minor Changes

  • Added --lockfile-only option to pnpm list #​10020.

Patch Changes

  • pnpm self-update should download pnpm from the configured npm registry #​10205.
  • pnpm self-update should always install the non-executable pnpm package (pnpm in the registry) and never the @pnpm/exe package, when installing v11 or newer. We currently cannot ship @pnpm/exe as pkg doesn't work with ESM #​10190.
  • Node.js runtime is not added to "dependencies" on pnpm add, if there's a engines.runtime setting declared in package.json #​10209.
  • The installation should fail if an optional dependency cannot be installed due to a trust policy check failure #​10208.
  • pnpm list and pnpm why now display npm: protocol for aliased packages (e.g., foo npm:is-odd@3.0.1) #​8660.
  • Don't add an extra slash to the Node.js mirror URL #​10204.
  • pnpm store prune should not fail if the store contains Node.js packages #​10131.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite
prettier/prettier (prettier)

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

isaacs/rimraf (rimraf)

v6.1.2

Compare Source

v6.1.1

Compare Source

rspack-contrib/storybook-rsbuild (storybook-addon-rslib)

v2.1.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

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 ecabded into main Dec 1, 2025
5 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch December 1, 2025 04:51
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