fix(deps): update node-dependencies - #87
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
Contributor
Author
|
renovate
Bot
force-pushed
the
renovate/node-dependencies
branch
11 times, most recently
from
September 25, 2026 18:00
19adb37 to
4a6def0
Compare
renovate
Bot
force-pushed
the
renovate/node-dependencies
branch
from
September 25, 2026 22:43
4a6def0 to
390f311
Compare
renovate
Bot
force-pushed
the
renovate/node-dependencies
branch
from
September 26, 2026 02:23
390f311 to
478446a
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:
2.22.0→2.27.09.4.1→9.6.19.4.1→9.6.19.4.1→9.6.19.4.1→9.6.19.4.1→9.6.19.4.1→9.6.18.23.1→8.24.03.44.0→3.47.04.3.2→4.3.34.17.24→4.17.253.7.2→3.7.526.1.1→26.6.219.2.17→19.3.019.2.3→19.3.06.0.3→6.1.14.1.10→4.1.1110.5.4→10.6.11.18.1→1.20.01.11.21→1.11.2310.7.0→10.11.017.7.0→17.12.04.0.2→4.0.32.0.2→2.1.16.27.0→6.37.09.3.1→9.4.012.3.4→12.5.13.9.5→3.9.80.8.0→0.8.119.2.7→19.3.019.2.7→19.3.08.23.1→8.24.07.18.1→7.18.47.0.1→7.1.16.4.3→6.5.34.3.2→4.3.38.63.0→8.70.08.1.5→8.3.08.21.0→8.21.32.9.0→2.9.14.4.3→4.6.5Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
auth0/auth0-react (@auth0/auth0-react)
v2.27.0Compare Source
Full Changelog
Added
v2.26.0Compare Source
Full Changelog
Added
v2.25.0Compare Source
Full Changelog
getAccessTokenSilently()now returnsPromise<string | undefined>(wasPromise<string>) and the verbose overload (detailedResponse: true) returnsPromise<GetTokenSilentlyVerboseResponse | undefined>(wasPromise<GetTokenSilentlyVerboseResponse>). Guard return values before use. Aligns with the corrected types in@auth0/auth0-spa-jsv2.25.0. #1238 (yogeshchoudhary147)v2.24.1Compare Source
Full Changelog
Fixed
v2.24.0Compare Source
Full Changelog
Added
v2.23.0Compare Source
Full Changelog
Added
Fixed
v2.22.1Compare Source
Full Changelog
Changed
mantinedev/mantine (@mantine/core)
v9.6.1Compare Source
[@mantine/ligtbox]Add option to render custom thumbnails for video[@mantine/core]OverflowList: Fix ResizeObserver console warning (#9177)[@mantine/core]Fix incorrect escape handling in Modal and Drawer stacks (#9188)[@mantine/core]SegmentedControl: Fix indicator disappearing when data list is replaced with a list with the same length (#9175)[@mantine/lightbox]Fix circular esm dependency (#9166)[@mantine/core]Accordion: Fix incorrect border radius being applied to the contained items[@mantine/schedule]Add event overlap mode support to WeekView and DayView[@mantine/core]Menu: Fix incorrectwithinPortalprop being available[@mantine/core]Popover: Fix position not being updated when prop changes when the dropdown is opened (#9156)[@mantine/schedule]Fix same-day events ending at exclusive midnight being dropped in WeekView and DayView components (#9157)[@mantine/hooks]use-interval: Fix timer restarting when fn changes (#9158)[@mantine/core]Textarea: Fix ResizeObserver loop error when autosize textarea width changes (#9162)[@mantine/hooks]use-collapse: Fix incorrect transition state switching when used with Activity (#9160)v9.6.0Compare 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.
@mantine/lightbox package
New @mantine/lightbox package – a full-screen media lightbox with carousel navigation,
zoom, thumbnails, toolbar customization, and store-based API. Supports image, video, and custom slides:
Key features:
transitionProps(same API as Modal)labelspropNotifications custom rendering
Notifications now support
renderNotificationprop that allows you to completelyreplace the default notification with custom content. All animations (enter, exit, drag dismiss)
are preserved for custom notifications:
Notifications stacked layout
Notifications now support
layout="stacked"prop that displays notifications in a stackedlayout where only the latest notification is fully visible, and older notifications peek out behind it:
ActionBar component
New ActionBar component – a fixed-position bottom bar
for bulk selection actions. Designed to be controlled by table or checkbox
selections, it provides a set of actions that can be performed on selected items.
RichTextEditor table controls
RichTextEditor now includes a set of controls for editing tables. Install and register the
Tiptap table extension (
TableKit), then addthe controls to the toolbar.
RichTextEditor.TableInsertopens a grid to pick the table size, and theother controls add/remove rows and columns, toggle header row/column and merge/split cells. All table
controls are automatically disabled when the cursor is not inside a table:
RichTextEditor Details control
RichTextEditor now supports collapsible sections. Install and register the
Tiptap details extension (
Details,DetailsSummaryandDetailsContent), then addRichTextEditor.Detailsto the toolbar. The controlwraps the current block in a collapsible details node, or removes it when the cursor is already inside
one:
To support the control, Typography now styles
detailsandsummaryelements –a border, padding and a custom disclosure triangle. This applies to all
detailselements insideTypography, not just those created by the editor. All of the new selectors have zero specificity(
:where()), so they can be overridden without!important.RichTextEditor InvisibleCharacters control
RichTextEditor can now display formatting marks. Install and register the
Tiptap invisible characters extension,
then add
RichTextEditor.InvisibleCharactersto the toolbar. The control toggles the visibility ofspaces, paragraph breaks and hard breaks, and reflects the current visibility as its active state:
GaugeChart component
New GaugeChart component – a radial gauge chart for KPI and status display.
Supports threshold sections, target marker, custom labels, and configurable arc angles.
WaffleChart component
New WaffleChart component – a part-to-whole grid chart with colored cells.
Simpler and more compact alternative to pie/donut charts for displaying percentages and proportions.
MatrixChart component
New MatrixChart component – a generic x/y heatmap with categorical axes.
Each cell is colored based on a value, useful for visualizing patterns in two-dimensional categorical data.
CandlestickChart component
New CandlestickChart component – a financial OHLC chart that displays
open, high, low and close values as candles. Candles are colored based on their direction, the wick
shows the high–low range and the body shows the open–close range. Supports custom colors, data keys,
reference lines, axis labels, tooltip labels and value formatting.
Charts reference areas
AreaChart, BarChart, LineChart,
CompositeChart and ScatterChart now support the
referenceAreasprop that highlights a rectangular region of the plot – a weekend band, a targetrange, a threshold zone and similar annotations. Each area is bounded by
x1/x2and/ory1/y2data values (omit one pair to span the full opposite axis) and supports a theme
colorand alabel.Charts reference dots
AreaChart, BarChart, LineChart,
CompositeChart and ScatterChart now support the
referenceDotsprop that marks individual points on the plot – a peak, an event, a record value or ananomaly. Each dot is positioned by
x/ydata coordinates and supports a radius, a themecolorand alabel. Reference dots are rendered on top of the chart series.Note that
referenceLinesin AreaChart are now rendered on top of the areasinstead of behind them, which makes them consistent with
BarChart,LineChart,CompositeChartand
ScatterChart, where reference lines were already painted over the series.AreaChart streamgraph
AreaChart now supports
type="stream"that renders a streamgraph (also knownas ThemeRiver) – a stacked area chart whose baseline flows around a central axis instead of being
fixed to zero, producing the characteristic organic "river" shape. The y-axis is hidden by default
for this type since its floating baseline makes the values not meaningful to read off:
ScatterChart right Y axis
ScatterChart now supports the
withRightYAxisprop that displays anadditional Y axis on the right side of the chart, configurable with
rightYAxisPropsandrightYAxisLabel. Bind data series to the right Y axis by settingyAxisId: 'right'in thedataobject – series without
yAxisIdare bound to the left Y axis. Both axes use the samedataKey.yvalue, but their scales are calculated independently from the series assigned to them:
Stepper labelPosition
Stepper component now supports the
labelPositionprop. SetlabelPosition="bottom"to display the step label and description below the step icon:
Cascader safe area polygon
Cascader with
expandTrigger="hover"now keeps the open column in place while thecursor moves diagonally toward it – options that the cursor passes over on the way no longer replace
it. Set
safeAreaPolygon={false}to expand on every hover immediately, or pass an object to configureFloating UI
safePolygonoptions:YearView renderDay
YearView now supports the
renderDayprop that replaces the entire content ofa day cell. The function is called with the day date in
YYYY-MM-DDformat and the events grouped onthat day – the same list that is used to render the default indicators, but without the three items
limit. This makes it possible to display counts, badges or icons instead of the default dots:
ResourcesMonthView event resize
ResourcesMonthView now supports the
withEventResizeprop. Eventscan be resized by dragging their start or end edges, and the
onEventResizecallback is called withthe updated event start and end dates. Resizing snaps to whole days and preserves the event's original
time of day. Use
canResizeEventto control which events can be resized:Schedule drag and resize intervals
Time-grid Schedule views (
DayView,WeekView,ResourcesDayView,ResourcesWeekView) now supporteventDragIntervalandeventResizeIntervalprops that set the snap step used when events are movedand resized, independent of the
intervalMinutesgrid size. For example, a 30-minute grid can allow15-minute drag and resize increments. A ghost preview shows where the event will land while dragging: