Skip to content

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

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies (minor)#591
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jun 8, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@base-ui/react (source) 1.3.01.5.0 age adoption passing confidence
@haklex/rich-editor (source) 0.0.1050.20.0 age adoption passing confidence
@haklex/rich-kit-shiro (source) 0.0.1050.5.0 age adoption passing confidence
@lexical/code (source) ^0.41.0^0.45.0 age adoption passing confidence
@lexical/link (source) ^0.41.0^0.45.0 age adoption passing confidence
@lexical/list (source) ^0.41.0^0.45.0 age adoption passing confidence
@lexical/markdown (source) ^0.41.0^0.45.0 age adoption passing confidence
@lexical/react (source) ^0.41.0^0.45.0 age adoption passing confidence
@lexical/rich-text (source) ^0.41.0^0.45.0 age adoption passing confidence
@​mx-space/api-client 2.3.02.4.2 age adoption passing confidence
@​mx-space/webhook 0.5.00.8.3 age adoption passing confidence
@next/bundle-analyzer (source) 16.1.516.2.7 age adoption passing confidence
@radix-ui/react-select (source) 2.2.62.3.0 age adoption passing confidence
@radix-ui/react-slider (source) 1.3.61.4.0 age adoption passing confidence
@radix-ui/react-switch (source) 1.2.61.3.0 age adoption passing confidence
@shikijs/transformers (source) 3.21.03.23.0 age adoption passing confidence
@tailwindcss/postcss (source) ^4.2.1^4.3.0 age adoption passing confidence
@tanstack/query-async-storage-persister (source) 5.90.225.101.0 age adoption passing confidence
@tanstack/react-query (source) 5.90.205.101.0 age adoption passing confidence
@tanstack/react-query-devtools (source) 5.91.25.101.0 age adoption passing confidence
@tanstack/react-query-persist-client (source) 5.90.225.101.0 age adoption passing confidence
@types/node (source) 25.0.1025.9.2 age adoption passing confidence
@vercel/functions (source) 3.3.63.6.2 age adoption passing confidence
autoprefixer 10.4.2310.5.0 age adoption passing confidence
code-inspector-plugin (source) 1.4.11.5.1 age adoption passing confidence
date-fns ^4.1.0^4.4.0 age adoption passing confidence
dotenv 17.2.317.4.2 age adoption passing confidence
es-toolkit (source) 1.44.01.47.0 age adoption passing confidence
foxact (source) 0.2.520.3.4 age adoption passing confidence
fuse.js (source) 7.1.07.4.2 age adoption passing confidence
jotai 2.16.22.20.0 age adoption passing confidence
js-yaml 4.1.14.2.0 age adoption passing confidence
katex (source) 0.16.280.17.0 age adoption passing confidence
lexical (source) ^0.41.0^0.45.0 age adoption passing confidence
lint-staged 16.2.716.4.0 age adoption passing confidence
motion 12.29.212.40.0 age adoption passing confidence
pnpm (source) 10.27.010.34.1 age adoption passing confidence
postcss-js 5.0.35.1.0 age adoption passing confidence
shiki (source) 3.21.03.23.0 age adoption passing confidence
tailwind-merge 3.4.03.6.0 age adoption passing confidence
tailwindcss (source) 4.1.184.3.0 age adoption passing confidence
taze 19.9.219.14.1 age adoption passing confidence
tsdown (source) 0.14.00.14.2 age adoption passing confidence

Release Notes

mui/base-ui (@​base-ui/react)

v1.5.0

Compare Source

May 19, 2026

General changes
Alert Dialog
Autocomplete
Checkbox
Combobox
Dialog
Drawer
Field
Form
Menu
Navigation Menu
Number Field
OTP Field
Popover
Preview Card
Scroll Area
Select
Tabs
Toast
Tooltip

All contributors of this release in alphabetical order: @​aeterno-caspian, @​arturbien, @​atomiks, @​flaviendelangle, @​Janpot, @​lunaxislu, @​lyzno1, @​mattrothenberg, @​michaldudak, @​mj12albert, @​nami8824, @​sai6855, @​stefee, @​twillhorn

