Skip to content

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

Merged
Timeless0911 merged 1 commit intomainfrom
renovate/all-non-major
Jul 16, 2025
Merged

chore(deps): update all non-major dependencies#1117
Timeless0911 merged 1 commit intomainfrom
renovate/all-non-major

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jul 16, 2025

This PR contains the following updates:

Package Change Age Confidence
@arco-design/web-react (source) ^2.66.1 -> ^2.66.2 age confidence
@module-federation/enhanced (source) ^0.16.0 -> ^0.17.0 age confidence
@module-federation/rsbuild-plugin (source) ^0.16.0 -> ^0.17.0 age confidence
@module-federation/storybook-addon (source) ^4.0.21 -> ^4.0.22 age confidence
@rsbuild/core (source) ~1.4.6 -> ~1.4.7 age confidence
@rsbuild/plugin-node-polyfill ^1.3.0 -> ^1.3.1 age confidence
@rspress/plugin-algolia (source) 2.0.0-beta.20 -> 2.0.0-beta.21 age confidence
@rspress/plugin-llms (source) 2.0.0-beta.20 -> 2.0.0-beta.21 age confidence
@rspress/plugin-rss (source) 2.0.0-beta.20 -> 2.0.0-beta.21 age confidence
@rstest/core (source) 0.0.7 -> 0.0.8 age confidence
@shikijs/transformers (source) ^3.7.0 -> ^3.8.0 age confidence
@storybook/addon-docs (source) ^9.0.16 -> ^9.0.17 age confidence
@storybook/addon-links (source) ^9.0.16 -> ^9.0.17 age confidence
@storybook/addon-onboarding (source) ^9.0.16 -> ^9.0.17 age confidence
@storybook/react (source) ^9.0.16 -> ^9.0.17 age confidence
@storybook/vue3 (source) ^9.0.16 -> ^9.0.17 age confidence
@types/node (source) ^22.16.3 -> ^22.16.4 age confidence
create-rstack 1.5.4 -> 1.5.5 age confidence
rspress (source) 2.0.0-beta.20 -> 2.0.0-beta.21 age confidence
storybook (source) ^9.0.16 -> ^9.0.17 age confidence
zx (source) ^8.7.0 -> ^8.7.1 age confidence

Release Notes

module-federation/core (@​module-federation/enhanced)

v0.17.0

Compare Source

Patch Changes
module-federation/core (@​module-federation/rsbuild-plugin)

v0.17.0

Compare Source

Patch Changes
module-federation/core (@​module-federation/storybook-addon)

v4.0.22

Patch Changes
web-infra-dev/rsbuild (@​rsbuild/core)

v1.4.7

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.4.6...v1.4.7

rspack-contrib/rsbuild-plugin-node-polyfill (@​rsbuild/plugin-node-polyfill)

v1.3.1

Compare Source

What's Changed

Full Changelog: rstackjs/rsbuild-plugin-node-polyfill@v1.3.0...v1.3.1

web-infra-dev/rspress (@​rspress/plugin-algolia)

v2.0.0-beta.21

Compare Source

Breaking Changes 🚨
🔥Remove builderPlugins, migrate to builderConfig.plugins

related PR: #​2371

We can already configure Rsbuild in builderConfig, there is another configuration that is confusing.

https://github.com/web-infra-dev/rspress/discussions/1891#discussioncomment-13729235

Migration step:

export default defineConfig({
-  builderPlugins: [
-      pluginFoo()
-  ],
+  builderConfig: {
+    plugins: [
+      pluginFoo()
+    ],
+  },
});
Expose type RspressPlugin from "rspress/core" packge

Related PR: #​2360

https://github.com/web-infra-dev/rspress/discussions/1891#discussioncomment-13762129

We do not want users to use our private package like @rspress/shared, only "rspress": "2.0.0" package is all your needed

before

import type { RspressPlugin } from '@​rspress/shared';
// package.json
{
  "devDependencies": {
       "rspress": "1.44.0",
       "@​rspress/shared": "1.44.0"
  }
}

after

import type { RspressPlugin } from 'rspress/core';
// package.json
{
  "devDependencies": {
       "rspress": "2.0.0",
  }
}
Details

For compatibility, @rspress/shared will still export RspressPlugin type, but using rspress/core and setting "rspress" as peerDependencies will make it less likely for your plugin to encounter type errors.

For example:

{
  "peerDependencies": {
     "rspress": "^2.0.0"
  }
}
FIle code block syntax support in core ```tsx file="./demo.tsx"

related PR: https://github.com/web-infra-dev/rspress/pull/2361

Users can import an external demo file as a code block.

As we support this feature in the core. This also means that the syntax external code blocks are used in plugin-preview and plugin-playground will change.

before

only using together with @rspress/plugin-preview and @rspress/plugin-playground

<code src="./example.tsx" />

after

This syntax is supported in the core package.

```tsx file="./example.tsx"
```
// example.tsx
export default () => <div>I'm a example in another file</div>
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.20...v2.0.0-beta.21

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

v0.0.8

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rstest@v0.0.7...v0.0.8

shikijs/shiki (@​shikijs/transformers)

v3.8.0

Compare Source

   🚀 Features
    View changes on GitHub
storybookjs/storybook (@​storybook/addon-docs)

v9.0.17

Compare Source

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

v9.0.17

Compare Source

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

v9.0.17

Compare Source

storybookjs/storybook (@​storybook/react)

v9.0.17

Compare Source

storybookjs/storybook (@​storybook/vue3)

v9.0.17

Compare Source

rspack-contrib/create-rstack (create-rstack)

v1.5.5

Compare Source

What's Changed

Full Changelog: rstackjs/create-rstack@v1.5.4...v1.5.5

storybookjs/storybook (storybook)

v9.0.17

Compare Source

google/zx (zx)

v8.7.1: — Pipe Whisperer

Compare Source

Continues v8.7.0: handles new ps() corner case and improves $.kill mechanics on Windows #​1266 #​1267 #​1269 webpod/ps#14


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.

@netlify
Copy link
Copy Markdown

netlify bot commented Jul 16, 2025

Deploy Preview for rslib ready!

Name Link
🔨 Latest commit cc3b1a1
🔍 Latest deploy log https://app.netlify.com/projects/rslib/deploys/687752c8b6bfa800082c2d4c
😎 Deploy Preview https://deploy-preview-1117--rslib.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@Timeless0911 Timeless0911 merged commit 4714847 into main Jul 16, 2025
15 checks passed
@Timeless0911 Timeless0911 deleted the renovate/all-non-major branch July 16, 2025 07:30
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