fix(deps): update all non-major dependencies #105
+1,893
−1,005
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:
6.1.0
->6.3.1
4.3.1
->4.4.1
0.6.2
->0.7.1
1.12.0
->1.15.0
0.0.278
->0.0.307
20.16.12
->20.17.21
18.3.11
->18.3.18
18.3.1
->18.3.5
v1.4.2
->v1.5.1
v4.1.1
->v4.2.2
v4.2.1
->v4.2.2
v1.11.0
->v1.11.5
v4.0.4
->v4.2.0
7.37.1
->7.37.4
15.11.0
->15.15.0
20.18.0
->20.18.3
0.89.3
->0.90.3
9.12.2
->9.15.6
v4.0.0
->v4.1.0
8.4.47
->8.5.3
3.3.3
->3.5.2
3.4.14
->3.4.17
5.5.0
->5.6.2
5.6.3
->5.8.2
2.1.3
->2.1.9
Release Notes
clauderic/dnd-kit (@dnd-kit/core)
v6.3.1
Compare Source
Patch Changes
62f632a
Thanks @clauderic! - AddedTab
to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list ofkeyCodes
to the KeyboardSensor options.v6.3.0
Compare Source
Minor Changes
0c6a28d
Thanks @irobot! - Make it possible to add visual cues when using activation constraints.Context
Activation constraints are used when we want to prevent accidental dragging or when
pointer press can mean more than "start dragging".
A typical use case is a button that needs to respond to both "click" and "drag" gestures.
Clicks can be distinguished from drags based on how long the pointer was
held pressed.
The problem
A control that responds differently to a pointer press based on duration or distance can
be confusing to use -- the user has to guess how long to keep holding or how far to keep
dragging until their intent is acknowledged.
Implementing such cues is currently possible by attaching extra event listeners so that
we know when a drag is pending. Furthermore, the listener needs to have access to
the same constraints that were applied to the sensor initiating the drag. This can be
made to work in simple cases, but it becomes error-prone and difficult to maintain in
complex scenarios.
Solution
This changeset proposes the addition of two new events:
onDragPending
andonDragAbort
.onDragPending
A drag is considered to be pending when the pointer has been pressed and there are
activation constraints that need to be satisfied before a drag can start.
This event is initially fired on pointer press. At this time
offset
(see below) will beundefined
.It will subsequently be fired every time the pointer is moved. This is to enable
visual cues for distance-based activation.
The event's payload contains all the information necessary for providing visual feedback:
onDragAbort
A drag is considered aborted when an activation constraint for a pending drag was violated.
Useful as a prompt to cancel any visual cue animations currently in progress.
Note that this event will not be fired when dragging ends or is canceled.
v6.2.0
Compare Source
Minor Changes
545a41c
Thanks @anilanar! - AddactivatorEvent
toDragStartEvent
Patch Changes
#1494
00ec286
Thanks @dinkinflickaa! - Improves performance by eliminating wasteful re-renders on every child item on click#1400
995dc23
Thanks @12joan! - ExportdefaultKeyboardCoordinateGetter
#1542
f629ec6
Thanks @clauderic! - Fix bug with draggable and sortable elements with anid
equal to0
.#1541
99643f6
Thanks @clauderic! - Handletouchcancel
andpointercancel
events.#1435
6bbe39b
Thanks @knaveenkumar3576! - Faster Paint with delayed flush of Effects#1543
bcaf7c4
Thanks @clauderic! - Fix a bug with auto-scroller continuing to observe stale elements, causing them to be considered as scrollable.Updated dependencies [
93602df
]:ianvs/prettier-plugin-sort-imports (@ianvs/prettier-plugin-sort-imports)
v4.4.1
Compare Source
What's Changed
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.4.0...v4.4.1
v4.4.0
Compare Source
What's Changed
Enhancements
importOrderCaseSensitive
option for case-sensitive sorting by @acnebs in https://github.com/IanVS/prettier-plugin-sort-imports/pull/184Maintenance
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.3.1...v4.4.0
PlasmoHQ/storage (@plasmohq/storage)
v1.13.0
Compare Source
What's Changed
New Contributors
Full Changelog: PlasmoHQ/storage@v1.12.0...v1.13.0
Songmu/tagpr (Songmu/tagpr)
v1.5.1
Compare Source
releaseBranch
variable instead of the hard-coded "main" ingit log
command by @mmizutani in https://github.com/Songmu/tagpr/pull/190v1.5.0
Compare Source
v1.4.3
Compare Source
actions/cache (actions/cache)
v4.2.2
Compare Source
What's Changed
Full Changelog: actions/cache@v4.2.1...v4.2.2
v4.2.1
Compare Source
What's Changed
New Contributors
Full Changelog: actions/cache@v4.2.0...v4.2.1
v4.2.0
Compare Source
The cache backend service has been rewritten from the ground up for improved performance and reliability. actions/cache now integrates with the new cache service (v2) APIs.
The new service will gradually roll out as of February 1st, 2025. The legacy service will also be sunset on the same date. Changes in these release are fully backward compatible.
We are deprecating some versions of this action. We recommend upgrading to version
v4
orv3
as soon as possible before February 1st, 2025. (Upgrade instructions below).If you are using pinned SHAs, please use the SHAs of versions
v4.2.0
orv3.4.0
If you do not upgrade, all workflow runs using any of the deprecated actions/cache will fail.
Upgrading to the recommended versions will not break your workflows.
Read more about the change & access the migration guide: reference to the announcement.
Minor changes
Minor and patch version updates for these dependencies:
1.11.1
1.1.3
0.38.3
Full Changelog: actions/cache@v4.1.2...v4.2.0
v4.1.2
Compare Source
What's Changed
isGhes
logic by @jww3 in https://github.com/actions/cache/pull/14744.1.2
release by @Link- in https://github.com/actions/cache/pull/1477New Contributors
Full Changelog: actions/cache@v4.1.1...v4.1.2
actions/checkout (actions/checkout)
v4.2.2
Compare Source
url-helper.ts
now leverages well-known environment variables by @jww3 in https://github.com/actions/checkout/pull/1941isGhes
by @jww3 in https://github.com/actions/checkout/pull/1946actions/create-github-app-token (actions/create-github-app-token)
v1.11.5
Compare Source
Bug Fixes
v1.11.4
Compare Source
Bug Fixes
v1.11.3
Compare Source
Bug Fixes
v1.11.2
Compare Source
Bug Fixes
v1.11.1
Compare Source
What's Changed
Bug Fixes
Full Changelog: actions/create-github-app-token@v1.11.0...v1.11.1
actions/setup-node (actions/setup-node)
v4.2.0
Compare Source
What's Changed
@actions/cache
to^4.0.0
by @priyagupta108 in https://github.com/actions/setup-node/pull/1191New Contributors
Full Changelog: actions/setup-node@v4...v4.2.0
v4.1.0
Compare Source
What's Changed
isGhes
logic by @jww3 in https://github.com/actions/setup-node/pull/1148This addresses issues with caching by adding the architecture (arch) to the cache key, ensuring that cache keys are accurate to prevent conflicts.
Note: This change may break previous cache keys as they will no longer be compatible with the new format.
New Contributors
Full Changelog: actions/setup-node@v4...v4.1.0
jsx-eslint/eslint-plugin-react (eslint-plugin-react)
v7.37.4
Compare Source
Fixed
no-unknown-property
]: supportonBeforeToggle
,popoverTarget
,popoverTargetAction
attributes ([#3865][] @acusti)Configuration
📅 Schedule: Branch creation - "after 8am before 5pm on Monday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).
🚦 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.