fix(deps): update all non-major dependencies - #782
Merged
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
bati | ea64f4c | Commit Preview URL Branch Preview URL |
Jul 27 2026, 09:49 AM |
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 27, 2026 09:45
5de97a8 to
ea64f4c
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:
^1.46.0→^1.47.0^5.20260722.1→^5.20260727.1^1.11.2→^1.11.3^1.11.2→^1.11.3^9.4.2→^9.5.0^9.4.2→^9.5.0^10.67.0→^10.68.0^10.67.0→^10.68.0^10.67.0→^10.68.0^2.1132.1→^2.1133.0^2.261.0→^2.262.1^1.6.24→^1.6.25^13.6.8→^13.6.9^2.1132.1→^2.1133.0^5.7.0→^5.7.4^17.7.0→^17.8.0^4.12.31→^4.12.32^1.25.0→^1.27.0^8.5.22→^8.5.23^0.27.13→^0.27.14^7.5.21→^7.5.22^0.22.13→^0.22.14^4.113.0→^4.114.0Release Notes
cloudflare/workers-sdk (@cloudflare/vite-plugin)
v1.47.0Compare Source
Minor Changes
#14633
3203b5dThanks @nickpatt! - Add local-dev observabilitywrangler devand the Vite plugin now capture a trace for every local Worker invocation - spans, logs, andconsole.*output, including requests that cross worker or Durable Object boundaries.You can explore this data two ways:
/cdn-cgi/explorer/api/local/observability/query, discoverable via the Local Explorer's OpenAPI document, so coding agents and tools can query the samespansandlogstables.While this is in testing it's off by default; set
X_LOCAL_OBSERVABILITY=trueto turn it on. It will be on by default in the public release.Patch Changes
#14792
c4bacecThanks @matthewp! - Recover local development after the Workers runtime crashesPreviously, an unexpected workerd crash left Miniflare running but unable to serve subsequent requests. Miniflare now restarts workerd after post-startup crashes, while continuing to surface startup crashes as fatal errors.
The Cloudflare Vite plugin also restarts the Vite development server after workerd recovers so its environments, hot channels, and module runners are recreated.
Updated dependencies [
246ce92,c38a2c3,8416b33,c079ba3,4683ff8,95b026e,02232f3,c4bacec,f8a8c2c,3203b5d]:cloudflare/workerd (@cloudflare/workers-types)
v5.20260727.1Compare Source
v5.20260726.1Compare Source
v5.20260724.1Compare Source
v5.20260723.1Compare Source
toyobayashi/emnapi (@emnapi/core)
v1.11.3Compare Source
What's Changed
Full Changelog: toyobayashi/emnapi@v1.11.2...v1.11.3
mantinedev/mantine (@mantine/core)
v9.5.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.
Migration to oxc
Mantine has migrated its linting and formatting toolchain from ESLint and Prettier
to oxc – oxlint is now used
as the linter and oxfmt as the formatter. Both
tools are written in Rust and are significantly faster than their predecessors, which
makes linting and formatting the entire codebase almost instant.
The shared configuration is available as a new
oxc-config-mantine package (a replacement for the previous
eslint-config-mantine). You can use it in your own projects to follow the samecode style and conventions as Mantine.
Native level select in date pickers
DatePicker and all other date picker components (DatePickerInput,
MonthPicker, YearPicker, DateTimePicker, etc.)
now support the
withNativeLevelSelectprop. When enabled, it replaces the calendar header level buttonwith native
<select>elements, making it easy to quickly navigate to a specific month and year.Timeline opposite and alternate content
Timeline
Timeline.Itemcomponent now supports theoppositeprop that allowsrendering content on the opposite side of the timeline. When any item has the
oppositeprop,the timeline switches to a centered layout with content on both sides of the line.
Set the
alternateprop on individualTimeline.Itemcomponents to switchthe position of content and opposite:
FloatingWindow resize handle
FloatingWindow now supports a
ResizeHandlecompound componentthat allows users to resize the floating window by dragging a handle element.
Set the
dimensionsprop onFloatingWindowto control resize constraints for bothwidth (
initialWidth,minWidth,maxWidth) and height (initialHeight,minHeight,maxHeight).The resize handle is fully accessible – it supports keyboard interaction with
Arrow Left/Arrow Rightkeys for width,Arrow Up/Arrow Downfor height (10px steps),and
Home/Endkeys (jump to min/max size).Cascader component
New Cascader component allows selecting a value from hierarchical data
by drilling down through cascading columns. Picking an option in one column reveals its
children in a new column to the right, and the value is an ordered path from the root option
to the selected node. It supports
changeOnSelect,hoverexpand trigger, search, a flat listlayout for mobile, and full keyboard navigation.
SunburstChart component
New SunburstChart component displays hierarchical data
as concentric rings, similar to a treemap plotted in polar coordinates.
BulletChart component
New BulletChart component displays a single measure against
a qualitative range, useful for comparing a primary value (such as revenue) against
a target and qualitative thresholds like poor, average, and good.
Charts keyboard navigation
All @mantine/charts components now expose the
accessibilityLayerprop (trueby default) that makes charts navigable with the keyboard.The chart surface is focusable and displays the Mantine focus ring; once focused, the arrow keys
move the active tooltip point-by-point and Enter toggles the tooltip, so users who do not
use a mouse can read the underlying values. The prop is supported by
AreaChart,BarChart,LineChart,CompositeChart,ScatterChart,BubbleChart,PieChart,DonutChart,RadarChart,RadialBarChartandFunnelChartcomponents.Charts brush
AreaChart, BarChart, LineChart
and CompositeChart now support the
withBrushprop that displays abrush (range selector) under the chart. Drag the brush handles to zoom into a subset of the data.
Use the
brushPropsprop to customize the underlying rechartsBrush, or render the newthemed
ChartBrushcomponent as a child of the chart for full control.Heatmap month labels position
Heatmap now supports
monthLabelsPositionprop that allowsdisplaying month labels at the bottom of the heatmap instead of the top (default).
Accordion disable collapse
Accordion now supports the
disableCollapseprop. When enabled in singlemode (
multiple={false}), the open item cannot be collapsed by clicking it again, so one itemalways stays open. Pair it with
defaultValueorvalueto guarantee that a section is openfrom the start – useful for settings panels, stepper-style flows and FAQ pages.
ScrollArea vertical scrollbar position
ScrollArea now supports the
verticalScrollbarPositionprop that pins thevertical scrollbar to a physical side (
leftorright) regardless of direction. This is usefulfor RTL applications where users expect the vertical scrollbar to stay on the right, matching the
behavior of most desktop software. The prop also realigns the offset padding, the corner and the
horizontal scrollbar gap, so it works correctly with
offsetScrollbarsandscrollbars="xy".Schedule intervals larger than one hour
ResourcesDayView and
ResourcesWeekView now support
intervalMinutesvalueslarger than 60. Previously the interval was capped at one hour – you can now set it to any
whole number of hours (for example
120or240) to display multi-hour time slots. Valuesof 60 or less must still divide evenly into an hour; any value that does not keep the grid on
hour boundaries falls back to
60.New example: Table virtualization
New Table example demonstrates how to use
Table.ScrollContainerwith@tanstack/react-virtualto efficiently render large datasets with 5,000 rows.getsentry/sentry-javascript (@sentry/react)
v10.68.0Compare Source
cache.keyon dataloader spans and capture redis delete operations ascache.remove(#22389)FirebaseInstrumentationto orchestrion (#22141)http.routeattribute tohttp.serverspans with parameterized routes (#22564)url.fullandurl.pathtohttp.serverspans (#22533)instrumentStateGraphAPI (#22491)url.fullattribute to core fetch instrumentation (#22436)stackFrameVariablesby variable name (#22526)@apm-js-collab/code-transformer-bundler-pluginsto 0.7.1 (#22497)functionToStringIntegrationcausing infinite recursions (#22527)baggage: "undefined"when DSC is missing (#22440)Internal Changes
v10to build and license-compliance branch filters (#22499)defineEnvVarsfrom@sveltejs/kit/env(#22390)Work in this release was contributed by @psh4607 and @trinitiwowka. Thank you for your contributions!
Bundle size 📦
aws/aws-cdk-cli (aws-cdk)
v2.1133.0Compare Source
2.1133.0 (2026-07-23)
Features
Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 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.