v1.4.1

Compare Source

Apr 20, 2026

General Changes
Navigation Menu

All contributors of this release in alphabetical order : @​atomiks, @​LukasTy

v1.4.0

Compare Source

Apr 13, 2026

General Changes
Alert Dialog
Autocomplete
Avatar
Checkbox
Collapsible
Combobox
Dialog
Drawer
Field
Menu
Navigation Menu
Number Field
OTP Field
  • Add preview OTPField component for one-time password and verification code entry (#​4365) by @​atomiks
Popover
Preview Card
Select
Slider
Switch
Tabs
Toast
Toggle Group

All contributors of this release in alphabetical order : @​arturbien, @​atomiks, @​CiscoFran10, @​devxoul, @​flaviendelangle, @​kyrregjerstad, @​LukasTy, @​lunaxislu, @​mattrothenberg, @​mdm317, @​michaldudak, @​mj12albert, @​Profesor08, @​ryanrhee, @​sai6855, @​tsbehlman

Innei/haklex (@​haklex/rich-editor)

v0.20.0

Compare Source

Summary

Maintenance release that brings every @haklex/* package onto the same Lexical 0.45 contract and resolves a pair of long-standing peerDependency violations that risked double-instance bugs downstream.

The previous v0.19.0 cycle only republished a subset of the workspace (rich-editor, rich-headless, rich-editor-ui, rich-style-token). v0.20.0 re-publishes the entire workspace so downstream installs see a consistent dependency graph.

Breaking Changes

  • lexical / @lexical/* floor bumped to ^0.45.0 in both dependencies and peerDependencies across every published package. Downstream consumers must upgrade their own lexical pin to ^0.45.0 to satisfy peers without warnings.

    Migration:

    // your package.json
    - "lexical": "^0.44.0",
    + "lexical": "^0.45.0",
    - "@​lexical/react": "^0.44.0",
    + "@​lexical/react": "^0.45.0",
    // …same for any other @​lexical/* pins
  • shiki moved from dependenciespeerDependencies in @haklex/rich-renderer-codeblock and @haklex/rich-ext-code-snippet. Apps that did not already declare shiki directly must add it:

    "shiki": "^4.1.0"
  • @base-ui/react moved from dependenciespeerDependencies in @haklex/rich-renderer-video. Apps consuming the video renderer must add (or already have) @base-ui/react:

    "@​base-ui/react": "^1.5.0"

    Rationale for the three moves: each library installs its own React Context. Letting it land as a transitive dependency lets the host project end up with two copies of that Context — the same class of bug as 88bb7a0 (lucide-react in rich-agent-chat).

Features

None — release is dependency hygiene only.

Bug Fixes

None code-level — see v0.19.0 release notes for the last batch of fixes.

Other

  • All 38 @haklex/* packages republished at 0.20.0 so internal workspace ^x.y.z cross-deps resolve in lockstep on the registry.

Bump rationale

Signal Bump
lexical / @lexical/* peerDep floor raised (^0.44.0^0.45.0) minor (additive peer-range tightening within Lexical 0.x semver — non-breaking under ^ for consumers already on 0.45)
shiki, @base-ui/react moved deps→peers in 3 packages minor (additive peer; consumers that already had the lib see no change)
All package versions advanced for workspace re-publish minor (no src/** changes since v0.19.0)

Highest-wins across the workspace: minor0.19.00.20.0.

v0.19.0

Compare Source

Summary

Fixes a long-standing crash when navigating out of a RichQuoteNode with the arrow keys, and reshapes the quote attribution editor so its input no longer interferes with Lexical's contenteditable. As part of the audit, @base-ui/react is promoted to a peerDependency in @haklex/rich-editor-ui to prevent duplicate React Context instances downstream.

Breaking Changes

None — @base-ui/react was already declared as a peer by @haklex/rich-editor, so consumers of @haklex/rich-editor-ui typically have it installed transitively. Standalone consumers of @haklex/rich-editor-ui must now install @base-ui/react themselves.

Bug Fixes

  • rich-editor-uiQuoteAttributionPlugin no longer portals into the Lexical-managed <blockquote>. Arrow-up out of a quote previously crashed React with NotFoundError: Failed to execute 'removeChild' on 'Node' because Lexical's reconciler mutated the blockquote children outside React's knowledge. The plugin now renders one always-on input per RichQuoteNode through a single portal into document.body, tracking each quote's bounding rect via ResizeObserver.
  • rich-editor — Quotes hosting an active attribution panel reserve extra padding-bottom (spacing.sm + 24px) so the floating input never overlaps the final line of quote text.

Other

  • @haklex/rich-editor-ui@base-ui/react moved from dependencies to peerDependencies (>=1.5.0) per the always-peer audit rule (rationale: 88bb7a0 lucide-react incident).

Bump rationale

Package Bump Rationale
rich-editor minor shared version — paired with rich-editor-ui
rich-editor-ui minor new `peerDependencies.@​base-ui/react

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • "after 9pm,before 9am"
  • 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.

@renovate renovate Bot added the renovate label Jun 8, 2025
@vercel

vercel Bot commented Jun 8, 2025

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
shiro Error Error Jun 9, 2026 3:15pm

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 4430c8c to a7a3091 Compare June 10, 2025 14:43
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from a7a3091 to 3ea8a68 Compare June 11, 2025 19:52
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 3ea8a68 to c1e9cfc Compare June 12, 2025 16:10
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c1e9cfc to 14d9adb Compare June 13, 2025 15:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 14d9adb to 8d7e342 Compare June 13, 2025 19:10
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 8d7e342 to d50f8f9 Compare June 14, 2025 13:12
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from d50f8f9 to 2bbbd84 Compare June 15, 2025 14:35
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 2bbbd84 to a46c308 Compare June 16, 2025 16:44
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from a46c308 to f457bd7 Compare June 16, 2025 23:10
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from f457bd7 to af81819 Compare June 17, 2025 17:00
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from af81819 to 1950352 Compare June 18, 2025 20:15
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 1950352 to b9b7e5c Compare June 19, 2025 15:54
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from b9b7e5c to aa6536d Compare June 20, 2025 15:13
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from aa6536d to d14e0e7 Compare June 20, 2025 21:01
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 3c59a96 to a09b11c Compare June 25, 2025 14:48
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from a09b11c to 59ded33 Compare June 25, 2025 19:56
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 59ded33 to d76719b Compare June 26, 2025 19:39
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from d76719b to ad8a622 Compare June 26, 2025 22:32
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from ad8a622 to 627db41 Compare June 27, 2025 17:16
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 627db41 to fe11f17 Compare June 27, 2025 21:58
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from fe11f17 to 0b65203 Compare June 28, 2025 17:49
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 0b65203 to f2e07e8 Compare June 30, 2025 15:55
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from f2e07e8 to 826e558 Compare June 30, 2025 22:07
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 826e558 to 1c90724 Compare July 1, 2025 14:44
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 1c90724 to 0e80e5f Compare July 1, 2025 22:34
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 0e80e5f to 7496886 Compare July 2, 2025 15:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 7496886 to a2f3715 Compare July 2, 2025 22:16
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from a2f3715 to 7737f1b Compare July 3, 2025 17:12
@safedep

safedep Bot commented Sep 17, 2025

Copy link
Copy Markdown

⚠️ Scan Failed: Pull Request Too Large

This pull request exceeds GitHub's diff limits and cannot be scanned.

GitHub Limits:

  • Maximum 300 files per diff
  • Maximum 1 MB total diff size

Recommendations:

  • Split this PR into smaller, focused changes
  • Review critical dependency changes manually
  • Contact your team if this is blocking your workflow
    This report is generated by SafeDep Github App

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants