Skip to content

Bump the npm-dependencies group across 1 directory with 33 updates - #69

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-18a15c7615
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-18a15c7615

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown

Bumps the npm-dependencies group with 31 updates in the / directory:

Package From To
@base-ui/react 1.7.0 1.8.0
@clack/prompts 0.11.0 1.8.0
@shadcn/react 0.3.0 0.3.1
input-otp 1.4.2 1.5.0
lucide-react 0.468.0 1.44.0
react 19.2.7 19.3.0
@types/react 19.2.17 19.3.0
react-dom 19.2.7 19.3.0
@types/react-dom 19.2.3 19.3.0
react-resizable-panels 4.12.2 4.12.4
react-router-dom 7.18.2 7.18.3
recharts 3.8.0 3.10.1
sonner 2.0.7 2.0.8
zod 4.4.3 4.6.2
@cloudflare/vite-plugin 1.45.0 1.54.7
@tailwindcss/postcss 4.3.2 4.3.3
@types/node 22.19.19 26.5.1
@vercel/functions 3.7.5 3.9.7
@vitejs/plugin-react 6.0.3 6.1.1
@vitejs/plugin-rsc 0.5.27 0.5.34
eslint 9.39.5 10.10.0
eslint-config-next 16.2.10 16.3.4
mongodb 7.5.0 7.6.0
next 16.3.0-canary.87 16.3.4
nodemailer 9.0.4 10.0.3
react-server-dom-webpack 19.2.7 19.3.0
shadcn 4.16.2 4.21.0
tsx 4.23.1 4.23.13
typescript 5.9.3 7.0.2
vinext 0.0.50 0.2.1
vite 8.1.4 8.3.0

Updates @base-ui/react from 1.7.0 to 1.8.0

Release notes

Sourced from @​base-ui/react's releases.

v1.8.0

General changes

Alert Dialog

Autocomplete

Avatar

Checkbox

Checkbox Group

Combobox

... (truncated)

Changelog

Sourced from @​base-ui/react's changelog.

v1.8.0

Sep 4, 2026

General changes

Alert Dialog

Autocomplete

Avatar

Checkbox

Checkbox Group

Combobox

... (truncated)

Commits
  • 47b4052 [release] v1.8.0 (#5609)
  • dd13809 [toast] Accept an updater function in the update method instead of on data (#...
  • 670e95c [docs] Update docs infra to restore generated types (#5616)
  • e8526f7 [utils] Restore frozen EMPTY_ARRAY (#5620)
  • b7f6683 [number field] Preserve consumer selection when focusing the input (#5619)
  • b8c5d78 [context menu] Correct generated API metadata (#5523)
  • 261d699 [combobox][autocomplete] Document that items must not contain nullish entries...
  • 0a6ff44 [toast] Replace custom data wholesale and accept a function to derive it (#5611)
  • 2e1bddd [combobox][select] Make the multiple selection anchor lookup linear (#5613)
  • ad83c8a [code-infra] Run TypeScript 7 alongside the TS6 JS API (#5603)
  • Additional commits viewable in compare view

Updates @clack/prompts from 0.11.0 to 1.8.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​1.8.0

Minor Changes

  • #592 caa32e8 Thanks @​gameroman! - Export CANCEL_SYMBOL constant from @clack/core and @clack/prompts

  • #594 37fca4e Thanks @​dreyfus92! - Add tab-completion to the path prompt: pressing Tab fills the input with the focused suggestion, so you can quickly descend into deep directories (type / and Tab again). Powered by a new opt-in completeOnTab option on autocomplete, which also shows a Tab: complete hint in the instructions footer. Default autocomplete behavior is unchanged.

  • #583 ae636dd Thanks @​43081j! - Add async validation support to prompts, and validation state rendering to text prompts.

Patch Changes

@​clack/prompts@​1.7.0

Minor Changes

  • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

Patch Changes

@​clack/prompts@​1.6.0

Minor Changes

  • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

    If you want the old behavior, provide a format() function:

    import { note } from '@clack/prompts';
    +import { styleText } from 'node:util';
    note(
    'You can edit the file src/index.jsx',
    'Next steps.'
    
    { format: (text) => styleText('dim', text) }
    );
  • #567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

  • ... (truncated)

    Changelog

    Sourced from @​clack/prompts's changelog.

    1.8.0

    Minor Changes

    • #592 caa32e8 Thanks @​gameroman! - Export CANCEL_SYMBOL constant from @clack/core and @clack/prompts

    • #594 37fca4e Thanks @​dreyfus92! - Add tab-completion to the path prompt: pressing Tab fills the input with the focused suggestion, so you can quickly descend into deep directories (type / and Tab again). Powered by a new opt-in completeOnTab option on autocomplete, which also shows a Tab: complete hint in the instructions footer. Default autocomplete behavior is unchanged.

    • #583 ae636dd Thanks @​43081j! - Add async validation support to prompts, and validation state rendering to text prompts.

    Patch Changes

    1.7.0

    Minor Changes

    • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

    Patch Changes

    1.6.0

    Minor Changes

    • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

      If you want the old behavior, provide a format() function:

      import { note } from '@clack/prompts';
      +import { styleText } from 'node:util';
      note(
      'You can edit the file src/index.jsx',
      'Next steps.'
      
      { format: (text) => styleText('dim', text) }
      );

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for @​clack/prompts since your current version.


    Updates @shadcn/react from 0.3.0 to 0.3.1

    Release notes

    Sourced from @​shadcn/react's releases.

    @​shadcn/react@​0.3.1

    Patch Changes

    • #11720 503a3a57aec9a3817e37f90aa0817b1fabd284d0 Thanks @​shadcn! - Set data-pending-scroll on the MessageScroller root and viewport until defaultScrollPosition ("end" or "last-anchor") is applied, so the viewport can be hidden and a server-rendered transcript does not flash the top of the thread on reload.
    Changelog

    Sourced from @​shadcn/react's changelog.

    0.3.1

    Patch Changes

    • #11720 503a3a57aec9a3817e37f90aa0817b1fabd284d0 Thanks @​shadcn! - Set data-pending-scroll on the MessageScroller root and viewport until defaultScrollPosition ("end" or "last-anchor") is applied, so the viewport can be hidden and a server-rendered transcript does not flash the top of the thread on reload.
    Commits

    Updates input-otp from 1.4.2 to 1.5.0

    Release notes

    Sourced from input-otp's releases.

    v1.5.0

    Promotes the safe 1.5.0-beta.2 code without functional changes. Everything in this release is backwards-compatible: no public type changes and no behavior changes beyond the bug fixes below. Two beta.1 experiments are deliberately excluded — the iOS native-selection workaround (the thin native selection artifact remains a known cosmetic limitation) and the onComplete type narrowing, which returns in 2.0.0 as a documented breaking change.

    • fix(input): reserve the password manager badge gutter only where it fits
    • fix(input): disable spellcheck by default
    • fix(input): feature-detect ResizeObserver before observing
    • fix(input): use a 16px fallback until --root-height resolves, preventing iOS focus zoom
    • fix(input): clear pending synchronization timeouts on unmount
    • feat(input): add a nonce prop for Content-Security-Policy support
    • fix(input): guard the input reference used by the selectionchange listener
    • fix(input): opt the container out of browser translation
    • fix(input): report cosmetic CSS rule failures as warnings instead of errors
    • docs: document the stable iOS selection behavior and its cosmetic limitation

    Safe release candidate for 1.5.0. This release withdraws the experimental iOS native-selection workaround from 1.5.0-beta.1 after compatibility review. The edit menu, paste, typing, selection and focus behavior return to the proven 1.4.x implementation; the thin native selection artifact remains a known iOS limitation.

    It also withdraws the onComplete type narrowing from 1.5.0-beta.1. Although type-level only, it can fail compilation of existing handlers typed with extra or non-string parameters (a common example is passing react-hook-form's handleSubmit(onSubmit) directly), which makes it a breaking change under semver. It will return in 2.0.0 with a documented migration path.

    • revert(input): withdraw the experimental iOS native-selection workaround from 1.5.0-beta.1
    • revert(types): withdraw the onComplete narrowing from 1.5.0-beta.1, deferring it to 2.0.0
    • docs: align the mobile and edge-case documentation with the stable candidate
    • test: verify focus, typing, editing, deletion, paste, Select All → Paste and the native edit menu on iOS 18.0 and 26.5 simulators

    Deprecated experimental release. It introduced an iOS native-selection workaround that moved and scaled the underlying input, and narrowed the onComplete type in a way that can break compilation of existing apps. Both were withdrawn in 1.5.0-beta.2 and are not planned for 1.5.0 stable. Existing installs remain reproducible, but new beta users should use 1.5.0-beta.2 or later.

    Prepared but not published. Its safe changes are included in 1.5.0-beta.2.

    • fix(input): reserve the password manager badge gutter only where it fits
      • Once a badge was detected, the input grew 40px past the container to push the badge off the last slot — and the only guard was the distance to the viewport's right edge. Inside a constrained scroll container (a card, a modal) that overhang registered as scrollable overflow: a horizontal scrollbar appeared and shifted the whole layout. The space check now measures the nearest ancestor that constrains horizontal overflow (scroll containers, overflow: hidden/clip ancestors, the container itself, and the real viewport width) and skips the push when the gutter doesn't fit; the badge then stays over the last slot, exactly as with pushPasswordManagerStrategy="none". Nothing is ever clipped, so extensions keep rendering their badges.
    • fix(input): disable spellcheck by default
      • Browsers would mark a filled code as a spelling error and underline it. spellCheck now defaults to false; passing your own spellCheck prop still overrides it.
    • fix(input): feature-detect ResizeObserver before observing
      • Browsers without ResizeObserver (e.g. iOS Safari <13.4) crashed on mount. When the observer is unavailable, the root height is now simply measured once on mount.
    • fix(input): fall back to 16px font-size until --root-height resolves
      • Before the variable is set, the invisible input inherited its font-size — and when that inherited size was under 16px, iOS Safari zoomed the whole page on focus or back-navigation.
    • fix(input): clear pending sync timeouts on unmount
      • The autofill/selection sync timeouts could fire after unmount, causing state updates on an unmounted component — noisy act() warnings and flaky CI test runs.
    • feat(input): add nonce prop
      • Applied to the <style> tag the library injects, so a style-src Content-Security-Policy that requires nonces no longer blocks it.
    • fix(input): use the guarded input reference inside the selectionchange listener
      • Fixes a null is not an object (evaluating 'setSelectionRange') crash when the listener fired while the ref was already null.
    • fix(input): opt the container out of browser translation
      • Chrome's translator rewrote the slots' text nodes (wrapping them in <font> elements), crashing React on the next re-render — easiest to hit with alphanumeric codes under an active page translation. The container now carries translate="no"; a one-time code is never meaningful to translate.
    • fix(input): log CSS rule insertion failures as warnings, not errors
      • Some environments reject individual cosmetic selectors (:autofill in older Android WebViews, for instance). Nothing breaks when that happens, but the console.error was captured by Sentry and similar tools as if the application had failed. Same message, warning level.
    • chore(types): narrow onComplete to (value: string) => unknown

    ... (truncated)

    Changelog

    Sourced from input-otp's changelog.

    [1.5.0]

    Promotes the safe 1.5.0-beta.2 code without functional changes. Everything in this release is backwards-compatible: no public type changes and no behavior changes beyond the bug fixes below. Two beta.1 experiments are deliberately excluded — the iOS native-selection workaround (the thin native selection artifact remains a known cosmetic limitation) and the onComplete type narrowing, which returns in 2.0.0 as a documented breaking change.

    • fix(input): reserve the password manager badge gutter only where it fits
    • fix(input): disable spellcheck by default
    • fix(input): feature-detect ResizeObserver before observing
    • fix(input): use a 16px fallback until --root-height resolves, preventing iOS focus zoom
    • fix(input): clear pending synchronization timeouts on unmount
    • feat(input): add a nonce prop for Content-Security-Policy support
    • fix(input): guard the input reference used by the selectionchange listener
    • fix(input): opt the container out of browser translation
    • fix(input): report cosmetic CSS rule failures as warnings instead of errors
    • docs: document the stable iOS selection behavior and its cosmetic limitation

    [1.5.0-beta.2]

    Safe release candidate for 1.5.0. This release withdraws the experimental iOS native-selection workaround from 1.5.0-beta.1 after compatibility review. The edit menu, paste, typing, selection and focus behavior return to the proven 1.4.x implementation; the thin native selection artifact remains a known iOS limitation.

    It also withdraws the onComplete type narrowing from 1.5.0-beta.1. Although type-level only, it can fail compilation of existing handlers typed with extra or non-string parameters (a common example is passing react-hook-form's handleSubmit(onSubmit) directly), which makes it a breaking change under semver. It will return in 2.0.0 with a documented migration path.

    • revert(input): withdraw the experimental iOS native-selection workaround from 1.5.0-beta.1
    • revert(types): withdraw the onComplete narrowing from 1.5.0-beta.1, deferring it to 2.0.0
    • docs: align the mobile and edge-case documentation with the stable candidate
    • test: verify focus, typing, editing, deletion, paste, Select All → Paste and the native edit menu on iOS 18.0 and 26.5 simulators

    [1.5.0-beta.1]

    Deprecated experimental release. It introduced an iOS native-selection workaround that moved and scaled the underlying input, and narrowed the onComplete type in a way that can break compilation of existing apps. Both were withdrawn in 1.5.0-beta.2 and are not planned for 1.5.0 stable. Existing installs remain reproducible, but new beta users should use 1.5.0-beta.2 or later.

    [1.5.0-beta.0]

    Prepared but not published. Its safe changes are included in 1.5.0-beta.2.

    • fix(input): reserve the password manager badge gutter only where it fits
      • Once a badge was detected, the input grew 40px past the container to push the badge off the last slot — and the only guard was the distance to the viewport's right edge. Inside a constrained scroll container (a card, a modal) that overhang registered as scrollable overflow: a horizontal scrollbar appeared and shifted the whole layout. The space check now measures the nearest ancestor that constrains horizontal overflow (scroll containers, overflow: hidden/clip ancestors, the container itself, and the real viewport width) and skips the push when the gutter doesn't fit; the badge then stays over the last slot, exactly as with pushPasswordManagerStrategy="none". Nothing is ever clipped, so extensions keep rendering their badges.
    • fix(input): disable spellcheck by default
      • Browsers would mark a filled code as a spelling error and underline it. spellCheck now defaults to false; passing your own spellCheck prop still overrides it.
    • fix(input): feature-detect ResizeObserver before observing
      • Browsers without ResizeObserver (e.g. iOS Safari <13.4) crashed on mount. When the observer is unavailable, the root height is now simply measured once on mount.
    • fix(input): fall back to 16px font-size until --root-height resolves
      • Before the variable is set, the invisible input inherited its font-size — and when that inherited size was under 16px, iOS Safari zoomed the whole page on focus or back-navigation.
    • fix(input): clear pending sync timeouts on unmount
      • The autofill/selection sync timeouts could fire after unmount, causing state updates on an unmounted component — noisy act() warnings and flaky CI test runs.
    • feat(input): add nonce prop
      • Applied to the <style> tag the library injects, so a style-src Content-Security-Policy that requires nonces no longer blocks it.
    • fix(input): use the guarded input reference inside the selectionchange listener
      • Fixes a null is not an object (evaluating 'setSelectionRange') crash when the listener fired while the ref was already null.
    • fix(input): opt the container out of browser translation
      • Chrome's translator rewrote the slots' text nodes (wrapping them in <font> elements), crashing React on the next re-render — easiest to hit with alphanumeric codes under an active page translation. The container now carries translate="no"; a one-time code is never meaningful to translate.

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for input-otp since your current version.


    Updates lucide-react from 0.468.0 to 1.44.0

    Release notes

    Sourced from lucide-react's releases.

    Version 1.44.0

    What's Changed

    New Contributors

    Full Changelog: lucide-icons/lucide@1.43.0...1.44.0

    Version 1.43.0

    What's Changed

    Full Changelog: lucide-icons/lucide@1.42.0...1.43.0

    Version 1.42.0

    What's Changed

    New Contributors

    ... (truncated)

    Commits
    • 94e4cb9 chore(dependencies): Update dependencies (#4806)
    • 99d25bd feat(packages): extract icon build logic into @lucide/shared (#4409)
    • 75b5516 chore(dev): upgrade ESLint to latest compatible stack (v10) (#4378)
    • 0f8d48b test(packages): updates unit test snapshots with face-slightly-smiling (#4676)
    • f229f83 chore(depedencies): Update dependencies (#4553)
    • 5ff536e ci(release.yml): Fix workflow and remove version scripts in package scripts...
    • 07c885e fix(docs): fix zephyr-cloud URL in readmes
    • 50d8af5 docs(readme): Update readme files (#4320)
    • 653e44b feat(packages): use .mjs for ESM bundles (#4285)
    • 7623e23 feat(docs): add Zephyr Cloud to Hero Backers tier & rework updateSponsors scr...
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for lucide-react since your current version.


    Updates react from 19.2.7 to 19.3.0

    Release notes

    Sourced from react's releases.

    19.3.0 (September 9, 2026)

    Below is a list of all new features, APIs, and bug fixes.

    Read the React 19.3 release post for more information.

    New React Features

    Bumps the npm-dependencies group with 31 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@base-ui/react](https://github.com/mui/base-ui/tree/HEAD/packages/react) | `1.7.0` | `1.8.0` |
    | [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `0.11.0` | `1.8.0` |
    | [@shadcn/react](https://github.com/shadcn-ui/ui/tree/HEAD/packages/react) | `0.3.0` | `0.3.1` |
    | [input-otp](https://github.com/guilhermerodz/input-otp/tree/HEAD/packages/input-otp) | `1.4.2` | `1.5.0` |
    | [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.468.0` | `1.44.0` |
    | [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.3.0` |
    | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.17` | `19.3.0` |
    | [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.7` | `19.3.0` |
    | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.3` | `19.3.0` |
    | [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `4.12.2` | `4.12.4` |
    | [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.18.2` | `7.18.3` |
    | [recharts](https://github.com/recharts/recharts) | `3.8.0` | `3.10.1` |
    | [sonner](https://github.com/emilkowalski/sonner) | `2.0.7` | `2.0.8` |
    | [zod](https://github.com/colinhacks/zod) | `4.4.3` | `4.6.2` |
    | [@cloudflare/vite-plugin](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vite-plugin-cloudflare) | `1.45.0` | `1.54.7` |
    | [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.3.2` | `4.3.3` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.19.19` | `26.5.1` |
    | [@vercel/functions](https://github.com/vercel/vercel/tree/HEAD/packages/functions) | `3.7.5` | `3.9.7` |
    | [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `6.0.3` | `6.1.1` |
    | [@vitejs/plugin-rsc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-rsc) | `0.5.27` | `0.5.34` |
    | [eslint](https://github.com/eslint/eslint) | `9.39.5` | `10.10.0` |
    | [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.2.10` | `16.3.4` |
    | [mongodb](https://github.com/mongodb/node-mongodb-native) | `7.5.0` | `7.6.0` |
    | [next](https://github.com/vercel/next.js) | `16.3.0-canary.87` | `16.3.4` |
    | [nodemailer](https://github.com/nodemailer/nodemailer) | `9.0.4` | `10.0.3` |
    | [react-server-dom-webpack](https://github.com/react/react/tree/HEAD/packages/react-server-dom-webpack) | `19.2.7` | `19.3.0` |
    | [shadcn](https://github.com/shadcn-ui/ui/tree/HEAD/packages/shadcn) | `4.16.2` | `4.21.0` |
    | [tsx](https://github.com/privatenumber/tsx) | `4.23.1` | `4.23.13` |
    | [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |
    | [vinext](https://github.com/cloudflare/vinext) | `0.0.50` | `0.2.1` |
    | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.4` | `8.3.0` |
    
    
    
    Updates `@base-ui/react` from 1.7.0 to 1.8.0
    - [Release notes](https://github.com/mui/base-ui/releases)
    - [Changelog](https://github.com/mui/base-ui/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/mui/base-ui/commits/v1.8.0/packages/react)
    
    Updates `@clack/prompts` from 0.11.0 to 1.8.0
    - [Release notes](https://github.com/bombshell-dev/clack/releases)
    - [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
    - [Commits](https://github.com/bombshell-dev/clack/commits/@clack/prompts@1.8.0/packages/prompts)
    
    Updates `@shadcn/react` from 0.3.0 to 0.3.1
    - [Release notes](https://github.com/shadcn-ui/ui/releases)
    - [Changelog](https://github.com/shadcn-ui/ui/blob/main/packages/react/CHANGELOG.md)
    - [Commits](https://github.com/shadcn-ui/ui/commits/@shadcn/react@0.3.1/packages/react)
    
    Updates `input-otp` from 1.4.2 to 1.5.0
    - [Release notes](https://github.com/guilhermerodz/input-otp/releases)
    - [Changelog](https://github.com/guilhermerodz/input-otp/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/guilhermerodz/input-otp/commits/v1.5.0/packages/input-otp)
    
    Updates `lucide-react` from 0.468.0 to 1.44.0
    - [Release notes](https://github.com/lucide-icons/lucide/releases)
    - [Commits](https://github.com/lucide-icons/lucide/commits/1.44.0/packages/lucide-react)
    
    Updates `react` from 19.2.7 to 19.3.0
    - [Release notes](https://github.com/react/react/releases)
    - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/react/react/commits/v19.3.0/packages/react)
    
    Updates `@types/react` from 19.2.17 to 19.3.0
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `react-dom` from 19.2.7 to 19.3.0
    - [Release notes](https://github.com/react/react/releases)
    - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/react/react/commits/v19.3.0/packages/react-dom)
    
    Updates `@types/react-dom` from 19.2.3 to 19.3.0
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)
    
    Updates `react-resizable-panels` from 4.12.2 to 4.12.4
    - [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.12.2...4.12.4)
    
    Updates `react-router-dom` from 7.18.2 to 7.18.3
    - [Release notes](https://github.com/remix-run/react-router/releases)
    - [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.3/packages/react-router-dom/CHANGELOG.md)
    - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.3/packages/react-router-dom)
    
    Updates `recharts` from 3.8.0 to 3.10.1
    - [Release notes](https://github.com/recharts/recharts/releases)
    - [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
    - [Commits](recharts/recharts@v3.8.0...v3.10.1)
    
    Updates `sonner` from 2.0.7 to 2.0.8
    - [Release notes](https://github.com/emilkowalski/sonner/releases)
    - [Commits](emilkowalski/sonner@v2.0.7...v2.0.8)
    
    Updates `zod` from 4.4.3 to 4.6.2
    - [Release notes](https://github.com/colinhacks/zod/releases)
    - [Commits](colinhacks/zod@v4.4.3...v4.6.2)
    
    Updates `@cloudflare/vite-plugin` from 1.45.0 to 1.54.7
    - [Release notes](https://github.com/cloudflare/workers-sdk/releases)
    - [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vite-plugin-cloudflare/CHANGELOG.md)
    - [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vite-plugin@1.54.7/packages/vite-plugin-cloudflare)
    
    Updates `@tailwindcss/postcss` from 4.3.2 to 4.3.3
    - [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.3.3/packages/@tailwindcss-postcss)
    
    Updates `@types/node` from 22.19.19 to 26.5.1
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `@types/react` from 19.2.17 to 19.3.0
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `@types/react-dom` from 19.2.3 to 19.3.0
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)
    
    Updates `@vercel/functions` from 3.7.5 to 3.9.7
    - [Release notes](https://github.com/vercel/vercel/releases)
    - [Changelog](https://github.com/vercel/vercel/blob/main/packages/functions/CHANGELOG.md)
    - [Commits](https://github.com/vercel/vercel/commits/HEAD/packages/functions)
    
    Updates `@vitejs/plugin-react` from 6.0.3 to 6.1.1
    - [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
    - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.1.1/packages/plugin-react)
    
    Updates `@vitejs/plugin-rsc` from 0.5.27 to 0.5.34
    - [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
    - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-rsc/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-rsc@0.5.34/packages/plugin-rsc)
    
    Updates `eslint` from 9.39.5 to 10.10.0
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Commits](eslint/eslint@v9.39.5...v10.10.0)
    
    Updates `eslint-config-next` from 16.2.10 to 16.3.4
    - [Release notes](https://github.com/vercel/next.js/releases)
    - [Commits](https://github.com/vercel/next.js/commits/v16.3.4/packages/eslint-config-next)
    
    Updates `mongodb` from 7.5.0 to 7.6.0
    - [Release notes](https://github.com/mongodb/node-mongodb-native/releases)
    - [Changelog](https://github.com/mongodb/node-mongodb-native/blob/main/HISTORY.md)
    - [Commits](mongodb/node-mongodb-native@v7.5.0...v7.6.0)
    
    Updates `next` from 16.3.0-canary.87 to 16.3.4
    - [Release notes](https://github.com/vercel/next.js/releases)
    - [Commits](vercel/next.js@v16.3.0-canary.87...v16.3.4)
    
    Updates `nodemailer` from 9.0.4 to 10.0.3
    - [Release notes](https://github.com/nodemailer/nodemailer/releases)
    - [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
    - [Commits](nodemailer/nodemailer@v9.0.4...v10.0.3)
    
    Updates `react-server-dom-webpack` from 19.2.7 to 19.3.0
    - [Release notes](https://github.com/react/react/releases)
    - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/react/react/commits/v19.3.0/packages/react-server-dom-webpack)
    
    Updates `shadcn` from 4.16.2 to 4.21.0
    - [Release notes](https://github.com/shadcn-ui/ui/releases)
    - [Changelog](https://github.com/shadcn-ui/ui/blob/main/packages/shadcn/CHANGELOG.md)
    - [Commits](https://github.com/shadcn-ui/ui/commits/shadcn@4.21.0/packages/shadcn)
    
    Updates `tailwindcss` from 4.3.2 to 4.3.3
    - [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.3.3/packages/tailwindcss)
    
    Updates `tsx` from 4.23.1 to 4.23.13
    - [Release notes](https://github.com/privatenumber/tsx/releases)
    - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
    - [Commits](privatenumber/tsx@v4.23.1...v4.23.13)
    
    Updates `typescript` from 5.9.3 to 7.0.2
    - [Release notes](https://github.com/microsoft/TypeScript/releases)
    - [Commits](microsoft/TypeScript@v5.9.3...v7.0.2)
    
    Updates `vinext` from 0.0.50 to 0.2.1
    - [Release notes](https://github.com/cloudflare/vinext/releases)
    - [Commits](https://github.com/cloudflare/vinext/compare/v0.0.50...vinext@0.2.1)
    
    Updates `vite` from 8.1.4 to 8.3.0
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/create-vite@8.3.0/packages/vite)
    
    Updates `wrangler` from 4.111.0 to 4.131.0
    - [Release notes](https://github.com/cloudflare/workers-sdk/releases)
    - [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.131.0/packages/wrangler)
    
    ---
    updated-dependencies:
    - dependency-name: "@base-ui/react"
      dependency-version: 1.8.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@clack/prompts"
      dependency-version: 1.8.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: "@shadcn/react"
      dependency-version: 0.3.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: input-otp
      dependency-version: 1.5.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: lucide-react
      dependency-version: 1.44.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: react
      dependency-version: 19.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@types/react"
      dependency-version: 19.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: react-dom
      dependency-version: 19.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@types/react-dom"
      dependency-version: 19.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: react-resizable-panels
      dependency-version: 4.12.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: react-router-dom
      dependency-version: 7.18.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: recharts
      dependency-version: 3.10.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: sonner
      dependency-version: 2.0.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: zod
      dependency-version: 4.6.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@cloudflare/vite-plugin"
      dependency-version: 1.54.7
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@tailwindcss/postcss"
      dependency-version: 4.3.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: "@types/node"
      dependency-version: 26.5.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: "@types/react"
      dependency-version: 19.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@types/react-dom"
      dependency-version: 19.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@vercel/functions"
      dependency-version: 3.9.7
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@vitejs/plugin-react"
      dependency-version: 6.1.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: "@vitejs/plugin-rsc"
      dependency-version: 0.5.34
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: eslint
      dependency-version: 10.10.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: eslint-config-next
      dependency-version: 16.3.4
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: mongodb
      dependency-version: 7.6.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: next
      dependency-version: 16.3.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: nodemailer
      dependency-version: 10.0.3
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: react-server-dom-webpack
      dependency-version: 19.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: shadcn
      dependency-version: 4.21.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: tailwindcss
      dependency-version: 4.3.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: tsx
      dependency-version: 4.23.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: typescript
      dependency-version: 7.0.2
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: npm-dependencies
    - dependency-name: vinext
      dependency-version: 0.2.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: vite
      dependency-version: 8.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    - dependency-name: wrangler
      dependency-version: 4.131.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 14, 2026
    @vercel

    vercel Bot commented Sep 14, 2026

    Copy link
    Copy Markdown

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

    Project Deployment Actions Updated
    openbucket Ready Ready Preview Sep 14, 2026 4:28am UTC

    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 javascript Pull requests that update javascript code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants