👷 Update all non-major dependencies#4635
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
ff570f1 to
f6d59b4
Compare
🎉 All green!🧪 All tests passed 🎯 Code Coverage (details) 🔗 Commit SHA: d955374 | Docs | Datadog PR Page | Give us feedback! |
Bundles Sizes Evolution
|
9293e99 to
093eff8
Compare
093eff8 to
d955374
Compare
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:
21.2.11→21.2.1221.2.1321.2.11→21.2.1221.2.1321.2.11→21.2.1221.2.1321.2.11→21.2.1221.2.1321.2.11→21.2.1221.2.139.1.1→9.2.09.2.19.1.1→9.2.09.2.13.41.1→3.44.01.169.1→1.169.21.170.4(+4)1.169.1→1.169.21.170.4(+4)0.1.40→0.1.4225.6.0→25.7.025.9.1(+2)22.19.17→22.19.194.0.3→4.0.4v4.35.3→v4.35.4v4.35.524.42.0→24.43.119.2.5→19.2.619.2.5→19.2.619.2.5→19.2.619.2.5→19.2.619.2.5→19.2.67.14.2→7.15.07.15.17.14.2→7.15.07.15.17.14.2→7.15.07.15.15.5.0→5.6.09.5.1→9.5.78.59.1→8.59.38.59.47.3.2→7.3.33.5.33→3.5.343.5.33→3.5.345.105.2→5.106.28.18.3→8.20.10.20.25→0.20.264.12.0→4.14.10.16.1→0.16.2Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
angular/angular (@angular/common)
v21.2.12Compare Source
core
forms
mantinedev/mantine (@mantine/core)
v9.2.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.
TreeSelect component
New TreeSelect component allows picking one or more values from hierarchical tree data.
It supports three selection modes: single, multiple, and checkbox (with parent-child cascade):
Tree select Combobox examples
New Combobox examples showing how to build tree select components
from Combobox primitives with connecting lines, expand/collapse chevrons, and proper indentation:
Notifications swipe dismissal
@mantine/notifications now supports dismissing notifications by dragging them
left or right, and with horizontal scroll swipe while hovered. Both interactions can be disabled
on
Notifications, and individual items can opt out withallowClose: false.use-drag hook
New use-drag hook handles pointer drag gestures with movement tracking,
velocity, direction and axis constraints. It uses the Pointer Events API and works with
both mouse and touch input:
InlineDateTimePicker component
New InlineDateTimePicker component renders a calendar
with a time picker inline, without a dropdown. It supports both default and range modes:
Set
type="range"to select a date and time range with two time inputs:DateTimePicker range support
DateTimePicker now supports
type="range"to selecta date and time range. In range mode, two time inputs are displayed in the dropdown
for start and end times:
DateTimePicker valueFormat function
DateTimePicker
valueFormatprop now accepts a function in additionto a dayjs format string. The callback receives the value as a
YYYY-MM-DD HH:mm:ssstring andreturns the formatted value, which is useful for cases that cannot be expressed with a dayjs
format string:
RollingNumber component
New RollingNumber component animates value changes with rolling digit
transitions. Each digit independently rolls to its new position when the value changes:
MaskInput improvements
MaskInput now supports a
resetRefprop that assigns a function thatclears the input value imperatively. This is useful because
MaskInputis uncontrolledinternally, so setting
valuefrom a parent does not clear it:MaskInputintegration with use-form is now documented. UsedefaultValueto seed the initial value and
onChangeRawto write the raw value to form state:SankeyChart component
New SankeyChart component visualizes flow between nodes as a Sankey diagram
where the width of each link is proportional to the flow value:
Reorder pills in MultiSelect and TagsInput
MultiSelect and TagsInput now support reordering
selected pills. Set the new
withPillsReorderprop to enable it. Pills can be reordered witha mouse (drag-and-drop) or keyboard:
Taborder.ArrowLeftfrom the input (caret at start) movesfocus to the last pill.
ArrowLeftandArrowRightnavigate between pills (RTL-aware).ArrowRighton the lastpill returns focus to the input.
Alt + ArrowLeftandAlt + ArrowRightreorder the focused pill (RTL-aware). Focus followsthe moved pill so chained moves work.
Reordering is automatically disabled when
disabledorreadOnlyis set. Custom pill renderersreceive a
reorderPropspayload that can be spread onto the pill element to keep reorderingworking:
Restrict Tree drop targets
Tree component now supports restricting drop targets with the new
allowDropprop.The callback receives
{ draggedNode, targetNode, position }and returningfalsehides the dropindicator and rejects the drop, so users get proper visual feedback before releasing:
Tree drag handle
Tree component now supports restricting drag initiation to a dedicated handle with
the new
withDragHandleprop. The handle spreadsdragHandlePropsfrom therenderNodepayload.This is useful when a node contains interactive controls (inputs, buttons) that would otherwise
interfere with dragging:
Shared default props for all inputs
Default props set on
InputandInput.Wrapperintheme.componentsnow cascade to everycomponent built on top of them (TextInput, Textarea,
NumberInput, Select, DateInput,
and others). This makes it possible to apply shared
size,radius,variant,withAsteriskand other props to all inputs at once, while still overriding individual components with their
own default props:
Per-day business hours in WeekView
WeekView
businessHoursprop now accepts a per-day object keyed by day ofthe week (
0– Sunday,6– Saturday) in addition to the shared[start, end]tuple. Daysmissing from the object or set to
nullare rendered as fully outside business hours, making iteasy to model partial workdays and non-working days:
tabler/tabler-icons (@tabler/icons-react)
v3.44.0: Release 3.44.0Compare Source
18 new icons:
outline/code-aioutline/email-stampoutline/foodstepsoutline/git-pull-request-conflictoutline/noise-reductionoutline/photo-altoutline/pointer-2outline/pointer-collaboration-2outline/pointer-collaborationoutline/rouletteoutline/scan-cubeoutline/sketchingoutline/sparkle-2outline/sparkle-highlightoutline/sparkleoutline/sphere-2outline/text-scan-aioutline/vignetteFixed icons:
outline/air-balloon,outline/body-scan,outline/chart-sankey,outline/ear-scan,outline/grid-scan,outline/line-scan,outline/object-scan,outline/photo-scan,outline/route-scan,outline/scan-eye,outline/scan-letter-a,outline/scan-letter-t,outline/scan-position,outline/scan-traces,outline/scan,outline/text-scan-2,outline/user-scan,outline/zoom-scanv3.43.0: Release 3.43.0Compare Source
18 new icons:
outline/acornoutline/acrobaticoutline/bananaoutline/brand-audibleoutline/building-eiffel-toweroutline/car-dooroutline/car-lifteroutline/chocolateoutline/dumbbelloutline/exercise-balloutline/floodoutline/hula-hoopoutline/leaf-mapleoutline/notdefoutline/rugbyoutline/taiwan-dollaroutline/target-2outline/unicycleFixed icons:
outline/bike,outline/cliff-jumping,outline/currency-dong,outline/karate,outline/olympic-torch,outline/play-basketball,outline/play-football,outline/play-handball,outline/play-volleyball,outline/run,outline/skateboarding,outline/ski-jumping,outline/stretching-2,outline/waterpolo,outline/yogav3.42.0: Release 3.42.0Compare Source
18 new icons:
outline/brand-stellaroutline/brand-vechainoutline/clef-staffoutline/clefoutline/currency-husdoutline/currency-tetheroutline/currency-zcashoutline/device-computer-camera-2outline/door-hangeroutline/earphone-bluetoothoutline/grapeoutline/hammer-drilloutline/infinity-2outline/lawn-moweroutline/loader-4outline/mosqueoutline/pendulumoutline/plungerTanStack/router (@tanstack/react-router)
v1.169.2Compare Source
Patch Changes
35e88f0]:fregante/chrome-webstore-upload (chrome-webstore-upload)
v4.0.4Compare Source
23ec080github/codeql-action (github/codeql-action)
v4.35.4Compare Source
puppeteer/puppeteer (puppeteer)
v24.43.1Compare Source
♻️ Chores
Dependencies
🛠️ Fixes
⚡ Performance
v24.43.0Compare Source
🎉 Features
Dependencies
🛠️ Fixes
facebook/react (react)
v19.2.6: 19.2.6 (May 6th, 2026)Compare Source
React Server Components
(by @eps1lon and @unstubbable)
remix-run/react-router (react-router)
v7.15.0Compare Source
Minor Changes
Stabilize
unstable_defaultShouldRevalidateasdefaultShouldRevalidateon<Link>,<Form>,useLinkClickHandler,useSubmit,fetcher.submit, andsetSearchParams(a993f09)Stabilize the instrumentation APIs.
unstable_instrumentationsis nowinstrumentationsandunstable_patternis nowpattern(a993f09)unstable_ServerInstrumentation,unstable_ClientInstrumentation,unstable_InstrumentRequestHandlerFunction,unstable_InstrumentRouterFunction,unstable_InstrumentRouteFunction, andunstable_InstrumentationHandlerResulttypes have had theirunstable_prefixes removedStabilize
unstable_maskasmaskon<Link>,useLinkClickHandler, anduseNavigate, and rename the correspondingLocation.unstable_maskfield toLocation.mask(a993f09)Stabilize the
unstable_normalizePathoption onstaticHandler.queryandstaticHandler.queryRouteasnormalizePath(a993f09)Stabilize
future.unstable_passThroughRequestsasfuture.v8_passThroughRequests(a993f09)Remove
unstable_subResourceIntegrityfrom the runtimeFutureConfigtype; the flag is now controlled by the top-levelsubResourceIntegrityoption inreact-router.config.ts(a993f09)Stabilize
unstable_urlasurlonloader,action, andmiddlewarefunction args (a993f09)Stabilize
unstable_useTransitionsasuseTransitionson<BrowserRouter>,<HashRouter>,<HistoryRouter>,<MemoryRouter>,<Router>,<RouterProvider>,<HydratedRouter>, anduseLinkClickHandler([a993f09](https://redirect.github.com/remix-run/react-router/commit/a993Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.