fix(deps): update all non-major dependencies#147
Merged
Conversation
chenjiahan
approved these changes
Jun 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^9.2.2→^9.3.0^9.2.2→^9.3.0^1.2.4→^1.2.5^2.0.9→^2.0.11^2.0.5→^2.0.6^2.0.5→^2.0.6^2.0.1→^2.0.2^5.100.14→^5.101.0^24.12.4→^24.13.1^19.2.15→^19.2.17^1.16.1→^1.17.0^7.4.0→^7.4.2^26.3.0→^26.3.1^6.15.4→^6.16.011.5.0→11.5.2^19.2.6→^19.2.7^19.2.6→^19.2.7^7.76.1→^7.77.0^7.16.0→^7.17.0^1.0.3→^1.1.0^4.60.4→^4.61.1^2.1.2→^2.1.3^8.0.14→^8.0.16^11.4.4→^11.4.5^4.0.8→^4.1.0Release Notes
mantinedev/mantine (@mantine/core)
v9.3.0: 🥵Compare Source
View changelog with demos on mantine.dev website
Support Mantine development
You can now sponsor Mantine development with OpenCollective.
All funds are used to improve Mantine and create new features and components.
Pagination responsive layout
Pagination component now supports
layout="responsive"prop that uses CSS containerqueries to switch between page number buttons and a compact "Page X of Y" label based on the available width.
Text textWrap prop
Text and Blockquote components now support
textWrapprop that controls thetext-wrapCSS property. You can use it to balance line lengthsor prevent orphaned words in paragraphs.
use-splitter hook
New use-splitter hook provides resizable split-pane functionality
with pointer drag, keyboard navigation (WAI-ARIA Window Splitter pattern), collapsible panels
and min/max constraints:
Splitter component
New Splitter component provides declarative resizable split pane layout
built on top of the use-splitter hook:
CodeHighlight line numbers
CodeHighlight component now supports
withLineNumberspropto display line numbers alongside the code:
OverflowList collapseFrom
OverflowList component now supports
collapseFromprop that controlsfrom which direction items are collapsed when they overflow. Set
collapseFrom="start"tocollapse items from the beginning – this is useful for breadcrumb-like patterns where
the last items should remain visible.
Textarea bottomSection
Textarea component now supports
bottomSectionprop that renders contentinside the input border at the bottom. This is useful for displaying character counters
or other supplementary information:
Combobox floatingHeight
Combobox, Select, MultiSelect,
Autocomplete and TagsInput now support
floatingHeight="viewport". When set, the dropdown grows to fill the available verticalspace in the viewport and the
flipmiddleware is disabled – useful when working withlarge option lists:
Menu submenu safe polygon
Menu submenus now use a safe polygon when moving the cursor from
the parent item to the dropdown. This allows you to move the cursor diagonally
across other menu items without accidentally closing the submenu.
Menu search
Menu now supports
Menu.Search– a search input that filters itemswithout taking focus away from the input. Use
ArrowUp/ArrowDownto move thehighlight,
Enterto trigger the highlighted item. Filtering logic is controlledby the user: pass
value/onChangeand filterMenu.Itemchildren based on the query.The search value is cleared automatically after the menu close transition completes; set
clearSearchOnClose={false}to keep the query between openings.Menu checkbox and radio items
Menu now supports
Menu.CheckboxItem,Menu.RadioItem, andMenu.RadioGroupfor building option menus. Checkbox and radio items render an indicator slot at the start
and do not close the menu on click by default. The new
alignItemsLabelsprop onMenucontrols how indicator slot space is reserved so labels stay aligned when mixing plain
and indicator items.
Menu context menu
Menu now supports
Menu.ContextMenu– a target replacement that opens thedropdown at the cursor position when the wrapped element is right-clicked. The browser's
default context menu is suppressed, and right-clicking again repositions the dropdown to
the new coordinates.
Popover context menu
Popover now supports
Popover.ContextMenu– a target replacement thatopens the dropdown at the cursor position on right-click. Unlike
Menu.ContextMenu,Popover.Dropdowncan contain any content.Menu type-ahead navigation
When focus is inside Menu dropdown (and
Menu.Searchis not used), pressing aprintable character key now moves focus to the next item whose label starts with the typed
character. Pressing the same character cycles through matches, and multiple characters typed
within 500ms match items by full prefix.
Highlight accent and case insensitive matching
Highlight component now supports
caseInsensitiveandaccentInsensitiveprops. Both are enabled by default – matching is case-insensitive and accent-insensitive,
so
cafematchescafé,CAFÉ, etc. Set either prop tofalseto opt out:PieChart and DonutChart labelsType="name"
PieChart and DonutChart components now support
labelsType="name"to display segment names as labels instead of values or percentages:Tooltip merge arrow position
Tooltip, Popover and other components based on Popover
now support
arrowPosition="merge". When set, the arrow forms a right triangle mergedwith the corresponding corner of the dropdown, and the border radius of that corner is removed.
Popover preventPositionChangeWhenVisible default
Popover and all components built on top of it (Combobox,
Select, MultiSelect, Autocomplete,
TagsInput, Menu, HoverCard, Tooltip,
ColorInput, date pickers and others) now treat
preventPositionChangeWhenVisibleas
trueby default.With this behavior, the dropdown picks its side once on open – respecting the
positionpropwhen there is enough room – and then stays on that side until the dropdown is closed. Scrolling,
resizing, or changes to the dropdown content (for example narrowing a searchable
Select) nolonger cause the dropdown to flip between top and bottom while it is open. The next open recalculates
the side from scratch.
The flip is also more predictable: when neither side fits, the dropdown falls back to the
preferred
positionprop instead of the side with marginally more space.To restore the previous behavior – where the dropdown could re-flip while open whenever
available space changed – pass
preventPositionChangeWhenVisible={false}:Schedule getCurrentTime
DayView and WeekView components now support
getCurrentTimeprop – a function that returns the current time used by the current time indicator. It is called on
every tick, so the indicator keeps updating automatically. Combined with the timezone-agnostic event
strings, this allows displaying the indicator in any timezone without re-implementing the update loop:
radix-ui/primitives (@radix-ui/react-slot)
v1.2.5Slotcreating a new ref callback on every renderSlottablevia a render prop, so a slotted element can be wrapped while still merging Slot props and refs onto it@radix-ui/[email protected]web-infra-dev/rsbuild (@rsbuild/core)
v2.0.11Compare Source
What's Changed
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v2.0.10...v2.0.11
v2.0.10Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v2.0.9...v2.0.10
web-infra-dev/rspack (@rspack/cli)
v2.0.6Compare Source
Highlights
React Server Components: enforce
server-only/client-onlyboundariesRSC builds now validate the
server-onlyandclient-onlymarker packages. Importing aclient-onlymodule from a server-graph module (or aserver-onlymodule from a client-graph module) is reported as a diagnostic. This marker-package validation always runs and is independent ofdisableClientApiChecks, which now only scopes the React client-API checks.Expose
DeterministicModuleIdsPluginThe webpack-compatible deterministic module id plugin is now exposed through the JS API as
rspack.ids.DeterministicModuleIdsPlugin, giving you fine-grained control over module ids for long-term caching. It supports the webpack optionstest,maxLength,salt,fixedLength, andfailOnConflict.CSS Modules: preserve
composescascade orderCSS Modules now use a shared topological sort to keep the source order of
composes, so composed declarations land in the output cascade in the order you authored them. This fixes subtle specificity surprises when composing local class names across modules.What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
swc_expandswc_corefrom 66 to 68 by @CPunisher in #14241Full Changelog: web-infra-dev/rspack@v2.0.5...v2.0.6
rstackjs/rspack-plugin-react-refresh (@rspack/plugin-react-refresh)
v2.0.2Compare Source
What's Changed
Full Changelog: rstackjs/rspack-plugin-react-refresh@v2.0.1...v2.0.2
TanStack/query (@tanstack/react-query)
v5.101.0Compare Source
Patch Changes
axios/axios (axios)
v1.17.0Compare Source
v1.17.0 — June 1, 2026
This release adds Node HTTP zstd decompression, hardens config and release workflows, and fixes authentication, header, proxy, and type-handling regressions.
🔒 Security Fixes
socketPath,params, andparamsSerializerreads with own-property checks to prevent inherited prototype values from affecting request behavior, including SSRF-sensitive paths. (#10901, #10922)🚀 New Features
transitional.advertiseZstdAcceptEncodingcontrolling whetherzstdis advertised inAccept-Encoding. (#6792, #10920)🐛 Bug Fixes
httpsAgentTLS options when tunneling HTTPS requests through HTTP CONNECT proxies. (#10957)Content-Typefor React NativeFormDataso multipart boundaries can be generated correctly. (#10898)Configuration
📅 Schedule: (in timezone Asia/Shanghai)
* 0-3 1,15 * *)🚦 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.
This PR was generated by Mend Renovate. View the repository job log.