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.1 age adoption passing confidence devDependencies minor
@plasmohq/messaging (source) 0.6.2 -> 0.7.1 age adoption passing confidence dependencies minor
@plasmohq/storage 1.12.0 -> 1.15.0 age adoption passing confidence dependencies minor
@types/chrome (source) 0.0.278 -> 0.0.307 age adoption passing confidence devDependencies patch
@types/node (source) 20.16.12 -> 20.17.21 age adoption passing confidence devDependencies minor
@types/react (source) 18.3.11 -> 18.3.18 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.1 age adoption passing confidence action minor
actions/cache v4.1.1 -> v4.2.2 age adoption passing confidence action minor
actions/checkout v4.2.1 -> v4.2.2 age adoption passing confidence action patch
actions/create-github-app-token v1.11.0 -> v1.11.5 age adoption passing confidence action patch
actions/setup-node v4.0.4 -> v4.2.0 age adoption passing confidence action minor
eslint-plugin-react 7.37.1 -> 7.37.4 age adoption passing confidence devDependencies patch
globals 15.11.0 -> 15.15.0 age adoption passing confidence devDependencies minor
node (source) 20.18.0 -> 20.18.3 age adoption passing confidence patch
plasmo (source) 0.89.3 -> 0.90.3 age adoption passing confidence dependencies minor
pnpm (source) 9.12.2 -> 9.15.6 age adoption passing confidence packageManager minor
pnpm/action-setup v4.0.0 -> v4.1.0 age adoption passing confidence action minor
postcss (source) 8.4.47 -> 8.5.3 age adoption passing confidence devDependencies minor
prettier (source) 3.3.3 -> 3.5.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.2 age adoption passing confidence devDependencies minor
typescript (source) 5.6.3 -> 5.8.2 age adoption passing confidence devDependencies minor
vitest (source) 2.1.3 -> 2.1.9 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.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
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.1

Compare Source

v1.5.0

Compare Source

v1.4.3

Compare Source

actions/cache (actions/cache)

v4.2.2

Compare Source

What's Changed

[!IMPORTANT]
As a reminder, there were important backend changes to release v4.2.0, see those release notes and the announcement for more details.

Full Changelog: actions/cache@v4.2.1...v4.2.2

v4.2.1

Compare Source

What's Changed

[!IMPORTANT]
As a reminder, there were important backend changes to release v4.2.0, see those release notes and the announcement for more details.

New Contributors

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

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.1.2...v4.2.0

v4.1.2

Compare Source

What's Changed
New Contributors

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

actions/checkout (actions/checkout)

v4.2.2

Compare Source

actions/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

New Contributors

Full Changelog: actions/setup-node@v4...v4.2.0

v4.1.0

Compare Source

What's Changed

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]: support onBeforeToggle, 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.


  • 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 c979261 to 47bdb7f Compare February 9, 2025 13:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 8f23179 to fb5fe83 Compare February 15, 2025 03:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from fbba401 to b564afa Compare February 24, 2025 12:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 685527a to 06e4d67 Compare February 28, 2025 19:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 06e4d67 to 5791507 Compare February 28, 2025 23:33
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