Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #105

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 21, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@dnd-kit/core (source) 6.1.0 -> 6.3.1 age adoption passing confidence dependencies minor
@ianvs/prettier-plugin-sort-imports 4.3.1 -> 4.4.0 age adoption passing confidence devDependencies minor
@plasmohq/storage 1.12.0 -> 1.13.0 age adoption passing confidence dependencies minor
@types/chrome (source) 0.0.278 -> 0.0.287 age adoption passing confidence devDependencies patch
@types/node (source) 20.16.12 -> 20.17.10 age adoption passing confidence devDependencies minor
@types/react (source) 18.3.11 -> 18.3.17 age adoption passing confidence devDependencies patch
@types/react-dom (source) 18.3.1 -> 18.3.5 age adoption passing confidence devDependencies patch
Songmu/tagpr v1.4.2 -> v1.5.0 age adoption passing confidence action minor
actions/cache v4.1.1 -> v4.2.0 age adoption passing confidence action minor
actions/checkout v4.2.1 -> v4.2.2 age adoption passing confidence action patch
actions/setup-node v4.0.4 -> v4.1.0 age adoption passing confidence action minor
eslint-plugin-react 7.37.1 -> 7.37.2 age adoption passing confidence devDependencies patch
globals 15.11.0 -> 15.14.0 age adoption passing confidence devDependencies minor
node (source) 20.18.0 -> 20.18.1 age adoption passing confidence patch
plasmo (source) 0.89.3 -> 0.89.4 age adoption passing confidence dependencies patch
pnpm (source) 9.12.2 -> 9.15.0 age adoption passing confidence packageManager minor
postcss (source) 8.4.47 -> 8.4.49 age adoption passing confidence devDependencies patch
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence devDependencies minor
tailwindcss (source) 3.4.14 -> 3.4.17 age adoption passing confidence devDependencies patch
ts-pattern 5.5.0 -> 5.6.0 age adoption passing confidence devDependencies minor
typescript (source) 5.6.3 -> 5.7.2 age adoption passing confidence devDependencies minor
vitest (source) 2.1.3 -> 2.1.8 age adoption passing confidence devDependencies patch

Release Notes

clauderic/dnd-kit (@​dnd-kit/core)

v6.3.1

Compare Source

Patch Changes
  • #​1555 62f632a Thanks @​clauderic! - Added Tab to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of keyCodes to the KeyboardSensor options.

v6.3.0

Compare Source

Minor Changes
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 and onDragAbort.

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 be
undefined.

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:

export interface DragPendingEvent {
  id: UniqueIdentifier;
  constraint: PointerActivationConstraint;
  initialCoordinates: Coordinates;
  offset?: Coordinates | undefined;
}
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
Patch Changes
ianvs/prettier-plugin-sort-imports (@​ianvs/prettier-plugin-sort-imports)

v4.4.0

Compare Source

What's Changed

Enhancements
Maintenance

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.0

Compare Source

v1.4.3

Compare Source

actions/cache (actions/cache)

v4.2.0

Compare Source

⚠️ Important Changes

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 or v3 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 or v3.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:

Full Changelog: actions/cache@v4...v4.2.0

v4.1.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v4...v4.1.2

actions/checkout (actions/checkout)

v4.2.2

Compare Source

actions/setup-node (actions/setup-node)

v4.1.0

Compare Source

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.2

Compare Source

Fixed
  • [destructuring-assignment]: fix false negative when using typeof props.a (#​3835 @​golopot)
Changed
  • [Refactor] [destructuring-assignment]: use getParentStatelessComponent (#​3835 @​golopot)
sindresorhus/globals (globals)

v15.14.0

Compare Source

v15.13.0

Compare Source

v15.12.0

Compare Source

nodejs/node (node)

v20.18.1: 2024-11-20, Version 20.18.1 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.16.13 chore(deps): update all non-major dependencies Oct 21, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from acdbdd1 to 96bf7e4 Compare October 28, 2024 12:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 6b29e40 to e86e5b8 Compare November 4, 2024 14:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 5037c93 to ab83c30 Compare November 13, 2024 17:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ab83c30 to 36b2fda Compare November 14, 2024 05:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 3c36670 to 667f374 Compare December 1, 2024 21:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from d5d1095 to afc07b3 Compare December 6, 2024 17:14
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Dec 8, 2024
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 8, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 2ae9896 to ed187dc Compare December 16, 2024 16:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ed187dc to 0e2a7e3 Compare December 17, 2024 19:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0e2a7e3 to fb99594 Compare December 18, 2024 17:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants