Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 10, 2025

Bumps the production-dependencies group with 32 updates in the / directory:

Package From To
@hookform/resolvers 3.10.0 5.2.1
@radix-ui/react-accordion 1.2.11 1.2.12
@radix-ui/react-alert-dialog 1.1.14 1.1.15
@radix-ui/react-checkbox 1.3.2 1.3.3
@radix-ui/react-hover-card 1.1.14 1.1.15
@radix-ui/react-menubar 1.1.15 1.1.16
@radix-ui/react-navigation-menu 1.2.13 1.2.14
@radix-ui/react-popover 1.1.14 1.1.15
@radix-ui/react-radio-group 1.3.7 1.3.8
@radix-ui/react-scroll-area 1.2.9 1.2.10
@radix-ui/react-select 2.2.5 2.2.6
@radix-ui/react-slider 1.3.5 1.3.6
@radix-ui/react-switch 1.2.5 1.2.6
@radix-ui/react-tabs 1.1.12 1.1.13
@radix-ui/react-toast 1.2.14 1.2.15
@radix-ui/react-toggle 1.1.9 1.1.10
@radix-ui/react-toggle-group 1.1.10 1.1.11
@radix-ui/react-tooltip 1.2.7 1.2.8
@stripe/react-stripe-js 2.9.0 4.0.2
@stripe/stripe-js 4.10.0 7.9.0
@supabase/supabase-js 2.54.0 2.57.4
@tanstack/react-query 5.84.2 5.87.1
framer-motion 11.18.2 12.23.12
lucide-react 0.535.0 0.543.0
mathjs 14.6.0 14.7.0
react-day-picker 9.8.1 9.9.0
react-resizable-panels 2.1.9 3.0.5
react-router-dom 6.30.1 7.8.2
recharts 2.15.4 3.2.0
tailwind-merge 2.6.0 3.3.1
vaul 0.9.9 1.1.2
zod 3.25.76 4.1.5

Updates @hookform/resolvers from 3.10.0 to 5.2.1

Release notes

Sourced from @​hookform/resolvers's releases.

v5.2.1

5.2.1 (2025-07-29)

Bug Fixes

v5.2.0

5.2.0 (2025-07-25)

