⬆️(dependencies) update js dependencies#2448
Merged
Merged
Conversation
Contributor
|
Size Change: +7.59 kB (+0.18%) Total Size: 4.34 MB 📦 View Changed
|
585a649 to
a983369
Compare
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
a983369 to
cce39d1
Compare
AntoLC
approved these changes
Jun 23, 2026
We are pinning the prosemirror dependencies to avoid conflicts with other versions.
Moderate: - @babel/core - @opentelemetry/core - dompurify - form-data - js-yaml - markdown-it - undici - ws
cce39d1 to
3304c12
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:
3.0.65→3.0.719.2.1→9.3.19.2.1→9.3.116.2.6→16.2.93.5.0→3.5.110.53.1→10.57.010.53.1→10.57.010.53.1→10.57.05.100.14→5.101.05.100.14→5.101.05.100.14→5.101.03.23.6→3.26.124.12.4→24.13.219.2.15→19.2.178.59.4→8.61.08.59.4→8.61.08.59.4→8.61.01.6.18→1.6.206.0.191→6.0.2051.16.1→1.18.010.4.0→10.5.016.2.6→16.2.95.5.5→5.5.626.2.0→26.3.15.2.2→5.3.016.2.6→16.2.91.376.0→1.386.63.8.3→3.8.41.41.8→1.41.919.2.6→19.2.71.17.0→1.18.019.2.6→19.2.74.1.7→4.1.95.107.1→5.107.213.6.30→13.6.315.0.13→5.0.14Release Notes
vercel/ai (@ai-sdk/openai)
v3.0.71Patch Changes
bfa5864]f42aa79]v3.0.69Compare Source
Patch Changes
9a55f6d: feat(openai): add namespaces for tool definitionsv3.0.68Compare Source
Patch Changes
c65c952: fix(openai): round-tripnamespaceon function_call input itemsWhen
tool_searchdispatches a deferred tool, the resultingfunction_callcarries anamespacefield identifying which deferred-tool group the model picked.#14789preserved this on the read side (providerMetadata.openai.namespace), but the write side still serializedfunction_callinput items withoutnamespace. Multi-step / multi-turn conversations then failed withMissing namespace for function_call '<name>'. ... Round-trip the model's function_call item with its namespace field included.convert-to-openai-responses-input.tsnow readsnamespacefromproviderOptions.openai.namespace(orproviderMetadata.openai.namespace) ontool-callparts and includes it on the serializedfunction_callitem, mirroring howitemIdis round-tripped.v3.0.67Compare Source
Patch Changes
c679fec: feat(provider/azure):web search tool in the Azure OpenAI Responses API.v3.0.66Compare Source
Patch Changes
c82ab42: feat(openai): forwardweb_search_call.action.queriesfrom Responses APImantinedev/mantine (@mantine/core)
v9.3.1Compare Source
What's Changed
[@mantine/notifications]Fix stale DOM nodes references not being cleaned up when notifications is closed (#8955)[@mantine/dates]DateInput: Addpresetssupport (#8954)[@mantine/core]Collapse: FixkeepMountedprop not being set correctly (#8949)[@mantine/core]Menu: Add controlled state support for Menu.Sub opened state[@mantine/schedule]Fix incorrect current time indicator position when time does not divide evenly with interval minutes in DayView and WeekView (#8945)[@mantine/core]Popover: Fix context menu not working on iOS touch devices (#8942)[@mantine/core]SegemntedControl: Fix incorrect indicator border-radius calculation (#8904)[@mantine/core]PinInput: Fix incorrect placeholder text centering (#8943)[@mantine/core]Tree: Fix arrow key navigation focusing hidden nodes when keepMounted is set (#8939)[@mantine/core]MaskInput: Fix compatibility issues with uncontrolled use-form (#8947)[@mantine/hooks]use-id: Fix id changing to new value with Activity (#8925)New Contributors
Full Changelog: mantinedev/mantine@9.3.0...9.3.1
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:
v9.2.2Compare Source
What's Changed
[@mantine/core]Pill: Fix incorrect overflow handling (#8929)[@mantine/dates]TimePicker: Fix incorrect am/pm switching in some cases in production builds (#8911)[@mantine/hooks]use-mask: Fix undo keyboard shortcut not working (#8927)[@mantine/hooks]use-mask: Fix cursor jumping on paste/cut (#8926)[@mantine/core]Input: Fix sections misplaced whendiroverrides parent direction (#8905)[@mantine/core]Select: Fix clear button not showing for falsy primitive values (#8901)[@mantine/core]Fix incorrect attributes type in Modal, Drawer and Spotlight[@mantine/tiptap]Fix controls throwing errors when editor is destroyed/not initialized (#8900)[@mantine/core]Menu: Add option to pass safe area polygon options down to Menu.Sub (#8908)New Contributors
Full Changelog: mantinedev/mantine@9.2.1...9.2.2
vercel/next.js (@next/eslint-plugin-next)
v16.2.9Compare Source
Empty release to ensure
next@latestpoints at a stable release. Next.js only allows publishing with Trusted Publishing enabled. In order to fix NPM dist-tags, we have to release a new version. Updating dist-tags is not possible with Trusted Publishing.v16.2.8Compare Source
Release with no changes in an attempt to fix
next@latestpointing at a prerelease version.v16.2.7Compare Source
Core Changes
playwright-coreto resolve_finishedPromiseonrequestFailed(#93920)router.querycorruption withbasePath+rewrites(#93917)FormDataentries (#94240)Credits
Huge thanks to @eps1lon, @icyJoseph, @unstubbable, @mischnic, @bgw, @timneutkens, and @lukesandberg for helping!
adobe/react-spectrum (@react-aria/live-announcer)
v3.5.1Compare Source
getsentry/sentry-javascript (@sentry/nextjs)
v10.57.0Compare Source
Important Changes
feat(angular): Add support for Angular 22 (#21330)
@sentry/angularnow officially supports Angular 22.ref(core): Deprecate
sendDefaultPiiin favor ofdataCollection(#21277)sendDefaultPiiis deprecated and will be removed in v11. The newdataCollectionoption lets you control each category of collected data.sendDefaultPii: truestill works and maps to enabling alldataCollectioncategories.dataCollection.userInfodefaults totruewhendataCollectionis provided, meaning auto-populateduser.*fields (e.g. IP address from a request) are collected by default.Data you set explicitly (like via
Sentry.setUser()) is always sent regardless.When
dataCollectionis not set at all, the legacysendDefaultPiibehavior applies (userInfo: falseby default) to preserve backward compatibility.Note that an empty
dataCollection: {}falls back to more permissive defaults thansendDefaultPii: false, so replicate the old behavior by opting out explicitly:Other Changes
dataCollection.frameContextLinesfor ContextLines integration (#21323)dataCollection.userInfototrue(#21348)dataCollection.httpBodiesto all valid body types (#21352)faviconetc) (#21365)safeDateNowcalls fornew Date()reads (#21351)pinoIntegrationon edge runtime (#21347)__SENTRY_SERVER_MODULES__lazily so Turbopack injection is honored (#21339)react.componentStackevent context (#21183)sentry._internal.replay_is_bufferingfor spans (#21297)Internal Changes
Configuration
📅 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.