fix(deps): update all non-major dependencies - #19
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
3 times, most recently
from
August 7, 2026 00:41
628634f to
8890ce9
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
6 times, most recently
from
August 14, 2026 23:34
33d8690 to
b8910b3
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
3 times, most recently
from
August 21, 2026 16:41
4675804 to
b0d9382
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
August 23, 2026 01:12
b0d9382 to
4a38b06
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:
0.2.4→0.5.00.2.4→0.5.00.2.4→0.5.00.2.4→0.5.00.2.4→0.5.010.4.0→10.6.00.9.0→0.10.01.3.3→1.3.111.1.15→1.1.231.1.15→1.1.231.2.4→1.3.31.2.6→1.3.71.2.8→1.2.160.5.19→0.5.204.2.2→4.3.314.6.1→14.6.514.6.619.2.14→19.2.1819.2.3→19.2.419.2.5v4.3.1→v4.4.09.39.4→9.39.52.1.18→2.1.1920.9.0→20.11.60.16.45→0.18.412.38.0→12.43.024.13.0→24.19.010.34.3→10.34.53.8.3→3.9.619.2.5→19.2.819.2.5→19.2.83.5.0→3.6.04.2.2→4.3.37.3.2→7.3.64.1.4→4.1.114.3.6→4.4.3Release Notes
clauderic/dnd-kit (@dnd-kit/abstract)
v0.5.0Compare Source
Minor Changes
2dd8d0eThanks @timagixe! - AllowuseSortable,createSortableandSortableto disable dragging and dropping independently with adisabledobject while preserving the existing boolean behavior.Patch Changes
#2021
de5a0f4Thanks @lixiaoyan! - FixeduseDraggableanduseSortablereassigning the underlying entity'ssensorson every render whensensorswas passed as an inline array. Thesensorsprop is now compared withdeepEqual(matching the existing behavior ofmodifiers,plugins, andDragDropProvider), preventing unnecessary mutations to the plugin registry that could disrupt in-progress sensor activation.#2043
a6bd445Thanks @clauderic! - Include sourcemap files in published packages. The build emits.mapfiles alongside each entry point and writes//# sourceMappingURL=...comments into the bundles, but thefilesfield inpackage.jsondid not list the maps, so they were excluded from the npm tarball. Bundlers attempting to load the referenced maps would fail withENOENT, producing warnings (or build failures in strict CI setups).Updated dependencies [
e4d1a7e,e25b1b1,00fd955,e4792f3,f23afe0,2dd8d0e]:v0.4.0Compare Source
Minor Changes
9b24dffThanks @clauderic! - Redesign event type system to follow the DOM EventMap pattern. IntroducesDragDropEventMapfor event object types andDragDropEventHandlersfor event handler signatures, replacing the ambiguously namedDragDropEvents. Event type aliases (CollisionEvent,DragStartEvent, etc.) now derive directly fromDragDropEventMaprather than usingParameters<>extraction.Migration guide
#1938
e69387dThanks @clauderic! - Added per-entity plugin configuration and movedfeedbackfrom the Draggable entity to the Feedback plugin.Draggable entities now accept a
pluginsproperty for per-entity plugin configuration, using the existingPlugin.configure()pattern. Plugins can read per-entity options viasource.pluginConfig(PluginClass).The
feedbackproperty ('default' | 'move' | 'clone' | 'none') has been moved from the Draggable entity toFeedbackOptions. Drop animation can also now be configured per-draggable.Plugins listed in an entity's
pluginsarray are auto-registered on the manager if not already present. The Sortable class now uses this generic mechanism instead of its own custom registration logic.Migration guide
Patch Changes
#1987
462e435Thanks @clauderic! - fix: resolve DTS build errors with TypeScript 5.9 on Node 20Add explicit return type annotations to avoid
[dispose]serialization failures during declaration emit, and fixuseRefreadonly errors for React 19 type compatibility.#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.#1924
8e3e5eeThanks @clauderic! - FixuseDeepSignalcallingflushSyncfrom within a React lifecycle method.When signal updates are triggered synchronously from a React effect (e.g. during a
useEffectbatch), callingflushSyncdirectly violates React's internal invariant. The synchronous re-render is now deferred to a microtask viaqueueMicrotask, which runs after the current React batch completes but before the next paint.Updated dependencies [
4bc7e71,87bf1e6,521f760,c001272,cde61e4,78af13b,1328af8,532ae9b,267c97c,bfff7de,a5935e0,462e435,9b24dff,8fc1962,88d5ef9,8115a57,688e00f,cdaebff,e69387d,11ff2eb,7489265,4e35963,5a2ed80]:v0.3.2Compare Source
Patch Changes
7260746]:v0.3.1Compare Source
Patch Changes
4341114]:v0.3.0Compare Source
Minor Changes
6a59647Thanks @clauderic! - Allowplugins,sensors, andmodifiersto accept a function that receives the defaults, making it easy to extend or configure them without replacing the entire array.Previously, passing
plugins,sensors, ormodifierswould replace the defaults entirely, requiring consumers to import and spreaddefaultPreset. The function form receives the default values as an argument, so consumers can add, remove, or configure individual entries without needing to know or maintain the full default list.68e44deThanks @clauderic! - AddisSortableOperationtype guard and exportSortableDraggable/SortableDroppabletypes.isSortableOperation(operation)narrows aDragOperationSnapshotso thatsourceis typed asSortableDraggableandtargetasSortableDroppable, providing typed access to sortable-specific properties likeindex,initialIndex,group, andinitialGroup.Re-exported from all framework packages (
@dnd-kit/react/sortable,@dnd-kit/vue/sortable,@dnd-kit/svelte/sortable,@dnd-kit/solid/sortable).Patch Changes
5d64078Thanks @clauderic! - AdddropAnimationprop to theDragOverlaycomponent to allow consumers to disable or customize the drop animation that plays when a drag operation ends. Set tonullto disable, pass{duration, easing}to customize timing, or provide a custom animation function for full control.Updated dependencies [
6a59647,5d64078,863ce2b,863ce2b,e8ae539,41d7e27,68e44de]:faker-js/faker (@faker-js/faker)
v10.6.0Compare Source
New Locales
Features
Changed Locales
Bug Fixes
v10.5.0Compare Source
New Locales
Features
recentandsoon(#3844) (0bc038d)pastandfuture(#3783) (237e7dc)Bug Fixes
PrettyCoffee/pretty-cozy (@pretty-cozy/eslint-config)
v0.10.0Compare Source
radix-ui/primitives (@radix-ui/react-checkbox)
v1.3.11@radix-ui/react-compose-refs@1.1.5,@radix-ui/react-context@1.2.2,@radix-ui/react-presence@1.1.10,@radix-ui/react-primitive@2.1.10,@radix-ui/react-use-controllable-state@1.2.6,@radix-ui/react-use-size@1.1.4v1.3.10@radix-ui/react-primitive@2.1.9v1.3.9@radix-ui/primitive@1.1.7,@radix-ui/react-compose-refs@1.1.4,@radix-ui/react-context@1.2.1,@radix-ui/react-presence@1.1.9,@radix-ui/react-primitive@2.1.8,@radix-ui/react-use-controllable-state@1.2.5,@radix-ui/react-use-size@1.1.3v1.3.8/* @__PURE__ */and use named render functions instead ofComponent.displayName = ...assignments, which previously prevented dead-code elimination with some bundlers.Checkbox,Switch, orRadioGroupvalue programmatically (eg. a "select all" control) while inside a<form>would dispatch aclickevent from the hidden bubble input that propagated to ancestoronClickhandlers.@radix-ui/react-presence@1.1.8,@radix-ui/react-use-controllable-state@1.2.4,@radix-ui/primitive@1.1.6,@radix-ui/react-compose-refs@1.1.3,@radix-ui/react-context@1.2.0,@radix-ui/react-primitive@2.1.7,@radix-ui/react-use-size@1.1.2v1.3.7@radix-ui/primitive@1.1.5,@radix-ui/react-context@1.2.0,@radix-ui/react-presence@1.1.7v1.3.6@radix-ui/react-primitive@2.1.7v1.3.5@radix-ui/react-primitive@2.1.6v1.3.4@radix-ui/react-presence@1.1.6,@radix-ui/primitive@1.1.4,@radix-ui/react-compose-refs@1.1.3,@radix-ui/react-context@1.1.4,@radix-ui/react-primitive@2.1.5,@radix-ui/react-use-controllable-state@1.2.3,@radix-ui/react-use-previous@1.1.2,@radix-ui/react-use-size@1.1.2radix-ui/primitives (@radix-ui/react-dialog)
v1.1.23@radix-ui/react-compose-refs@1.1.5,@radix-ui/react-context@1.2.2,@radix-ui/react-dismissable-layer@1.1.19,@radix-ui/react-focus-guards@1.1.6,@radix-ui/react-focus-scope@1.1.16,@radix-ui/react-id@1.1.4,@radix-ui/react-portal@1.1.17,@radix-ui/react-presence@1.1.10,@radix-ui/react-primitive@2.1.10,@radix-ui/react-slot@1.3.3,@radix-ui/react-use-controllable-state@1.2.6,@radix-ui/react-use-layout-effect@1.1.4v1.1.22@radix-ui/react-slot@1.3.2,@radix-ui/react-primitive@2.1.9,@radix-ui/react-dismissable-layer@1.1.18,@radix-ui/react-focus-scope@1.1.15,@radix-ui/react-portal@1.1.16v1.1.21@radix-ui/primitive@1.1.7,@radix-ui/react-compose-refs@1.1.4,@radix-ui/react-context@1.2.1,@radix-ui/react-dismissable-layer@1.1.17,@radix-ui/react-focus-guards@1.1.5,@radix-ui/react-focus-scope@1.1.14,@radix-ui/react-id@1.1.3,@radix-ui/react-portal@1.1.15,@radix-ui/react-presence@1.1.9,@radix-ui/react-primitive@2.1.8,@radix-ui/react-slot@1.3.1,@radix-ui/react-use-controllable-state@1.2.5,@radix-ui/react-use-layout-effect@1.1.3v1.1.20/* @__PURE__ */and use named render functions instead ofComponent.displayName = ...assignments, which previously prevented dead-code elimination with some bundlers.@radix-ui/react-dismissable-layer@1.1.16,@radix-ui/react-focus-scope@1.1.13,@radix-ui/react-portal@1.1.14,@radix-ui/react-presence@1.1.8,@radix-ui/react-use-controllable-state@1.2.4,@radix-ui/primitive@1.1.6,@radix-ui/react-compose-refs@1.1.3,@radix-ui/react-context@1.2.0,@radix-ui/react-focus-guards@1.1.4,@radix-ui/react-id@1.1.2,@radix-ui/react-primitive@2.1.7,@radix-ui/react-slot@1.3.0,@radix-ui/react-use-layout-effect@1.1.2v1.1.19@radix-ui/react-dismissable-layer@1.1.15,@radix-ui/primitive@1.1.5,@radix-ui/react-context@1.2.0,@radix-ui/react-focus-scope@1.1.12,@radix-ui/react-presence@1.1.7v1.1.18@radix-ui/react-primitive@2.1.7,@radix-ui/react-dismissable-layer@1.1.14,@radix-ui/react-focus-scope@1.1.11,@radix-ui/react-portal@1.1.13v1.1.17@radix-ui/react-slot@1.3.0,@radix-ui/react-dismissable-layer@1.1.13,@radix-ui/react-primitive@2.1.6,@radix-ui/react-focus-scope@1.1.10,@radix-ui/react-portal@1.1.12v1.1.16react-dialogwere brokenaria-controlswhen their content is removed from the DOM (credit to @dodomorandi for the original PR)@radix-ui/react-presence@1.1.6,@radix-ui/react-slot@1.2.5,@radix-ui/react-focus-guards@1.1.4,@radix-ui/react-dismissable-layer@1.1.12,@radix-ui/primitive@1.1.4,@radix-ui/react-compose-refs@1.1.3,@radix-ui/react-context@1.1.4,@radix-ui/react-focus-scope@1.1.9,@radix-ui/react-id@1.1.2,@radix-ui/react-portal@1.1.11,@radix-ui/react-primitive@2.1.5,@radix-ui/react-use-controllable-state@1.2.3radix-ui/primitives (@radix-ui/react-popover)
v1.1.23@radix-ui/react-compose-refs@1.1.5,@radix-ui/react-context@1.2.2,@radix-ui/react-dismissable-layer@1.1.19,@radix-ui/react-focus-guards@1.1.6,@radix-ui/react-focus-scope@1.1.16,@radix-ui/react-id@1.1.4,@radix-ui/react-popper@1.3.7,@radix-ui/react-portal@1.1.17,@radix-ui/react-presence@1.1.10,@radix-ui/react-primitive@2.1.10,@radix-ui/react-slot@1.3.3,@radix-ui/react-use-controllable-state@1.2.6[
v1.1.22](https://redirect.github.com/radix-ui/primitives/blob/HEAConfiguration
📅 Schedule: (UTC)
* 0-3 1 * *)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.