Features

  • ajv: add ajv-formats for ajvResolver (#797) (f040039)

v5.1.1

5.1.1 (2025-06-09)

Bug Fixes

v5.1.0

5.1.0 (2025-06-07)

Features

  • support Zod 4, Zod v4 mini, and retains compatibility with Zod v3. (#777) (8d083bd)

v5.0.1

5.0.1 (2025-04-02)

Bug Fixes

  • relax version constraint for react-hook-form 7.55.0 → ^7.55.0 (#758) (6e88393)

v5.0.0

5.0.0 (2025-04-01)

Features

... (truncated)

Commits

Updates @radix-ui/react-accordion from 1.2.11 to 1.2.12

Commits

Updates @radix-ui/react-alert-dialog from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-checkbox from 1.3.2 to 1.3.3

Commits

Updates @radix-ui/react-collapsible from 1.1.11 to 1.1.12

Commits

Updates @radix-ui/react-dialog from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-hover-card from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-menubar from 1.1.15 to 1.1.16

Commits

Updates @radix-ui/react-navigation-menu from 1.2.13 to 1.2.14

Commits

Updates @radix-ui/react-popover from 1.1.14 to 1.1.15

Commits

Updates @radix-ui/react-radio-group from 1.3.7 to 1.3.8

Commits

Updates @radix-ui/react-scroll-area from 1.2.9 to 1.2.10

Commits

Updates @radix-ui/react-select from 2.2.5 to 2.2.6

Commits

Updates @radix-ui/react-slider from 1.3.5 to 1.3.6

Commits

Updates @radix-ui/react-switch from 1.2.5 to 1.2.6

Commits

Updates @radix-ui/react-tabs from 1.1.12 to 1.1.13

Commits

Updates @radix-ui/react-toast from 1.2.14 to 1.2.15

Commits

Updates @radix-ui/react-toggle from 1.1.9 to 1.1.10

Commits

Updates @radix-ui/react-toggle-group from 1.1.10 to 1.1.11

Commits

Updates @radix-ui/react-tooltip from 1.2.7 to 1.2.8

Commits

Updates @stripe/react-stripe-js from 2.9.0 to 4.0.2

Release notes

Sourced from @​stripe/react-stripe-js's releases.

v4.0.2

Changed

  • Add release candidate logic to publish script (#618)

v4.0.1

Fixes

  • Fix Shipping/BillingAddressElement Render (#616)

Changed

  • Bump sha.js from 2.4.11 to 2.4.12 (#610)
  • Bump cipher-base from 1.0.4 to 1.0.6 (#614)

v4.0.0

Changed

  • [breaking] split out custom checkout imports (#609)
  • Update useCheckout to return loading/error states (#606)

Upgrade guidance

Import changes

Checkout paths changed:

import {useCheckout, PaymentElement} from '@stripe/react-stripe-js';

to

import {useCheckout, PaymentElement} from '@stripe/react-stripe-js/checkout';

useCheckout changes

Previously:

  • CheckoutProvider renders children if initCheckout succeeded, and null otherwise.
  • useCheckout() returns the SDK if initCheckout succeeded, and throws an error otherwise.

Now (>= v4.0.0):

  • CheckoutProvider renders children unconditionally.
  • useCheckout() returns a disjoint union describing the asynchronous state. The new return value now looks like:
type useCheckout = () =>
  | {type: 'loading'}
  | {
      type: 'success';
      checkout: CheckoutValue;
</tr></table> 

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by dodgez-stripe, a new releaser for @​stripe/react-stripe-js since your current version.


Updates @stripe/stripe-js from 4.10.0 to 7.9.0

Release notes

Sourced from @​stripe/stripe-js's releases.

v7.9.0

New features

  • Add buttonBorderRadius to types (#798)
  • Add 'allow_redisplay' to 'PaymentMethodCreateParams' (#796)

Fixes

  • Bump sha.js from 2.4.11 to 2.4.12 in /examples/parcel (#799)

v7.8.0

New features

  • chore: add fonts types (#795)
  • Adding SPM option to StripeCheckoutElementsOptions (#793)

Changed

  • removes double github token check (#794)

v7.7.0

New features

  • Add types for new issuingAddToWalletButton (#792)
  • Add types for allowed_payment_method_types and excluded_payment_method_types (#790)

Changed

  • Delete Webpack example (#791)
  • Bump pbkdf2 from 3.1.1 to 3.1.3 in /examples/parcel (#771)

v7.6.1

New features

Fixes

  • Add missing tax id types (#789)

Changed

v7.6.0

New features

  • Add public types for Tax Id Element (#788)

Fixes

Changed

v7.5.0

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by dodgez-stripe, a new releaser for @​stripe/stripe-js since your current version.


Updates @supabase/supabase-js from 2.54.0 to 2.57.4

Release notes

Sourced from @​supabase/supabase-js's releases.

v2.57.4

2.57.4 (2025-09-09)

Bug Fixes

v2.57.3

2.57.3 (2025-09-09)

Bug Fixes

v2.57.2

2.57.2 (2025-09-05)

Bug Fixes

v2.57.1

2.57.1 (2025-09-05)

Bug Fixes

v2.57.0

2.57.0 (2025-09-02)

Features

  • expose auth userStorage option to facilitate lower cookie sizes (#1545) (4ae856c)

v2.57.0-next.4

2.57.0-next.4 (2025-08-29)

Bug Fixes

  • realtime js to 2.16.0-next.2 (b4d685b)

v2.57.0-next.3

2.57.0-next.3 (2025-08-29)

... (truncated)

Commits

Updates @tanstack/react-query from 5.84.2 to 5.87.1

Release notes

Sourced from @​tanstack/react-query's releases.

v5.87.1

Version 5.87.1 - 9/5/25, 2:15 PM

Changes

Fix

  • query-core: update initialData when an observer mounts while a Query without data exists (#9620) (1c8a921) by Dominik Dorfmeister

Packages

  • @​tanstack/query-core@​5.87.1
  • @​tanstack/query-async-storage-persister@​5.87.1
  • @​tanstack/query-broadcast-client-experimental@​5.87.1
  • @​tanstack/query-persist-client-core@​5.87.1
  • @​tanstack/query-sync-storage-persister@​5.87.1
  • @​tanstack/react-query@​5.87.1
  • @​tanstack/react-query-devtools@​5.87.1
  • @​tanstack/react-query-persist-client@​5.87.1
  • @​tanstack/react-query-next-experimental@​5.87.1
  • @​tanstack/solid-query@​5.87.1
  • @​tanstack/solid-query-devtools@​5.87.1
  • @​tanstack/solid-query-persist-client@​5.87.1
  • @​tanstack/svelte-query@​5.87.1
  • @​tanstack/svelte-query-devtools@​5.87.1
  • @​tanstack/svelte-query-persist-client@​5.87.1
  • @​tanstack/vue-query@​5.87.1
  • @​tanstack/vue-query-devtools@​5.87.1
  • @​tanstack/angular-query-experimental@​5.87.1
  • @​tanstack/angular-query-devtools-experimental@​5.87.1

v5.87.0

Version 5.87.0 - 9/5/25, 11:55 AM

Changes

Feat

  • query-core: add timeoutManager to allow changing setTimeout/setInterval (#9612) (a0b96db) by @​justjake

Docs

  • angular-query: update Angular Zoneless doc (#9616) (2283633) by Arnoud

Packages

  • @​tanstack/query-async-storage-persister@​5.87.0
  • @​tanstack/query-core@​5.87.0
  • @​tanstack/query-persist-client-core@​5.87.0
  • @​tanstack/query-sync-storage-persister@​5.87.0

... (truncated)

Commits
  • bc2c87f release: v5.87.1
  • b43af57 release: v5.87.0
  • 1599bb4 release: v5.86.0
  • 43049c5 test(react-query/useMutationState): clarify assertions and improve code forma...
  • 7306474 chore(tsconfig.json): simplify 'include' patterns by consolidating file exten...
  • 0a35234 release: v5.85.9
  • 564a4f6 fix(query-core): ensure combine re-executes after cache restoration with memo...
  • 5221029 test(react-query/HydrationBoundary): add tests for 'non-object' state and mis...
  • aec19c9 release: v5.85.8
  • c44ca47 ci: apply automated fixes
  • Additional commits viewable in compare view

Updates framer-motion from 11.18.2 to 12.23.12

Changelog

Sourced from framer-motion's changelog.

[12.23.12] 2025-07-29

Added

  • Exporting internal APIs for use in view animations.

[12.23.11] 2025-07-28

Added

  • Children of variants with delayChildren: stagger() will now be staggered correctly alongside their newly-entering siblings.

[12.23.10] 2025-07-28

Fixed

  • Fixed shared layout animation in situations where no motion components have re-rendered between shared element switching.

[12.23.9] 2025-07-24

Changed

  • Removing redundant renderRequest MotionValue lifecycle.

[12.23.8] 2025-07-24

Fixed

  • Ensuring that when an animation is skipped via duration = 0 that we also set type = "keyframes" so that duration takes effect.

[12.23.7] 2025-07-23

Fixed

  • springValue cleanup.
  • Removed additional removeNode from AnimatePresence when using popLayout.

[12.23.6] 2025-07-11

Changed

  • Added explainer for reduced motion warning.
  • Refactored motion component creation to remove indirection.

[12.23.5] 2025-07-11

Fixed

  • Fix animation timings within dynamically-generated popups.

... (truncated)

Commits

Updates lucide-react from 0.535.0 to 0.543.0

Release notes

Sourced from lucide-react's releases.

Version 0.543.0

What's Changed

Full Changelog: lucide-icons/lucide@0.542.0...0.543.0

Version 0.542.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.541.0...0.542.0

Version 0.541.0

What's Changed

Full Changelog: lucide-icons/lucide@0.540.0...0.541.0

Version 0.540.0

What's Changed

... (truncated)

Commits

Updates mathjs from 14.6.0 to 14.7.0

Changelog

Sourced from mathjs's changelog.

2025-09-05, 14.7.0

  • Feat: faster DenseMatrix symbol iterator (#3521). Thanks @​dvd101x.
  • Feat: implement serialization support for Parser, fixing #3509 (#3525).
  • Fix: #3519, #3368 categories "Core functions" and "Construction functions" missing from the generated function overview.
  • Fix: #3517 printTransformDependencies not exported in the type definitions.
  • Fix: add missing type definition for function diff (#3520). Thanks @​dodokw.
  • Fix: #3396 improve documentation of function range.
  • Fix: #3523 cleanup old polyfills from the browser bundle by removing core-js (#3524).
Commits
  • d8a88a1 chore: publish v14.7.0
  • 8ba2c18 chore: update devDependencies
  • 12b29d4 chore: update HISTORY.md
  • 69b991f fix: #3523 cleanup old polyfills from the browser bundle by removing `core-js...
  • a4815d5 feat: implement serialization support for Parser (fixes #3509) (#3525)
  • a7f2da0 fix: #3396 improve documentation of function range
  • c7705cd chore: fix test:node not running *.test.cjs files
  • 5e73e3c chore: update HISTORY.md
  • df8d098 fix: add missing type definition for function diff (#3520). Thanks @​dodokw.
  • 2e07821 chore: remove dtslint (this package has been deprecated)
  • Additional commits viewable in compare view

Updates react-day-picker from 9.8.1 to 9.9.0

Release notes

Sourced from react-day-picker's releases.

v9.9.0

This release includes a new reverseYears prop, a range selection fix, and a build update to fix issues with source maps.

Reversing the Years in the Dropdown

When using captionLayout='dropdown', set reverseYears to reverse the years listed in the dropdown: the most recent year will appear first.

<DayPicker captionLayout="dropdown" reverseYears />

See it in action in the playground.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.8.1...v9.9.0

Commits
  • c85ad96 build: bump v9.9.0
  • 90f7e9a feat: add new reverseYears prop (#2822)
  • 7f2ce05 build: upgrade dependencies (#2823)
  • bb633ea docs: fix styling for code blocks
  • 67f8e42 docs: remove note about shadcn/ui
  • f43f31e fix: select the same day in range mode when range is open and min prop is 0 (...
  • 63aa7a2 docs: update CustomDayButton example and clarify custom components doc (#2815)
  • 9c7b2c6 build: remove source maps, src from package (#2812)
  • 6089e62 repo: add prettier dependency and update biome config (#2811)
  • d629b75 repo: update biome.json to lint website (#2807)
  • Additional commits viewable in compare view

Updates react-resizable-panels from 2.1.9 to 3.0.5

Release notes

Sourced from react-resizable-panels's releases.

3.0.3

  • #492: Fix compatibility with Cloudflare workers

3.0.2

  • Fallback for type of HTMLElement to better support portal edge cases

3.0.1

  • #479: Improve support for Cloudflare Workers and Vercel Functions
  • #480: Fixed package.json#types reference

3.0.0

  • #478: Module is ESM-only in order to better work with modern tooling.
  • #475: "pointerup" and "pointercancel" listeners are now attached to the ownerDocument body to better support edge cases like portals being rendered into a child window.
Commits

Updates react-router-dom from 6.30.1 to 7.8.2

Release notes

Sourced from react-router-dom's releases.

v7.1.3

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v713

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10
Changelog

Sourced from react-router-dom's changelog.

7.8.2

Patch Changes

  • Updated dependencies:
    • react-router@7.8.2

7.8.1

Patch Changes

  • Updated dependencies:
    • react-router@7.8.1

7.8.0

Patch Changes

  • Updated dependencies:
    • react-router@7.8.0

7.7.1

Patch Changes

  • Updated dependencies:
    • react-router@7.7.1

7.7.0

Patch Changes

  • Updated dependencies:
    • react-router@7.7.0

7.6.3

Patch Changes

  • Updated dependencies:
    • react-router@7.6.3

7.6.2

Patch Changes

  • Updated dependencies:
    • react-router@7.6.2

7.6.1

... (truncated)

Commits

Updates recharts from 2.15.4 to 3.2.0

Release notes

Sourced from recharts's releases.

v3.2.0

What's Changed

Quite a bit of 3.0 bug fixes in this release along with two new hooks. Thanks to all who've been reporting issues!

Feat

Hooks

Fix

  • Bar: fix unnecessary line breaks in Bar labels by @​eino ...

    Description has been truncated

…y with 34 updates

Bumps the production-dependencies group with 32 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `3.10.0` | `5.2.1` |
| [@radix-ui/react-accordion](https://github.com/radix-ui/primitives) | `1.2.11` | `1.2.12` |
| [@radix-ui/react-alert-dialog](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
| [@radix-ui/react-checkbox](https://github.com/radix-ui/primitives) | `1.3.2` | `1.3.3` |
| [@radix-ui/react-hover-card](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
| [@radix-ui/react-menubar](https://github.com/radix-ui/primitives) | `1.1.15` | `1.1.16` |
| [@radix-ui/react-navigation-menu](https://github.com/radix-ui/primitives) | `1.2.13` | `1.2.14` |
| [@radix-ui/react-popover](https://github.com/radix-ui/primitives) | `1.1.14` | `1.1.15` |
| [@radix-ui/react-radio-group](https://github.com/radix-ui/primitives) | `1.3.7` | `1.3.8` |
| [@radix-ui/react-scroll-area](https://github.com/radix-ui/primitives) | `1.2.9` | `1.2.10` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives) | `2.2.5` | `2.2.6` |
| [@radix-ui/react-slider](https://github.com/radix-ui/primitives) | `1.3.5` | `1.3.6` |
| [@radix-ui/react-switch](https://github.com/radix-ui/primitives) | `1.2.5` | `1.2.6` |
| [@radix-ui/react-tabs](https://github.com/radix-ui/primitives) | `1.1.12` | `1.1.13` |
| [@radix-ui/react-toast](https://github.com/radix-ui/primitives) | `1.2.14` | `1.2.15` |
| [@radix-ui/react-toggle](https://github.com/radix-ui/primitives) | `1.1.9` | `1.1.10` |
| [@radix-ui/react-toggle-group](https://github.com/radix-ui/primitives) | `1.1.10` | `1.1.11` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives) | `1.2.7` | `1.2.8` |
| [@stripe/react-stripe-js](https://github.com/stripe/react-stripe-js) | `2.9.0` | `4.0.2` |
| [@stripe/stripe-js](https://github.com/stripe/stripe-js) | `4.10.0` | `7.9.0` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js) | `2.54.0` | `2.57.4` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.84.2` | `5.87.1` |
| [framer-motion](https://github.com/motiondivision/motion) | `11.18.2` | `12.23.12` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.535.0` | `0.543.0` |
| [mathjs](https://github.com/josdejong/mathjs) | `14.6.0` | `14.7.0` |
| [react-day-picker](https://github.com/gpbl/react-day-picker) | `9.8.1` | `9.9.0` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `2.1.9` | `3.0.5` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.1` | `7.8.2` |
| [recharts](https://github.com/recharts/recharts) | `2.15.4` | `3.2.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.6.0` | `3.3.1` |
| [vaul](https://github.com/emilkowalski/vaul) | `0.9.9` | `1.1.2` |
| [zod](https://github.com/colinhacks/zod) | `3.25.76` | `4.1.5` |



Updates `@hookform/resolvers` from 3.10.0 to 5.2.1
- [Release notes](https://github.com/react-hook-form/resolvers/releases)
- [Commits](react-hook-form/resolvers@v3.10.0...v5.2.1)

Updates `@radix-ui/react-accordion` from 1.2.11 to 1.2.12
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-alert-dialog` from 1.1.14 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-checkbox` from 1.3.2 to 1.3.3
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-collapsible` from 1.1.11 to 1.1.12
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-dialog` from 1.1.14 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-hover-card` from 1.1.14 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-menubar` from 1.1.15 to 1.1.16
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-navigation-menu` from 1.2.13 to 1.2.14
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-popover` from 1.1.14 to 1.1.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-radio-group` from 1.3.7 to 1.3.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-scroll-area` from 1.2.9 to 1.2.10
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-select` from 2.2.5 to 2.2.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-slider` from 1.3.5 to 1.3.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-switch` from 1.2.5 to 1.2.6
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tabs` from 1.1.12 to 1.1.13
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-toast` from 1.2.14 to 1.2.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-toggle` from 1.1.9 to 1.1.10
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-toggle-group` from 1.1.10 to 1.1.11
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@radix-ui/react-tooltip` from 1.2.7 to 1.2.8
- [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md)
- [Commits](https://github.com/radix-ui/primitives/commits)

Updates `@stripe/react-stripe-js` from 2.9.0 to 4.0.2
- [Release notes](https://github.com/stripe/react-stripe-js/releases)
- [Changelog](https://github.com/stripe/react-stripe-js/blob/master/CHANGELOG.md)
- [Commits](stripe/react-stripe-js@v2.9.0...v4.0.2)

Updates `@stripe/stripe-js` from 4.10.0 to 7.9.0
- [Release notes](https://github.com/stripe/stripe-js/releases)
- [Commits](stripe/stripe-js@v4.10.0...v7.9.0)

Updates `@supabase/supabase-js` from 2.54.0 to 2.57.4
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/RELEASE.md)
- [Commits](supabase/supabase-js@v2.54.0...v2.57.4)

Updates `@tanstack/react-query` from 5.84.2 to 5.87.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.87.1/packages/react-query)

Updates `framer-motion` from 11.18.2 to 12.23.12
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v11.18.2...v12.23.12)

Updates `lucide-react` from 0.535.0 to 0.543.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.543.0/packages/lucide-react)

Updates `mathjs` from 14.6.0 to 14.7.0
- [Changelog](https://github.com/josdejong/mathjs/blob/develop/HISTORY.md)
- [Commits](josdejong/mathjs@v14.6.0...v14.7.0)

Updates `react-day-picker` from 9.8.1 to 9.9.0
- [Release notes](https://github.com/gpbl/react-day-picker/releases)
- [Changelog](https://github.com/gpbl/react-day-picker/blob/main/CHANGELOG.md)
- [Commits](gpbl/react-day-picker@v9.8.1...v9.9.0)

Updates `react-resizable-panels` from 2.1.9 to 3.0.5
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Commits](bvaughn/react-resizable-panels@2.1.9...3.0.5)

Updates `react-router-dom` from 6.30.1 to 7.8.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.8.2/packages/react-router-dom)

Updates `recharts` from 2.15.4 to 3.2.0
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
- [Commits](recharts/recharts@v2.15.4...v3.2.0)

Updates `tailwind-merge` from 2.6.0 to 3.3.1
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.6.0...v3.3.1)

Updates `vaul` from 0.9.9 to 1.1.2
- [Release notes](https://github.com/emilkowalski/vaul/releases)
- [Commits](https://github.com/emilkowalski/vaul/commits/v1.1.2)

Updates `zod` from 3.25.76 to 4.1.5
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.76...v4.1.5)

---
updated-dependencies:
- dependency-name: "@hookform/resolvers"
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-accordion"
  dependency-version: 1.2.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-alert-dialog"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-checkbox"
  dependency-version: 1.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-collapsible"
  dependency-version: 1.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-dialog"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-hover-card"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-menubar"
  dependency-version: 1.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-navigation-menu"
  dependency-version: 1.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-popover"
  dependency-version: 1.1.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-radio-group"
  dependency-version: 1.3.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-scroll-area"
  dependency-version: 1.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-select"
  dependency-version: 2.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-slider"
  dependency-version: 1.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-switch"
  dependency-version: 1.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-tabs"
  dependency-version: 1.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-toast"
  dependency-version: 1.2.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-toggle"
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-toggle-group"
  dependency-version: 1.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@radix-ui/react-tooltip"
  dependency-version: 1.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@stripe/react-stripe-js"
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@stripe/stripe-js"
  dependency-version: 7.9.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@supabase/supabase-js"
  dependency-version: 2.57.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.87.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: framer-motion
  dependency-version: 12.23.12
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 0.543.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: mathjs
  dependency-version: 14.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-day-picker
  dependency-version: 9.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-resizable-panels
  dependency-version: 3.0.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-router-dom
  dependency-version: 7.8.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: recharts
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: tailwind-merge
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: vaul
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: zod
  dependency-version: 4.1.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file npm labels Sep 10, 2025
@netlify
Copy link

netlify bot commented Sep 10, 2025

Deploy Preview for gridfinity-drawer-planner ready!

Name Link
🔨 Latest commit 6782aa8
🔍 Latest deploy log https://app.netlify.com/projects/gridfinity-drawer-planner/deploys/68c0f0f4d078c10008d65ace
😎 Deploy Preview https://deploy-preview-44--gridfinity-drawer-planner.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@github-actions
Copy link

PR Quality Report 📊

Check Status
TypeScript
ESLint
Tests
Build

View detailed results

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 10, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Sep 10, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-5b9db37a48 branch September 10, 2025 04:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file npm

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant