Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 15, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@lingui/swc-plugin ^5.6.1 -> ^5.9.0 age confidence
@rsbuild/core (source) ~1.6.13 -> ~1.6.14 age confidence
@rsbuild/core (source) ^1.6.13 -> ^1.6.14 age confidence
@rsbuild/plugin-vue (source) ^1.2.0 -> ^1.2.1 age confidence
@rsdoctor/rspack-plugin (source) ^1.3.12 -> ^1.3.15 age confidence
@rslib/core (source) ^0.18.3 -> ^0.18.4 age confidence
@rspack/cli (source) 1.6.6 -> 1.6.7 age confidence
@rspack/core (source) 1.6.6 -> 1.6.7 age confidence
@rspress/core (source) ^2.0.0-rc.1 -> ^2.0.0-rc.2 age confidence
@rspress/plugin-api-docgen (source) ^2.0.0-rc.1 -> ^2.0.0-rc.2 age confidence
@rspress/plugin-preview (source) ^2.0.0-rc.1 -> ^2.0.0-rc.2 age confidence
@rstest/core (source) ^0.7.0 -> ^0.7.2 age confidence
@rstest/core (source) 0.7.0 -> 0.7.2 age confidence
@storybook/addon-docs (source) ^10.1.4 -> ^10.1.8 age confidence
@storybook/addon-onboarding (source) ^10.1.4 -> ^10.1.8 age confidence
@storybook/react (source) ^10.1.4 -> ^10.1.8 age confidence
@storybook/vue3 (source) ^10.1.4 -> ^10.1.8 age confidence
@stylexjs/stylex ^0.17.2 -> ^0.17.3 age confidence
@swc/core (source) ^1.15.3 -> ^1.15.4 age confidence
@types/node (source) ^24.10.1 -> ^24.10.4 age confidence
@typescript-eslint/eslint-plugin (source) ^8.48.1 -> ^8.49.0 age confidence
@typescript-eslint/parser (source) ^8.48.1 -> ^8.49.0 age confidence
autoprefixer 10.4.22 -> 10.4.23 age confidence
eslint (source) ^9.39.1 -> ^9.39.2 age confidence
jsdom ^27.2.0 -> ^27.3.0 age confidence
less (source) 4.4.2 -> 4.5.1 age confidence
lucide-react (source) ^0.556.0 -> ^0.561.0 age confidence
next-rspack (source) 16.0.7 -> 16.0.10 age confidence
pnpm (source) 10.24.0 -> 10.25.0 age confidence
react (source) ^19.2.1 -> ^19.2.3 age confidence
react-dom (source) ^19.2.1 -> ^19.2.3 age confidence
sass 1.94.2 -> 1.96.0 age confidence
storybook (source) ^10.1.4 -> ^10.1.8 age confidence
svelte (source) ^5.45.6 -> ^5.46.0 age confidence
tailwindcss (source) 3.4.18 -> 3.4.19 age confidence
tailwindcss (source) ^4.1.17 -> ^4.1.18 age confidence
tailwindcss (source) ^3.4.18 -> ^3.4.19 age confidence
terser-webpack-plugin 5.3.15 -> 5.3.16 age confidence
unplugin-stylex ^0.5.5 -> ^0.6.0 age confidence
vant (source) ^4.9.21 -> ^4.9.22 age confidence
vue-tsc (source) ^3.1.7 -> ^3.1.8 age confidence

Release Notes

lingui/swc-plugin (@​lingui/swc-plugin)

v5.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: lingui/swc-plugin@5.8.0...5.9.0

v5.8.0

Compare Source

What's Changed

Full Changelog: lingui/swc-plugin@5.7.0...5.8.0

v5.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: lingui/swc-plugin@5.6.1...5.7.0

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

v1.6.14

Compare Source

What's Changed

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

Full Changelog: web-infra-dev/rsbuild@v1.6.13...v1.6.14

web-infra-dev/rsdoctor (@​rsdoctor/rspack-plugin)

v1.3.14

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rsdoctor@v1.3.13...v1.3.14

v1.3.13

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rsdoctor@v1.3.12...v1.3.13

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

v0.18.4

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.3...v0.18.4

web-infra-dev/rspack (@​rspack/cli)

v1.6.7

Compare Source

Highlights 💡
🎉 Support for import.meta.filename, import.meta.dirname, and import.meta.resolve

Rspack now supports the import.meta.filename, import.meta.dirname, and import.meta.resolve meta properties in ESM modules.
These properties provide a standardized way to access file and directory paths in ES modules, similar to the CommonJS __filename and __dirname variables:

// Get the absolute path of the current module file
console.log(import.meta.filename);
// e.g., "/path/to/project/src/index.js"

// Get the directory path of the current module
console.log(import.meta.dirname);
// e.g., "/path/to/project/src"

// Resolve a module specifier to an absolute URL
const resolvedPath = import.meta.resolve('./utils.js');

Thanks to @​magic-akari for this contribution!

What's Changed
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Other Changes

Full Changelog: web-infra-dev/rspack@v1.6.6...v1.6.7

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

v2.0.0-rc.2

Compare Source

Breaking Changes🚨

theme folder should use @rspress/core/theme-original

related PR: #​2860

In Rspress V1 document, @theme is the alias for rspress/theme, but @theme is an alias which points to theme/index.tsx and falls back to rspress/theme.

rspress/theme or @rspress/core/theme points to Rspress's theme-default, they are actually different things.

We standardize this behavior, which is the same as docusaurus.

  1. In docs directory, @theme or @rspress/core/theme should be used, which points to theme/index.tsx and falls back to theme-default

  2. In theme directory , @theme-original or @rspress/core/theme-original should be used, which always points to Rspress's theme-default, used for users to customize themes, which is very useful for users who publish npm theme packages.

 // theme/index.tsx
- import { Layout as BasicLayout } from 'rspress/theme'; // or @​rspress/core/theme
+ import { Layout } from '@​rspress/core/theme-original';

 const Layout = () => {
    return <BasicLayout {...} />
 }
 
 export { Layout }
- export * from 'rspress/theme' // or @&#8203;rspress/core/theme
+ export * from '@&#8203;rspress/core/theme-original';
Merge @theme-assets to @theme

Before

We have a separate entry for exporting @​theme-assets

import { SvgWrapper } from '@&#8203;theme'
import SearchSvg from '@&#8203;theme-assets/Search';

<SvgWrapper icon={SearchSvg} />

After

@theme-assets has been removed. Icons are exported from @theme and prefixed with Icon, for example: IconSearch

import { SvgWrapper, IconSearch } from '@&#8203;theme';

<SvgWrapper icon={IconSearch} />
                   ^? type Icon = React.FC<React.SVGProps<SVGSVGElement>> | string;
Refactor @rspress/plugin-preview and simplify usage

related PR: #​2806

Before: Required declarations in both config file and MDX file.

pluginPreview({
  previewMode: 'iframe',
  iframeOptions: { position: 'fixed' },
});
```tsx preview

```

After: Only declare in the MDX file.

```tsx preview="iframe-fixed"

```

What's Changed

New Features 🎉
Performance 🚀
  • perf(theme/useWindowSize): optimize useWindowSize with debounce to reduce resize handler calls by @​Copilot in #​2849
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.0-rc.1...v2.0.0-rc.2

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

v0.7.2

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes

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: 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 enabled auto-merge (squash) December 15, 2025 00:59
@renovate renovate bot merged commit 57c9b14 into main Dec 15, 2025
4 checks passed
@renovate renovate bot deleted the renovate/all-non-major branch December 15, 2025 01:01
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