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 #152

Merged
merged 1 commit into from
Jan 3, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@dnd-kit/core (source) 6.2.0 -> 6.3.1 age adoption passing confidence dependencies minor
@headlessui/react (source) 2.1.10 -> 2.2.0 age adoption passing confidence dependencies minor
@prisma/client (source) 5.21.1 -> 5.22.0 age adoption passing confidence dependencies minor
@radix-ui/react-toast (source) 1.2.2 -> 1.2.4 age adoption passing confidence dependencies patch
@radix-ui/react-tooltip (source) 1.1.4 -> 1.1.6 age adoption passing confidence dependencies patch
jotai 2.10.3 -> 2.11.0 age adoption passing confidence dependencies minor
next (source) 14.2.15 -> 14.2.22 age adoption passing confidence dependencies patch
next-auth (source) 4.24.10 -> 4.24.11 age adoption passing confidence dependencies patch
next-intl (source) 3.25.3 -> 3.26.3 age adoption passing confidence dependencies minor
node (source) 22.11.0 -> 22.12.0 age adoption passing confidence minor
pnpm (source) 9.12.2 -> 9.15.2 age adoption passing confidence packageManager minor
postgres 17.0 -> 17.2 age adoption passing confidence minor
react-hook-form (source) 7.53.2 -> 7.54.2 age adoption passing confidence dependencies minor
react-icons 5.3.0 -> 5.4.0 age adoption passing confidence dependencies minor
recharts 2.14.1 -> 2.15.0 age adoption passing confidence dependencies minor
remeda (source) 2.17.4 -> 2.19.0 age adoption passing confidence dependencies minor
superjson 2.2.1 -> 2.2.2 age adoption passing confidence dependencies patch
swr (source) 2.2.5 -> 2.3.0 age adoption passing confidence dependencies minor
tailwind-variants ^0.2.1 -> ^0.3.0 age adoption passing confidence dependencies minor
zod (source) 3.23.8 -> 3.24.1 age adoption passing confidence dependencies minor

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.

tailwindlabs/headlessui (@​headlessui/react)

v2.2.0

Compare Source

Added
prisma/prisma (@​prisma/client)

v5.22.0

Compare Source

Today, we are excited to share the 5.22.0 stable release 🎉

🌟 Help us spread the word about Prisma by starring the repo ☝️ or posting on X about the release.

Highlights
Further Tracing Improvements

In our ongoing effort to stabilize the tracing Preview feature, we’ve made our spans compliant with OpenTelemetry Semantic Conventions for Database Client Calls. This should lead to better compatibility with tools such as DataDog and Sentry.

We’ve also included numerous bug fixes that should make this Preview feature easier to work with.

Metrics bug fix

Occasionally, connection pool metrics would become negative or grow unbounded. In this release, connection pool metrics should stay consistent.

Connection Pool Timeout fix

In a specific case, there could be issues where fetching a new connection from the connection pool would time out, regardless of the state of the application and connection pool. If you have experience connection pool issues accessing a PostgreSQL database with TLS encryption in a resource-constrained environment (such as Function-as-a-Service offerings or very small VPS) this should resolve those issues.

Special thanks to @​youxq for their pull request and help resolving this issue!

Join us

Looking to make an impact on Prisma in a big way? We're hiring!

Learn more on our careers page: https://www.prisma.io/careers

Fixes and improvements
Prisma Migrate
Prisma
Credits

Huge thanks to @​tmm1, @​Takur0, @​hinaloe, @​andyjy, and @​youxq for helping!

radix-ui/primitives (@​radix-ui/react-toast)

v1.2.4

Compare Source

v1.2.3

Compare Source

pmndrs/jotai (jotai)

v2.11.0

Compare Source

There are no public API changes, but some internal behaviors have been improved. Now, atom updates are batched in a single write, which might provide a performance benefit in certain edge cases. This feature has been requested actually for a long time, and it's finally implemented. See also #​2782.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.4...v2.11.0

v2.10.4

Compare Source

A minor improvement for some edge cases. (For more information, see #​2789.)

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.3...v2.10.4

vercel/next.js (next)

v14.2.22

Compare Source

v14.2.21

Compare Source

v14.2.20

Compare Source

v14.2.19

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • ensure worker exits bubble to parent process (#​73433)
  • Increase max cache tags to 128 (#​73125)
Misc Changes
  • Update max tag items limit in docs (#​73445)
Credits

Huge thanks to @​ztanner and @​ijjk for helping!

v14.2.18

Compare Source

v14.2.17

Compare Source

v14.2.16

Compare Source

nextauthjs/next-auth (next-auth)

v4.24.11

Compare Source

amannn/next-intl (next-intl)

v3.26.3

Compare Source

Bug Fixes

v3.26.2

Compare Source

Bug Fixes

v3.26.1

Compare Source

Bug Fixes

v3.26.0

Compare Source

Features
nodejs/node (node)

v22.12.0

Compare Source

pnpm/pnpm (pnpm)

v9.15.2: pnpm 9.15.2

Compare Source

Patch Changes

  • Fixed publish/pack error with workspace dependencies with relative paths #​8904. It was broken in v9.4.0 (398472c).
  • Use double quotes in the command suggestion by pnpm patch on Windows #​7546.
  • Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #​8906.
  • Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.1

Compare Source

v9.15.0

Compare Source

v9.14.4

Compare Source

v9.14.3

Compare Source

v9.14.2

Compare Source

Patch Changes

  • pnpm publish --json should work #​8788.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.1

Compare Source

Minor Changes

  • Added support for pnpm pack --json to print packed tarball and contents in JSON format #​8765.

Patch Changes

  • pnpm exec should print a meaningful error message when no command is provided #​8752.
  • pnpm setup should remove the CLI from the target location before moving the new binary #​8173.
  • Fix ERR_PNPM_TARBALL_EXTRACT error while installing a dependency from GitHub having a slash in branch name #​7697.
  • Don't crash if the use-node-version setting is used and the system has no Node.js installed #​8769.
  • Convert settings in local .npmrc files to their correct types. For instance, child-concurrency should be a number, not a string #​5075.
  • pnpm should fail if a project requires a different package manager even if manage-package-manager-versions is set to true.
  • pnpm init should respect the --dir option #​8768.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.0

Compare Source

v9.13.2: pnpm 9.13.2

Compare Source

Patch Changes

  • Detection of circular peer dependencies should not crash with aliased dependencies #​8759. Fixes a regression introduced in the previous version.
  • Fix race condition of symlink creations caused by multiple parallel dlx processes.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

Silver Sponsors

Leniolabs_ Vercel
Depot moonrepo
devowl.io Cerbos
vlt Vite

v9.13.1: pnpm 9.13.1

Compare Source

Patch Changes

  • Fixed some edge cases where resolving circular peer dependencies caused a dead lock #​8720.

Platinum Sponsors

Bit Bit 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 force-pushed the renovate/all-minor-patch branch 9 times, most recently from 096041c to e25b1c5 Compare December 23, 2024 07:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 684ce5a to 591fa0e Compare December 26, 2024 19:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 591fa0e to 4f36e53 Compare December 28, 2024 22:56
@ktmouk ktmouk merged commit e19c541 into main Jan 3, 2025
8 checks passed
@ktmouk ktmouk deleted the renovate/all-minor-patch branch January 3, 2025 08:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant