Skip to content

Bump the minor-and-patch group across 1 directory with 19 updates#9

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/minor-and-patch-08c1f75cee
Open

Bump the minor-and-patch group across 1 directory with 19 updates#9
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/minor-and-patch-08c1f75cee

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 9, 2026

Bumps the minor-and-patch group with 18 updates in the / directory:

Package From To
@ai-sdk/google 3.0.29 3.0.43
@sentry/nextjs 10.39.0 10.42.0
@stripe/stripe-js 8.7.0 8.9.0
ai 6.0.86 6.0.116
firebase 12.9.0 12.10.0
firebase-admin 13.6.1 13.7.0
framer-motion 12.34.0 12.35.2
lucide-react 0.563.0 0.577.0
react 19.2.3 19.2.4
@types/react 19.2.13 19.2.14
react-day-picker 9.13.2 9.14.0
react-dom 19.2.3 19.2.4
react-hook-form 7.71.1 7.71.2
react-resizable-panels 4.6.4 4.7.2
stripe 20.3.1 20.4.1
tailwind-merge 3.4.0 3.5.0
@tailwindcss/postcss 4.1.18 4.2.1
lint-staged 16.2.7 16.3.2

Updates @ai-sdk/google from 3.0.29 to 3.0.43

Commits

Updates @sentry/nextjs from 10.39.0 to 10.42.0

Release notes

Sourced from @​sentry/nextjs's releases.

