Skip to content

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

Merged
renovate[bot] merged 1 commit into
mainfrom
renovate/all-minor-patch
Jul 2, 2026
Merged

chore(deps): update all non-major dependencies#108
renovate[bot] merged 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@rsbuild/plugin-react (source) 2.0.12.1.0 age confidence devDependencies minor
@rslib/core (source) ^0.22.1^0.23.1 age confidence devDependencies minor
@rslint/core ^0.6.1^0.6.4 age confidence devDependencies patch
@rspress/core (source) ^2.0.14^2.0.15 age confidence devDependencies patch
@rstest/adapter-rslib (source) ^0.10.4^0.10.6 age confidence devDependencies patch
@rstest/core (source) ^0.10.4^0.10.6 age confidence devDependencies patch
@storybook/addon-themes (source) ^10.4.4^10.4.6 age confidence devDependencies patch
@storybook/react (source) ^10.4.4^10.4.6 age confidence devDependencies patch
antd (source) ^6.4.4^6.5.0 age confidence devDependencies minor
chromatic (source) ^17.4.1^17.8.0 age confidence devDependencies minor
fs-extra 11.3.511.3.6 age confidence devDependencies patch
node 24.16.024.18.0 age confidence uses-with minor
pnpm (source) 11.6.011.9.0 age confidence packageManager minor
pnpm/action-setup v6.0.8v6.0.9 age confidence action patch
prettier (source) ~3.8.4~3.9.4 age confidence devDependencies minor
semver 7.8.47.8.5 age confidence devDependencies patch
storybook (source) ^10.4.4^10.4.6 age confidence devDependencies patch

Release Notes

web-infra-dev/rsbuild (@​rsbuild/plugin-react)

v2.1.0

Compare Source

New features
Bug fixes
Document
web-infra-dev/rslib (@​rslib/core)

v0.23.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.23.0...v0.23.1

v0.23.0

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Other Changes

Full Changelog: web-infra-dev/rslib@v0.22.1...v0.23.0

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

v0.6.4

Compare Source

Highlights

Rslint Node API for In-Memory Linting

Rslint now ships a programmatic Node.js API (@rslint/core) aligned with ESLint v10's interface. Use Rslint#lintFiles / lintText to lint from scripts, dev servers, or editor integrations — results are ESLint-shaped (LintResult[] with messages, errorCount, warningCount, output, etc.). Auto-fix is supported via fix: true plus Rslint.outputFixes. Config resolution (overrideConfig, file discovery, normalization) all stays in JS; the Go --api server receives only the final resolved config and never reads disk.

import { Rslint } from '@​rslint/core';

// Lint files by glob (auto-discovers the nearest config from cwd).
const rslint = new Rslint({ cwd: process.cwd() });
const results = await rslint.lintFiles(['src/**/*.ts']);

Fully in-memory linting is also supported through the new virtualFiles overlay — source, config, and tsconfig.json can all live in memory with zero disk access, which makes the API a natural fit for playgrounds, web workers, and editor integrations:

const rslint = new Rslint({
  cwd: '/', // virtual root: doesn't touch process.cwd() or disk
  overrideConfigFile: true, // use only overrideConfig — skip config discovery
  overrideConfig: [
    {
      files: ['**/*.ts'],
      // The tsconfig + parserOptions.project below are needed ONLY for type-aware rules (like no-for-in-array). Syntax-only rules need neither.
      languageOptions: { parserOptions: { project: ['./tsconfig.json'] } },
      plugins: ['@​typescript-eslint'],
      rules: { '@​typescript-eslint/no-for-in-array': 'error' },
    },
  ],
  virtualFiles: {
    'tsconfig.json': JSON.stringify({
      compilerOptions: { strict: true },
      files: ['./a.ts'],
    }),
  },
});
const [result] = await rslint.lintText(
  'const a = [1];\nfor (const k in a) {}\n',
  { filePath: 'a.ts' },
);

See the new Node.js API guide for details.

What's Changed

New Features 🎉
Other Changes

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

v0.6.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

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

v0.6.2

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Other Changes

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

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

v2.0.15

Compare Source

Highlights

🌙 themeConfig.darkMode supports default and forced values

You can now set the default or forced theme behavior directly via themeConfig.darkMode, instead of relying on window.RSPRESS_THEME. It accepts values like 'dark', 'light', 'auto', 'force-dark', and 'force-light'.

import { defineConfig } from '@​rspress/core';

export default defineConfig({
  themeConfig: {
    darkMode: 'force-dark',
  },
});
🔗 Markdown anchor link validation

Rspress now validates internal heading hash links during builds. Enable markdown.link.checkAnchors to catch broken anchors in same-page, relative, and absolute Markdown/MDX links.

import { defineConfig } from '@​rspress/core';

export default defineConfig({
  markdown: {
    link: {
      checkAnchors: true,
    },
  },
});

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.14...v2.0.15

web-infra-dev/rstest (@​rstest/adapter-rslib)

v0.10.6

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.10.5...v0.10.6

