Skip to content

fix(deps): update all non-major dependencies#39

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jun 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rsbuild/plugin-react (source) 1.3.0 -> 1.3.1 age adoption passing confidence
@rslib/core (source) ^0.6.8 -> ^0.9.1 age adoption passing confidence
@storybook/addon-essentials (source) ^8.6.12 -> ^8.6.14 age adoption passing confidence
@storybook/addon-themes (source) ^8.6.12 -> ^8.6.14 age adoption passing confidence
@storybook/react (source) ^8.6.12 -> ^8.6.14 age adoption passing confidence
@storybook/test (source) ^8.6.12 -> ^8.6.14 age adoption passing confidence
@types/node (source) ~22.15.3 -> ~22.15.29 age adoption passing confidence
@types/react (source) ^18.3.20 -> ^18.3.23 age adoption passing confidence
antd (source) ^5.24.9 -> ^5.25.4 age adoption passing confidence
execa 9.5.2 -> 9.6.0 age adoption passing confidence
framer-motion ^12.9.2 -> ^12.15.0 age adoption passing confidence
lottie-web 5.12.2 -> 5.13.0 age adoption passing confidence
pnpm (source) 10.10.0 -> 10.11.0 age adoption passing confidence
semver 7.7.1 -> 7.7.2 age adoption passing confidence
storybook (source) ^8.6.12 -> ^8.6.14 age adoption passing confidence

Release Notes

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

v1.3.1

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.3.0...v1.3.1

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

v0.9.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.9.0...v0.9.1

v0.9.0

Compare Source

Highlights ✨

This release brings exciting new features to Rslib:

Vue support

Rslib now provides support for building Vue component libraries by integrating unplugin-vue. Checkout Solution - Vue to learn how to build a Vue component library using Rslib. Additionally, storybook-vue3-rsbuild is provided for Vue3 Storybook support.

Vue support

What's Changed

New Features 🎉
Performance 🚀
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.8.0...v0.9.0

v0.8.0

Compare Source

Highlights ✨

IIFE Format Support

Set format to 'iife' to generate IIFE JavaScript output which stands for "immediately-invoked function expression" and is intended to be run in the browser, see IIFE for more details.

source code

// parent-sdk is marked as externals
// externals: ['parent-sdk']
import { version } from 'parent-sdk';
alert(version);

output

(
  () => {
    'use strict';
    const external_parent_sdk_namespaceObject = globalThis['parent-sdk'];
    alert(external_parent_sdk_namespaceObject.version);
  },
)();

What's Changed

New Features 🎉
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.7.1...v0.8.0

v0.7.1

Compare Source

Highlights ✨

In 0.7.0, due to breaking changes in @ast-grep/napi, Ubuntu 20 is not supported if user enable dts generation.

This version revert this.

What's Changed

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.7.0...v0.7.1

v0.7.0

Compare Source

Highlights ✨

banner
First blog for Rslib 📚

Check out our first blog for Rslib: Rslib: Build library with Rspack

We are excited to introduce Rslib — a library development tool based on Rspack. Developed by ByteDance Web Infra Team, Rslib helps developers create JavaScript libraries and UI component libraries in a simple and intuitive way while enjoying the ultimate development experience brought by Rspack and Rsbuild.

Breaking changes 🚨

Reverted in v0.7.1.

Due to breaking changes in @ast-grep/napi, Ubuntu 20 is not supported now if user enable dts generation.

Update to Ubuntu 22 or higher if possible, reference: ast-grep/ast-grep@96f5500.

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.6.9...v0.7.0

v0.6.9

Compare Source

What's Changed

New Features 🎉
Document 📖
Other Changes

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

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

v8.6.14

Compare Source

v8.6.13

Compare Source

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

v8.6.14

Compare Source

v8.6.13

Compare Source

ant-design/ant-design (antd)

v5.25.4

Compare Source

v5.25.3

Compare Source


v5.25.2

Compare Source


v5.25.1

Compare Source


v5.25.0

Compare Source


sindresorhus/execa (execa)

v9.6.0

Compare Source

v9.5.3

Compare Source


motiondivision/motion (framer-motion)

v12.15.0

Compare Source

Added
  • Support for pathLength/pathSpacing/pathOffset for svgEffect.
  • Auto kebab-casing of data and aria attributes in attrEffect.
  • attrEffect applies attributes via JS property where possible.
  • Auto transform-box: fill-box for SVGs with transform in styleEffect.

v12.14.0

Compare Source

Added
  • Support for originX/Y/Z in styleEffect.
Fixed
  • Added markers for pure function calls with effects.

v12.13.0

Compare Source

Added
  • svgEffect, propEffect and attrEffect.
Fixed
  • Fixed a jump in layout animations in select circumstances.

v12.12.2

Compare Source

Fixed
  • Ensure scroll updates are only triggered after a scroll read.

v12.12.1

Compare Source

Fixed
  • Checks for instanceof HTMLElement made compatible with dynamically generated iframes.

v12.12.0

Compare Source

Added
  • springValue
Fixed
  • Fixed various typos in the type definitions along with a stale documentation link.

v12.11.4

Compare Source

Fixed
  • Only read transform from the DOM for initial independent transforms when there's no active projection.

v12.11.3

Compare Source

Changed
  • useWillChange now only adds transform to will-change to prevent issues with prematurely flattened preserve-3d.

v12.11.2

Compare Source

Fixed
  • Removed __VERSION__ placeholder from motion value.
  • Fixed types for Reorder component.

v12.11.1

Compare Source

Fixed
  • Default scroll tracking to document.scrollingElement.

v12.11.0

Compare Source

Added
  • Added value.isEffectActive for internal use.

v12.10.6

[Compare Source](https://redirect.github.com/motiondivision/motion/compare/v12.10.5.


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 5cfae76 into main Jun 1, 2025
5 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch June 1, 2025 02:20
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