10.42.0

  • feat(consola): Enhance Consola integration to extract first-param object as searchable attributes (#19534)
  • fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • fix(core): Do not remove promiseBuffer entirely (#19592)
  • fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • fix(react-router): Set correct transaction name when navigating with object argument (#19590)
  • ref(nuxt): Use addVitePlugin instead of deprecated vite:extendConfig (#19464)
  • chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#19594)
  • ci(deps): bump actions/checkout from 4 to 6 (#19570)

Bundle size 📦

Path Size
@​sentry/browser 25.02 KB
@​sentry/browser - with treeshaking flags 23.57 KB
@​sentry/browser (incl. Tracing) 41.44 KB
@​sentry/browser (incl. Tracing, Profiling) 45.99 KB
@​sentry/browser (incl. Tracing, Replay) 79.35 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 69.21 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 83.93 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 95.91 KB
@​sentry/browser (incl. Feedback) 41.44 KB
@​sentry/browser (incl. sendFeedback) 29.58 KB
@​sentry/browser (incl. FeedbackAsync) 34.52 KB
@​sentry/browser (incl. Metrics) 26.17 KB
@​sentry/browser (incl. Logs) 26.31 KB
@​sentry/browser (incl. Metrics & Logs) 26.96 KB
@​sentry/react 26.74 KB
@​sentry/react (incl. Tracing) 43.72 KB
@​sentry/vue 29.37 KB
@​sentry/vue (incl. Tracing) 43.26 KB
@​sentry/svelte 25.05 KB
CDN Bundle 27.51 KB
CDN Bundle (incl. Tracing) 42.25 KB
CDN Bundle (incl. Logs, Metrics) 28.33 KB
CDN Bundle (incl. Tracing, Logs, Metrics) 43.07 KB
CDN Bundle (incl. Replay, Logs, Metrics) 66.49 KB
CDN Bundle (incl. Tracing, Replay) 78.26 KB
CDN Bundle (incl. Tracing, Replay, Logs, Metrics) 79.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 83.65 KB
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) 84.5 KB
CDN Bundle - uncompressed 80.42 KB

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

10.42.0

  • feat(consola): Enhance Consola integration to extract first-param object as searchable attributes (#19534)
  • fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • fix(core): Do not remove promiseBuffer entirely (#19592)
  • fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • fix(react-router): Set correct transaction name when navigating with object argument (#19590)
  • ref(nuxt): Use addVitePlugin instead of deprecated vite:extendConfig (#19464)
  • chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#19594)
  • ci(deps): bump actions/checkout from 4 to 6 (#19570)

10.41.0

Important Changes

  • feat(core,cloudflare,deno): Add instrumentPostgresJsSql instrumentation (#19566)

    Added a new instrumentation helper for the postgres (postgres.js) library, designed for SDKs that are not based on OpenTelemetry (e.g. Cloudflare, Deno). This wraps a postgres.js sql tagged template instance so that all queries automatically create Sentry spans.

    import postgres from 'postgres';
    import * as Sentry from '@sentry/cloudflare'; // or '@sentry/deno'
    export default Sentry.withSentry(env => ({ dsn: 'DSN' }), {
    async fetch(request, env, ctx) {
    const sql = Sentry.instrumentPostgresJsSql(postgres(env.DATABASE_URL));
    // All queries now create Sentry spans
    const users = await sql`SELECT * FROM users WHERE id = ${userId}`;
    return Response.json(users);
    
    },
    });

    The instrumentation is available in @sentry/core, @sentry/cloudflare, and @sentry/deno.

  • feat(nextjs): Add Turbopack support for thirdPartyErrorFilterIntegration (#19542)

    We added experimental support for the thirdPartyErrorFilterIntegration with Turbopack builds.

    This feature requires Next.js 16+ and is currently behind an experimental flag:

... (truncated)

Commits
  • 07c9190 release: 10.42.0
  • 193a78d Merge pull request #19601 from getsentry/prepare-release/10.42.0
  • 8738f9b meta(changelog): Update changelog for 10.42.0
  • f870073 fix(astro): Do not inject withSentry into Cloudflare Pages (#19558)
  • 552187d chore(deps): Bump @​sveltejs/kit to 2.53.3 in sveltekit-2-svelte-5 E2E test (#...
  • 1ffba2c fix(core): Do not remove promiseBuffer entirely (#19592)
  • 4a7c056 fix(react-router): Set correct transaction name when navigating with object a...
  • 003e894 ci(deps): bump actions/checkout from 4 to 6 (#19570)
  • 5d4c0eb chore(deps-dev): bump @​sveltejs/kit from 2.52.2 to 2.53.3 (#19571)
  • 116c3f3 fix(deps): Bump fast-xml-parser to 4.5.4 for CVE-2026-25896 (#19588)
  • Additional commits viewable in compare view

Updates @stripe/stripe-js from 8.7.0 to 8.9.0

Release notes

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

v8.9.0

New features

  • Add types for new Payment Form Element method & change event values 👾 (#878)
  • Add buttonColorText and buttonColorBackground Appearance API vars (#876)

Changed

  • Bump minimatch from 3.1.2 to 3.1.5 in /examples/rollup (#884)
  • Bump minimatch from 3.1.2 to 3.1.5 in /examples/parcel (#882)
  • Bump rollup from 2.79.2 to 2.80.0 (#881)

v8.8.0

Fixes

  • add confirmAmazonPaySetup to the types (#874)
  • Add optional savePaymentMethod property to value (#873)
  • publish: preflight hub auth before tagging (#866)

Changed

  • Update Payment Form types (#875)
  • Add Enums to options.layout.radios (#868)
  • Use more specific types for tax ID (#872)
  • Add lk_vat to tax id types (#871)
  • add paymentFormConfirmEvent to confirm args type (#867)
  • Bump lodash from 4.17.21 to 4.17.23 in /examples/rollup (#858)
Commits
  • e082e40 v8.9.0
  • 6beb2e3 Bump minimatch from 3.1.2 to 3.1.5 in /examples/rollup (#884)
  • a607fba Bump minimatch from 3.1.2 to 3.1.5 in /examples/parcel (#882)
  • 7ccd407 Bump rollup from 2.79.2 to 2.80.0 (#881)
  • 870e250 Add types for new Payment Form Element method & change event values 👾 (#878)
  • 7789da9 Add buttonColorText and buttonColorBackground Appearance API vars (#876)
  • ba1019a v8.8.0
  • 7247d4c add confirmAmazonPaySetup to the types (#874)
  • 5039102 Update Payment Form types (#875)
  • 3ab6635 Add Enums to options.layout.radios (#868)
  • Additional commits viewable in compare view

Updates ai from 6.0.86 to 6.0.116

Release notes

Sourced from ai's releases.

ai@6.0.116

Patch Changes

  • ad4cfc2: Add URL validation to downloadBlob and download to prevent blind SSRF attacks. Private/internal IP addresses, localhost, and non-HTTP protocols are now rejected before fetching.
  • Updated dependencies [ad4cfc2]
    • @​ai-sdk/provider-utils@​4.0.19
    • @​ai-sdk/gateway@​3.0.66

ai@6.0.115

Patch Changes

  • Updated dependencies [824b295]
    • @​ai-sdk/provider-utils@​4.0.18
    • @​ai-sdk/gateway@​3.0.65
Commits

Updates firebase from 12.9.0 to 12.10.0

Release notes

Sourced from firebase's releases.

firebase@12.10.0

For more detailed release notes, see Firebase JavaScript SDK Release Notes.

What's Changed

@​firebase/ai@​2.9.0

Minor Changes

  • 47f8521 #9489 - Added automatic function calling capability when using ChatSession.

Patch Changes

  • Updated dependencies [eebba69]:
  • @​firebase/util@​1.14.0
  • @​firebase/component@​0.7.1

@​firebase/data-connect@​0.4.0

Minor Changes

  • eebba69 #9439 - Add Memory-Based caching to Queries in Firebase Data Connect.

Patch Changes

  • Updated dependencies [eebba69]:
  • @​firebase/util@​1.14.0
  • @​firebase/component@​0.7.1

firebase@12.10.0

Minor Changes

  • 14d9745 #9483 - Support added for mapSet, mapValues, mapEntries, mapKeys Pipelines expressions.

  • 47f8521 #9489 - Added automatic function calling capability when using ChatSession.

  • f8996c4 #9479 - Support added for the following string Pipeline expressions: stringRepeat, stringReplaceOne, stringReplaceAll, stringIndexOf, ltrim, rtrim.

  • eebba69 #9439 - Add Memory-Based caching to Queries in Firebase Data Connect.

  • 659d9bb #9576 - Add support for first, last, array_agg and array_agg_distinct expressions

  • 852162b #9498 - Add support for rand and trunc pipeline expressions

  • 6041509 #9484 - feat(firestore): Support added for the isType Pipeline expression.

Patch Changes

... (truncated)

Commits
  • 291851c Version Packages (#9591)
  • 115bd08 Merge main into release
  • 14d9745 feat(firestore): add support for remaining map pipeline expressions (#9483)
  • 887fc51 chore: Migrate gsutil usage instructions to gcloud storage (#9589)
  • eebba69 feat(data-connect): Caching for FDC (#9439)
  • 6041509 feat(firestore): add isType expression (#9484)
  • 659d9bb feat(firestore): add accumulators expressions (#9576)
  • 852162b feat(firestore): add rand and trunc expressions (#9498)
  • f8996c4 feat(firestore): add string pipeline expressions (#9479)
  • f126686 fix(deps): update dependency @​rushstack/node-core-library to v5 (#8816)
  • Additional commits viewable in compare view

Updates firebase-admin from 13.6.1 to 13.7.0

Release notes

Sourced from firebase-admin's releases.

Firebase Admin Node.js SDK v13.7.0

New Features

  • feat(rc): Support Rollout, Personalization, and Experiment values (#3046)

Bug Fixes

  • fix: upgrade @​google-cloud/storage@​7.19.0 (#3071)

Miscellaneous

  • [chore] Release 13.7.0 (#3081)
  • build(deps-dev): bump @​types/lodash from 4.17.18 to 4.17.24 (#3083)
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin (#3086)
  • build(deps): bump node-forge from 1.3.2 to 1.3.3 (#3085)
  • build(deps): bump google-auth-library from 9.15.1 to 10.6.1 (#3084)
  • build(deps): bump @​types/node from 22.10.2 to 25.2.0 (#3064)
  • chore: Deprecate Node.js 18 support (#3079)
  • chore: upgrade @​types/node to v25.2.0 and fix type compatibility (#3078)
  • build(deps): bump ajv in /.github/actions/send-tweet (#3074)
  • build(deps): bump fast-xml-parser from 5.3.5 to 5.3.7 (#3077)
  • build(deps-dev): bump @​microsoft/api-extractor from 7.52.10 to 7.56.2 (#3066)
  • build(deps): bump axios in /.github/actions/send-email (#3070)
Commits
  • 2279070 [chore] Release 13.7.0 (#3081)
  • 0da27af build(deps-dev): bump @​types/lodash from 4.17.18 to 4.17.24 (#3083)
  • 64b7755 build(deps-dev): bump @​typescript-eslint/eslint-plugin (#3086)
  • ca0a2d2 build(deps): bump node-forge from 1.3.2 to 1.3.3 (#3085)
  • 189f0ee build(deps): bump google-auth-library from 9.15.1 to 10.6.1 (#3084)
  • 9c4261e build(deps): bump @​types/node from 22.10.2 to 25.2.0 (#3064)
  • 0f29113 chore: Deprecate Node.js 18 support (#3079)
  • ccddfe1 chore: upgrade @​types/node to v25.2.0 and fix type compatibility (#3078)
  • 9327311 build(deps): bump ajv in /.github/actions/send-tweet (#3074)
  • 24e52eb build(deps): bump fast-xml-parser from 5.3.5 to 5.3.7 (#3077)
  • Additional commits viewable in compare view

Updates framer-motion from 12.34.0 to 12.35.2

Changelog

Sourced from framer-motion's changelog.

[12.35.2] 2026-03-09

Fixed

  • Reduced filesize of styleEffect.
  • Fix rounding from popLayout.
  • opacity animations in React Strict Mode in development.
  • Ensure useSpring is not affected by monitor framerate.
  • Updating animations sequence segment types to exclude lifecycle handlers.
  • Fix layout animations with parents offset by a %-based translation.
  • Fix autoplay: false with WAAPI animations.
  • Fix layout jump in React Strict Mode in development.
  • Detect divide-by-zero in CSS calc() values before making animatable templates.

[12.35.1] 2026-03-06

Fixed

  • Fixing combination of string keyframes, spring and delay.
  • Gracefully handle negative scroll values.
  • Fix one-frame visual gap when rapidly switching WAAPI animations.
  • animation.time = 0 on a finished animation sets the playhead in a paused state.

[12.35.0] 2026-03-03

Added

  • ViewTimeline support for scroll and useScroll.

[12.34.6] 2026-03-03

Fixed

  • Handle % translate values in layout animations.

[12.34.5] 2026-03-03

Fixed

  • Ensure final WAAPI styles are always committed synchronously to prevent flash of incorrect styles in Firefox.
  • Prevent Next.js from caching typeof window checks.
  • Improve projection node cleanup.
  • Variant propagation fixed for asynchronously-mounted children.

[12.34.4] 2026-03-02

Fixed

  • Ensure onComplete fires at the end of an animation sequence.

... (truncated)

Commits
  • 2034efc v12.35.2
  • 9f080ca Updating changelog
  • 31dd9bd Latest
  • da23762 Merge pull request #3602 from motiondivision/worktree-fix-issue-3232
  • 80b321e Merge pull request #3599 from motiondivision/worktree-fix-issue-3244
  • 4e5e0ae Merge pull request #3600 from motiondivision/worktree-fix-issue-3236
  • 16b83b4 Merge branch 'main' into worktree-fix-issue-3236
  • f4adc2e Extract convertToZero to module level with documentation
  • b793fc0 Merge pull request #3598 from motiondivision/worktree-fix-issue-3254
  • e787956 Simplify transformBox and add comment for percentage re-measurement
  • Additional commits viewable in compare view

Updates lucide-react from 0.563.0 to 0.577.0

Release notes

Sourced from lucide-react's releases.

Version 0.577.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.576.0...0.577.0

Version 0.576.0

What's Changed

Full Changelog: lucide-icons/lucide@0.575.0...0.576.0

Version 0.575.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.573.0...0.575.0

Version 0.574.0

What's Changed

New Contributors

... (truncated)

Commits

Updates react from 19.2.3 to 19.2.4

Release notes

Sourced from react's releases.

19.2.4 (January 26th, 2026)

React Server Components

Commits

Updates @types/react from 19.2.13 to 19.2.14

Commits

Updates react-day-picker from 9.13.2 to 9.14.0

Release notes

Sourced from react-day-picker's releases.

v9.14.0

This release introduces a new resetOnSelect prop and adds support for the Hijri calendar.

Resetting Selections in Range Mode

When in range selection mode, use the new resetOnSelect prop to start a new range when a full range is already selected.

Hijri Calendar

To use the Hijri (Umm al-Qura) calendar, import DayPicker from react-day-picker/hijri:

import { DayPicker } from "react-day-picker/hijri";
export function HijriCalendar() {
return <DayPicker />;
}

Read more in the documentation and play with it in playground.

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.13.2...v9.14.0

Changelog

Sourced from react-day-picker's changelog.

v9.14.0

Release date: 2026-02-26

This release introduces a new resetOnSelect prop and adds support for the Hijri calendar.

Resetting Selections in Range Mode

When in range selection mode, use the resetOnSelect prop to start a new range when a full range is already selected.

Hijri Calendar

To use the Hijri (Umm al-Qura) calendar, import DayPicker from react-day-picker/hijri:

import { DayPicker } from "react-day-picker/hijri";
export function HijriCalendar() {
return <DayPicker />;
}

Read more in the documentation and play with it in playground.

What's Changed

  • feat: add Hijri calendar support (Umm al-Qura) by @​ws-rush in #2904
  • feat: add resetOnSelect prop to reset date range when selecting date with completed range by @​rodgobbi in #2906
  • feat: add default lang prop to DayPicker root element by @​gpbl in #2907
Commits
  • a5b0c43 Prepare 9.14.0 package metadata
  • 758f604 feat: add lang attribute to DayPicker root (#2907)
  • 0893c96 feat: New resetOnSelect prop to reset date range when selecting date with com...
  • 8e69eb1 feat: Add Hijri calendar support (Umm al-Qura) (#2904)
  • 091ca6f chore: remove performance-tests project (#2902)
  • 6df3193 chore: update workspace dependencies (#2901)
  • 5208d3f chore: update workspace dependencies (#2900)
  • See full diff in compare view

Updates react-dom from 19.2.3 to 19.2.4

Release notes

Sourced from react-dom's releases.

19.2.4 (January 26th, 2026)

React Server Components

Commits

Updates react-hook-form from 7.71.1 to 7.71.2

Release notes

Sourced from react-hook-form's releases.

Version 7.71.2

🕵️‍♂️ fix: use DeepPartialSkipArrayKey for WatchObserver value parameter (#13278) 🧹 fix(clearErrors): emit name signal for targeted field updates (#13280)

thanks to @​veeceey, @​kaigritun, @​pgoslatara & @​seongbiny

Commits
  • 85684f9 7.71.2
  • 4933dcc 🧹 fix(clearErrors): emit name signal for targeted field updates (#13280)
  • 319b3ed 🕵️‍♂️ fix: use DeepPartialSkipArrayKey for WatchObserver value parameter (#13...
  • 0e04ad3 🏋️‍♀️ chore: Update outdated GitHub Actions versions (#13274)
  • 3adba2b ✅ test: add unit tests for update utility (#13268)
  • See full diff in compare view

Updates react-resizable-panels from 4.6.4 to 4.7.2

Release notes

Sourced from react-resizable-panels's releases.

4.7.2

  • 683: Don't scroll separator when setting focus

4.7.1

  • 678: Change default overflow styles to support shadows

4.7.0

  • 677: Add groupResizeBehavior prop to Panel, enabling panels to retain their current size (pixels) size when the parent Group is resized.

4.6.5

  • 670: Check for undefined adoptedStyleSheets (to better support environments like jsdom)
  • 671: Bug-fix: Update in-memory layout cache when group is resized by double-clicking on a separator
Changelog

Sourced from react-resizable-panels's changelog.

4.7.2

  • 683: Don't scroll separator when setting focus

4.7.1

  • 678: Change default overflow styles to support shadows

4.7.0

  • 677: Add groupResizeBehavior prop to Panel, enabling panels to retain their current size (pixels) size when the parent Group is resized.

4.6.5

  • 670: Check for undefined adoptedStyleSheets (to better support environments like jsdom)
  • 671: Bug-fix: Update in-memory layout cache when group is resized by double-clicking on a separator
Commits

Bumps the minor-and-patch group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@ai-sdk/google](https://github.com/vercel/ai) | `3.0.29` | `3.0.43` |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.39.0` | `10.42.0` |
| [@stripe/stripe-js](https://github.com/stripe/stripe-js) | `8.7.0` | `8.9.0` |
| [ai](https://github.com/vercel/ai) | `6.0.86` | `6.0.116` |
| [firebase](https://github.com/firebase/firebase-js-sdk) | `12.9.0` | `12.10.0` |
| [firebase-admin](https://github.com/firebase/firebase-admin-node) | `13.6.1` | `13.7.0` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.34.0` | `12.35.2` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.563.0` | `0.577.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.3` | `19.2.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.13` | `19.2.14` |
| [react-day-picker](https://github.com/gpbl/react-day-picker) | `9.13.2` | `9.14.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.3` | `19.2.4` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.71.1` | `7.71.2` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `4.6.4` | `4.7.2` |
| [stripe](https://github.com/stripe/stripe-node) | `20.3.1` | `20.4.1` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.4.0` | `3.5.0` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.18` | `4.2.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.2.7` | `16.3.2` |



Updates `@ai-sdk/google` from 3.0.29 to 3.0.43
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/@ai-sdk/google@3.0.29...@ai-sdk/google@3.0.43)

Updates `@sentry/nextjs` from 10.39.0 to 10.42.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.39.0...10.42.0)

Updates `@stripe/stripe-js` from 8.7.0 to 8.9.0
- [Release notes](https://github.com/stripe/stripe-js/releases)
- [Commits](stripe/stripe-js@v8.7.0...v8.9.0)

Updates `ai` from 6.0.86 to 6.0.116
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/ai@6.0.86...ai@6.0.116)

Updates `firebase` from 12.9.0 to 12.10.0
- [Release notes](https://github.com/firebase/firebase-js-sdk/releases)
- [Changelog](https://github.com/firebase/firebase-js-sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/firebase/firebase-js-sdk/compare/firebase@12.9.0...firebase@12.10.0)

Updates `firebase-admin` from 13.6.1 to 13.7.0
- [Release notes](https://github.com/firebase/firebase-admin-node/releases)
- [Changelog](https://github.com/firebase/firebase-admin-node/blob/main/CHANGELOG.md)
- [Commits](firebase/firebase-admin-node@v13.6.1...v13.7.0)

Updates `framer-motion` from 12.34.0 to 12.35.2
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.34.0...v12.35.2)

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

Updates `react` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react)

Updates `@types/react` from 19.2.13 to 19.2.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-day-picker` from 9.13.2 to 9.14.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.13.2...v9.14.0)

Updates `react-dom` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom)

Updates `react-hook-form` from 7.71.1 to 7.71.2
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.71.1...v7.71.2)

Updates `react-resizable-panels` from 4.6.4 to 4.7.2
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md)
- [Commits](bvaughn/react-resizable-panels@4.6.4...4.7.2)

Updates `stripe` from 20.3.1 to 20.4.1
- [Release notes](https://github.com/stripe/stripe-node/releases)
- [Changelog](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md)
- [Commits](stripe/stripe-node@v20.3.1...v20.4.1)

Updates `tailwind-merge` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.4.0...v3.5.0)

Updates `@tailwindcss/postcss` from 4.1.18 to 4.2.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.1/packages/@tailwindcss-postcss)

Updates `@types/react` from 19.2.13 to 19.2.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `lint-staged` from 16.2.7 to 16.3.2
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.2.7...v16.3.2)

Updates `tailwindcss` from 4.1.18 to 4.2.1
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.2.1/packages/tailwindcss)

---
updated-dependencies:
- dependency-name: "@ai-sdk/google"
  dependency-version: 3.0.43
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@stripe/stripe-js"
  dependency-version: 8.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ai
  dependency-version: 6.0.116
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: firebase
  dependency-version: 12.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: firebase-admin
  dependency-version: 13.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: framer-motion
  dependency-version: 12.35.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: lucide-react
  dependency-version: 0.577.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-day-picker
  dependency-version: 9.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-hook-form
  dependency-version: 7.71.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-resizable-panels
  dependency-version: 4.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: stripe
  dependency-version: 20.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tailwind-merge
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: lint-staged
  dependency-version: 16.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-version: 4.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 9, 2026

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel
Copy link

vercel bot commented Mar 9, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
cookhub Error Error Mar 9, 2026 1:03pm

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.

0 participants