v0.10.5

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.10.4...v0.10.5

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

v10.4.6

Compare Source

v10.4.5

Compare Source

ant-design/ant-design (antd)

v6.5.0

Compare Source

  • 🔥 Add the antd DESIGN.md design-language file and publish it at ant.design/design.md, helping AI design tools understand Ant Design visual language, component archetypes, and theme tokens. #​58011 #​58356 #​58489 @​afc163
  • 📦 Optimize the antd full bundle size: compared with 6.4.5, size-limit reports antd.min.js down from 437.05 KB to 432.44 KB, and antd-with-locales.min.js down from 514.19 KB to 506.84 KB. The main gains come from slimmer DatePicker and TimePicker runtime code in @rc-component/picker, plus Icon/Upload avoiding extra TwoTone runtime in the full bundle. #​58403 #​58497 @​QDyanbing @​afc163
  • Icon
    • 🔥 Add built-in Icon entries for Anthropic, Claude, Gemini, Mistral, DeepSeek, Qwen, Perplexity, HuggingFace, Ollama, Replicate, ElevenLabs, Telegram, Mastodon, Threads and Snapchat. #​58524 @​afc163 New icons in Ant Design 6.5.0
    • 📦 Optimize Icon and Upload default icon imports by upgrading @ant-design/icons to 6.3.1 and switching Upload picture-list default placeholders to Outlined icons, reducing extra TwoTone runtime in the full bundle. #​58497 @​afc163
    • 🐞 Fix Icon styles not working when theme.zeroRuntime is enabled. #​58517 @​afc163
  • Input
  • Select
  • Table
    • 🐞 Fix Table defaultSortOrder and controlled sortOrder being ignored when the column is hidden by responsive at the current breakpoint. #​58008 @​yogeshwaran-c
    • 🐞 Fix Table extra vertical line on the last fixed-right column in bordered mode. #​58516 @​uttam12331
    • ⌨️ Improve Table row selection checkbox accessibility by supporting aria-* attributes from getCheckboxProps. #​58275 @​EmilyyyLiu
    • 💄 Fix Table sticky header top border missing in bordered mode. #​58451 @​BangDori
  • BorderBeam
  • Badge
  • Layout
  • Pagination
  • Upload
  • Alert
    • 🐞 Fix Alert icon vertical alignment when description content is provided. #​57915 @​MMMIXER
    • 🐞 Fix Alert icon and close button not aligning with the first title line when only a title is provided. #​57878 @​QDyanbing
  • 📖 Improve AI agent support for the ant.design website and its isitagentready.com/ant.design result. #​58510 #​58490 #​57725 @​afc163 @​ug-one
  • 📖 Update Ant Design CLI docs with antd setup, Node.js >=20.0.0 requirement, MCP version auto-detection, and environment variable notes, and sync the For Agents and MCP Server docs in both languages. #​58460 @​afc163
  • 🐞 Fix antd root semantic style priority across components to ensure component style overrides global styles.root and style configuration. #​58474 @​QDyanbing
  • 💄 Improve Component Token small control height in compact theme to avoid cramped line boxes. #​58411 @​nightt5879
  • 🐞 Fix Anchor hash parsing performance issue with specially crafted hash values. #​58472 @​afc163
  • 🆕 Add Collapse headerPaddingSM, headerPaddingLG, contentPaddingSM, and contentPaddingLG tokens to configure header and content padding for small and large sizes separately. #​58436 @​biubiukam
  • 🆕 Add ConfigProvider form labelWrap configuration support. #​58035 @​EmilyyyLiu
  • 🐞 Fix Descriptions labelStyle, contentStyle, styles.label, and styles.content not applying to the matching cell in bordered mode. #​58241 @​gaurav0107
  • 🔥 Add DatePicker and TimePicker onClear callback support. #​58403 @​QDyanbing
  • 🆕 Add Dropdown left and right placement support. #​58437 @​linyana
  • 🐞 Fix disabled FloatButton.Group still opening the hover menu. #​58513 @​QDyanbing
  • 💄 Fix Form vertical layout not applying the labelHeight token. #​58433 @​BangDori
  • 🔥 Add Menu itemData to onSelect, onClick and onDeselect callback parameters. #​58197 @​EmilyyyLiu
  • 🔥 Add Modal scrollLock prop to control body scroll locking. #​58256 @​EmilyyyLiu
  • 🐞 Fix Popconfirm button misalignment during async confirm and restore the default Button icon-only and Modal footer layout behavior. #​58429 @​ffgenius
  • 🐞 Fix Result not rendering extra when it is the number 0. #​58504 @​QDyanbing
  • 🆕 Add Slider range mode disabled array support to disable individual handles

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

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

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 62980b0 to 9ca62ff Compare July 1, 2026 01:28
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 9ca62ff to 048e623 Compare July 1, 2026 23:03
@renovate renovate Bot merged commit a142dc7 into main Jul 2, 2026
7 checks passed
@renovate renovate Bot deleted the renovate/all-minor-patch branch July 2, 2026 01:38
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.

0 participants