Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2026

Bumps the all-dependencies group with 28 updates in the / directory:

Package From To
@neondatabase/auth 0.1.0-beta.21 0.2.0-beta.1
@prisma/adapter-pg 6.19.2 7.3.0
@prisma/client 6.19.2 7.3.0
@rapideditor/country-coder 5.6.0 5.6.1
csv-parse 5.6.0 6.1.0
lucide-react 0.525.0 0.563.0
motion 12.27.1 12.29.2
next 16.1.4 16.1.6
pg 8.17.1 8.18.0
react 19.2.3 19.2.4
@types/react 19.2.8 19.2.10
react-dom 19.2.3 19.2.4
recharts 3.6.0 3.7.0
zod 3.25.76 4.3.6
@playwright/test 1.57.0 1.58.1
@types/node 24.10.9 25.2.0
@typescript-eslint/eslint-plugin 8.53.1 8.54.0
@typescript-eslint/parser 8.53.1 8.54.0
@vitejs/plugin-react 4.7.0 5.1.2
@vitest/coverage-v8 3.2.4 4.0.18
eslint-config-next 16.1.4 16.1.6
eslint-plugin-react-hooks 5.2.0 7.0.1
jsdom 26.1.0 27.4.0
markdownlint-cli2 0.18.1 0.20.0
prettier 3.8.0 3.8.1
prisma 6.19.2 7.3.0
vite-tsconfig-paths 5.1.4 6.0.5
vitest 3.2.4 4.0.18

Updates @neondatabase/auth from 0.1.0-beta.21 to 0.2.0-beta.1

Changelog

Sourced from @​neondatabase/auth's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Session Data Caching: Next.js SDK now caches session details with session_data cookie.

    • Automatically created/refreshed when Neon Auth sets/refreshes session_token cookie
    • The cookie is JWT token with session and user details
    • The cookie needs to be signed with 32-characters long - cookies.secret
    • The /api/auth/get-session, auth.getSession() and the middleware will try to parse user details from session_data cookie with fallback on upstream /get-session
    • The cookie has default 5 minutes TTL, can be customized with cookies.sessionDataTtl
  • Cross Domain Cookie: Next.js SDK now supports settings domain attribute on cookie

    • Optional cookie.domain for cross-subdomain cookie sharing
  • Unified Entry Point: New createNeonAuth() combines all server functionality in one place

    • Returns an object with all Better Auth server methods (spread from base server)
    • .handler() method for API route handlers (GET, POST, PUT, DELETE, PATCH)
    • .middleware(config?) method for route protection and session management
    • Single import instead of 3 separate imports
    • Config defined once, used everywhere
  • Framework-Agnostic Architecture: All business logic moved to packages/auth/src/server/

    • New server/proxy/ utilities (handler, request, response)
    • New server/middleware/ utilities (processor, oauth, session, route-protection)
    • New server/config.ts with framework-agnostic config types
    • Next.js files now thin adapters (~40-50 lines, 38% smaller)
  • Required Configuration: Explicit configuration with validation

    • NeonAuthConfig type with required baseUrl and cookies configuration
    • No more implicit environment variable fallbacks

Changed

  • BREAKING: Changed createAuthServer() to createNeonAuth() with explicit config
    • baseUrl and cookies.secret are mandatory parameters
    • No fallback to process.env.NEON_AUTH_BASE_URL or other environment variables
    • Environment variables must be explicitly passed to config objects

Removed

  • BREAKING: Removed neonAuth() utility function

... (truncated)

Commits

Updates @prisma/adapter-pg from 6.19.2 to 7.3.0

Release notes

Sourced from @​prisma/adapter-pg's releases.

7.3.0

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

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

ORM

  • #28976: Fast and Small Query Compilers We've been working on various performance-related bugs since the initial ORM 7.0 release. With 7.3.0, we're introducing a new compilerBuild option for the client generator block in schema.prisma with two options: fast and small. This allows you to swap the underlying Query Compiler engine based on your selection, one built for speed (with an increase in size), and one built for size (with the trade off for speed). By default, the fast mode is used, but this can be set by the user:
generator client {
  provider = "prisma-client"
  output   = "../src/generated/prisma"
  compilerBuild = "fast" // "fast" | "small"
}

We still have more in progress for performance, but this new compilerBuild option is our first step toward addressing your concerns!

  • #29005: Bypass the Query Compiler for Raw Queries Raw queries ($executeRaw, $queryRaw) can now skip going through the query compiler and query interpreter infrastructure. They can be sent directly to the driver adapter, removing additional overhead.

  • #28965: Update MSSQL to v12.2.0 This community PR updates the @prisma/adapter-mssql to use MSSQL v12.2.0. Thanks Jay-Lokhande!

  • #29001: Pin better-sqlite3 version to avoid SQLite bug An underlying bug in SQLite 3.51.0 has affected the better-sqlite3 adapter. We’ve bumped the version that powers @prisma/better-sqlite3 and have pinned the version to prevent any unexpected issues. If you are using @prisma/better-sqlite3 , please upgrade to v7.3.0.

  • #29002: Revert @map enums to v6.19.0 behavior In the initial release of v7.0, we made a change with Mapped Enums where the generated enum would get its value from the value passed to the @map function. This was a breaking change from v6 that caused issues for many users. We have reverted this change for the time being, as many different diverging approaches have emerged from the community discussion.

  • prisma-engines#5745: Cast BigInt to text in JSON aggregation When using relationJoins with BigInt fields in Prisma 7, JavaScript's JSON.parse loses precision for integers larger than Number.MAX_SAFE_INTEGER (2^53 - 1). This happens because PostgreSQL's JSONB_BUILD_OBJECT returns BigInt values as JSON numbers, which JavaScript cannot represent precisely.

    // Original BigInt ID: 312590077454712834
    // After JSON.parse: 312590077454712830 (corrupted!)
    

    This PR cast BigInt columns to ::text inside JSONB_BUILD_OBJECT calls, similar to how MONEY is already cast to ::numeric.

    -- Before
    JSONB_BUILD_OBJECT('id', "id")
    

    -- After
    JSONB_BUILD_OBJECT('id', "id"::text)

... (truncated)

Commits

Updates @prisma/client from 6.19.2 to 7.3.0

Release notes

Sourced from @​prisma/client's releases.

7.3.0

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

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

ORM

  • #28976: Fast and Small Query Compilers We've been working on various performance-related bugs since the initial ORM 7.0 release. With 7.3.0, we're introducing a new compilerBuild option for the client generator block in schema.prisma with two options: fast and small. This allows you to swap the underlying Query Compiler engine based on your selection, one built for speed (with an increase in size), and one built for size (with the trade off for speed). By default, the fast mode is used, but this can be set by the user:
generator client {
  provider = "prisma-client"
  output   = "../src/generated/prisma"
  compilerBuild = "fast" // "fast" | "small"
}

We still have more in progress for performance, but this new compilerBuild option is our first step toward addressing your concerns!

  • #29005: Bypass the Query Compiler for Raw Queries Raw queries ($executeRaw, $queryRaw) can now skip going through the query compiler and query interpreter infrastructure. They can be sent directly to the driver adapter, removing additional overhead.

  • #28965: Update MSSQL to v12.2.0 This community PR updates the @prisma/adapter-mssql to use MSSQL v12.2.0. Thanks Jay-Lokhande!

  • #29001: Pin better-sqlite3 version to avoid SQLite bug An underlying bug in SQLite 3.51.0 has affected the better-sqlite3 adapter. We’ve bumped the version that powers @prisma/better-sqlite3 and have pinned the version to prevent any unexpected issues. If you are using @prisma/better-sqlite3 , please upgrade to v7.3.0.

  • #29002: Revert @map enums to v6.19.0 behavior In the initial release of v7.0, we made a change with Mapped Enums where the generated enum would get its value from the value passed to the @map function. This was a breaking change from v6 that caused issues for many users. We have reverted this change for the time being, as many different diverging approaches have emerged from the community discussion.

  • prisma-engines#5745: Cast BigInt to text in JSON aggregation When using relationJoins with BigInt fields in Prisma 7, JavaScript's JSON.parse loses precision for integers larger than Number.MAX_SAFE_INTEGER (2^53 - 1). This happens because PostgreSQL's JSONB_BUILD_OBJECT returns BigInt values as JSON numbers, which JavaScript cannot represent precisely.

    // Original BigInt ID: 312590077454712834
    // After JSON.parse: 312590077454712830 (corrupted!)
    

    This PR cast BigInt columns to ::text inside JSONB_BUILD_OBJECT calls, similar to how MONEY is already cast to ::numeric.

    -- Before
    JSONB_BUILD_OBJECT('id', "id")
    

    -- After JSONB_BUILD_OBJECT('id', "id"::text)

... (truncated)

Commits
  • b6fd1bd chore(deps): update engines to 7.3.0-16.9d6ad21cbbceab97458517b147a6a09ff43aa...
  • 223b6ea chore: make the interpreter reusable (#29016)
  • 9d44ecc feat: compile raw queries in the client engine (#29005)
  • 272b176 fix: revert "feat(client-generator-ts): [breaking] add support for ma… (#29002)
  • c03d384 fix: pin better sqlite for exists bug (#29001)
  • 8f69196 chore(deps): update engines to 7.3.0-8.aee8f579c2872ad0cedd6fd7e9070704fdb361...
  • 768cd82 fix: fix QC benchmark (#28987)
  • fd479fd feat(qc): fast and small build modes (#28976)
  • a60094a perf: add query compilation and performance benchmarks (#28954)
  • bebccbd feat(cli): customize prisma init based on the JS runtime (Bun vs other) (#2...
  • Additional commits viewable in compare view

Updates @rapideditor/country-coder from 5.6.0 to 5.6.1

Release notes

Sourced from @​rapideditor/country-coder's releases.

v5.6.1

https://github.com/rapideditor/country-coder/blob/main/CHANGELOG.md#561

Changelog

Sourced from @​rapideditor/country-coder's changelog.

5.6.1

2026-Jan-31
  • Fix TypeScript for node resolution packages (#163,#164)

#163: rapideditor/country-coder#163 #164: rapideditor/country-coder#164

Commits
  • 0282b5f v5.6.1
  • 9071028 Add postpublish script for purging CDN cache
  • 2aedc48 Simplify build workflow, tsconfig, improve server.ts
  • 0b95a1b Update package.json
  • 7274f95 Update repository so that npm link will work, and bun update
  • 8925f57 Bump actions/checkout from 5 to 6
  • 8788610 Add eslint, typescript-eslint, and fix lint issues
  • cca0bf5 Update @​types/bun
  • bb4e487 Remove Node from engines field
  • 17c973f Small improvements to server.ts
  • See full diff in compare view

Updates csv-parse from 5.6.0 to 6.1.0

Changelog

Sourced from csv-parse's changelog.

6.1.0 (2025-07-16)

Features

  • csv-parse: add generic type argument (#457) (ef71342), closes #278 #407
  • csv-parse: boolean and null comment type (b9ac1f0)
  • csv-parse: callback records defined type (3d4f225)
  • csv-parse: casting context raw export (a26f5d7)
  • csv-parse: input as Uint8Array (fix #458) (24af461)
  • csv-parse: normailzsed options type (da7a62e)
  • csv-parse: normalize_options export (9056293)
  • csv-parse: null comment_no_infix type (d8bf4fd)
  • csv-parse: on_skip catch thrown error (987a3a9)
  • csv-parse: use ts unknown instead of any when possible (a47badf)

Bug Fixes

  • csv-parse: normalized columns with auto-detected bom (fix #460) (4abcc44)

6.0.0 (2025-07-10)

⚠ BREAKING CHANGES

  • csv-parse: rename group_columns_by_name option
  • csv-parse: rename RECORD_INCONSISTENT_FIELDS_LENGTH
  • csv-parse: rename RECORD_DONT_MATCH_COLUMNS_LENGTH
  • csv-parse: rename skip_records_with_error
  • csv-parse: rename skip_records_with_empty_values
  • csv-parse: rename relax to relax_quotes

Features

  • backport support for node 14 (dbfeb78)
  • backward support for node 8 (496231d)
  • csv-parse: add columns property in Info object type (#390) (2dd2a92)
  • csv-parse: add generic type argument (#457) (ef71342), closes #278 #407
  • csv-parse: boolean and null comment type (b9ac1f0)
  • csv-parse: callback records defined type (3d4f225)
  • csv-parse: cast_date as a function (fix #342) (2807d29)
  • csv-parse: casting context raw export (a26f5d7)
  • csv-parse: implement TransformStream (#445) (1213de8)
  • csv-parse: improve record_delimiter validation (67b7da8)
  • csv-parse: input as Uint8Array (fix #458) (24af461)
  • csv-parse: new comment_no_infix option (fix #325) (caca5c3)
  • csv-parse: normailzsed options type (da7a62e)
  • csv-parse: normalize_options export (9056293)
  • csv-parse: null comment_no_infix type (d8bf4fd)
  • csv-parse: objname index (015b936)
  • csv-parse: on_skip catch thrown error (987a3a9)
  • csv-parse: skip_line_with_errors used with raw print current buffer (fix #292) (2741990)

... (truncated)

Commits
  • c0e42c9 chore(release): publish
  • 4abcc44 fix(csv-parse): normalized columns with auto-detected bom (fix #460)
  • d6b53b3 chore(release): publish
  • e3923c3 test(csv-parse): update legacy exclusion list
  • a47badf feat(csv-parse): use ts unknown instead of any when possible
  • 24af461 feat(csv-parse): input as Uint8Array (fix #458)
  • 388daf8 test(csv-parse): api ts conversion
  • e85beb3 refactor(csv-parse): re-order error codes
  • cf96584 test(csv-parse): options ts convertion
  • da7a62e feat(csv-parse): normailzsed options type
  • Additional commits viewable in compare view

Updates lucide-react from 0.525.0 to 0.563.0

Release notes

Sourced from lucide-react's releases.

Version 0.563.0

What's Changed

aria-hidden is by default added to icons components in all packages. This was already added to lucide-react before. Making icons accessible, you can add an aria-label or a title. See docs about accessibility.

All changes

New Contributors

Full Changelog: lucide-icons/lucide@0.562.0...0.563.0

Version 0.562.0

What's Changed

... (truncated)

Commits
  • 67c0485 feat(scripts): added helper script to automatically update OpenCollective bac...
  • b6ed43d feat(packages): Added aria-hidden fallback for decorative icons to all packag...
  • 076e0bb chore(dependencies): Update dependencies (#3809)
  • 80d6f73 fix(icons): Rename fingerprint icon to fingerprint-pattern (#3767)
  • 1cfb3ff chore(deps-dev): bump vite from 6.3.5 to 6.3.6 (#3611)
  • e71198d chore: icon alias improvements (#2861)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for lucide-react since your current version.


Updates motion from 12.27.1 to 12.29.2

Changelog

Sourced from motion's changelog.

[12.29.2] 2026-01-26

Fixed

  • Updates to layout animations.

[12.29.1] 2026-01-22

Fixed

  • useAnimate: Now respects reduced motion settings set via MotionConfig.

[12.29.0] 2026-01-22

Added

  • transformViewBoxPoint: Scale drag gestures within <svg> elements where viewBox and rendered width/height are mismatched.
  • trackContentSize: New scroll and useScroll option for tracking changes to content size.

Fixed

  • Add React 19 test suite to CI.
  • Fix types with motion.create().
  • Shared element animations now respect layoutDependency.

[12.28.2] 2026-01-22

Added

  • Add default value type px for fontSize.

Fixed

  • Removed default value type from radius.
  • Ensure LazyMotion animates initial state even when state has changed before Motion is loaded.

[12.28.1] 2026-01-21

Fixed

  • Ensure scale: "0%" isn't treated as default value.

[12.28.0] 2026-01-20

Added

  • useFollowValue and followValue: useSpring-style motion values that can accept any transition.

Fixed

... (truncated)

Commits

Updates next from 16.1.4 to 16.1.6

Release notes

Sourced from next's releases.

v16.1.6

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

Core Changes

  • Upgrade to swc 54 (#88207)
  • implement LRU cache with invocation ID scoping for minimal mode response cache (#88509)
  • tweak LRU sentinel key (#89123)

Credits

Huge thanks to @​mischnic, @​wyattjoh, and @​ztanner for helping!

v16.1.5

Please refer the following changelogs for more information about this security release:

https://vercel.com/changelog/summaries-of-cve-2025-59471-and-cve-2025-59472 https://vercel.com/changelog/summary-of-cve-2026-23864

Commits

Updates pg from 8.17.1 to 8.18.0

Changelog

Sourced from pg's changelog.

[email protected]

[email protected]

  • Throw correct error if database URL parsing fails.

[email protected]

[email protected]

  • Add support for esm importing. CommonJS importing is still also supported.

[email protected]

[email protected]

[email protected]

[email protected]

  • Emit release event when client is returned to the pool.

[email protected]

[email protected]

[email protected]

... (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.8 to 19.2.10

Commits

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 recharts from 3.6.0 to 3.7.0

Release notes

Sourced from recharts's releases.

v3.7.0

What's Changed

📢 Cell is now deprecated and will be removed in the next major version. Please migrate all Cell usage to use the shape prop of respective chart elements. ‼️

Feat

New Hooks

Other

Fix

Chore

Docs

We've started auto-generating our docs for the most part so you should see large improvements in accuracy of the docs between the code, the website, and the storybook. Huge shoutout to @​PavelVanecek 🚀

New Contributors

Full Changelog: recharts/recharts@v3.6.0...v3.7.0

Commits

…28 updates

Bumps the all-dependencies group with 28 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@neondatabase/auth](https://github.com/neondatabase/neon-js/tree/HEAD/packages/auth) | `0.1.0-beta.21` | `0.2.0-beta.1` |
| [@prisma/adapter-pg](https://github.com/prisma/prisma/tree/HEAD/packages/adapter-pg) | `6.19.2` | `7.3.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `6.19.2` | `7.3.0` |
| [@rapideditor/country-coder](https://github.com/rapideditor/country-coder) | `5.6.0` | `5.6.1` |
| [csv-parse](https://github.com/adaltas/node-csv/tree/HEAD/packages/csv-parse) | `5.6.0` | `6.1.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.525.0` | `0.563.0` |
| [motion](https://github.com/motiondivision/motion) | `12.27.1` | `12.29.2` |
| [next](https://github.com/vercel/next.js) | `16.1.4` | `16.1.6` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.17.1` | `8.18.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.8` | `19.2.10` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.3` | `19.2.4` |
| [recharts](https://github.com/recharts/recharts) | `3.6.0` | `3.7.0` |
| [zod](https://github.com/colinhacks/zod) | `3.25.76` | `4.3.6` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.57.0` | `1.58.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.9` | `25.2.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.53.1` | `8.54.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.53.1` | `8.54.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.7.0` | `5.1.2` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `3.2.4` | `4.0.18` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.1.4` | `16.1.6` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `5.2.0` | `7.0.1` |
| [jsdom](https://github.com/jsdom/jsdom) | `26.1.0` | `27.4.0` |
| [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2) | `0.18.1` | `0.20.0` |
| [prettier](https://github.com/prettier/prettier) | `3.8.0` | `3.8.1` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.19.2` | `7.3.0` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `5.1.4` | `6.0.5` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.18` |



Updates `@neondatabase/auth` from 0.1.0-beta.21 to 0.2.0-beta.1
- [Changelog](https://github.com/neondatabase/neon-js/blob/main/packages/auth/CHANGELOG.md)
- [Commits](https://github.com/neondatabase/neon-js/commits/auth-v0.2.0-beta.1/packages/auth)

Updates `@prisma/adapter-pg` from 6.19.2 to 7.3.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.3.0/packages/adapter-pg)

Updates `@prisma/client` from 6.19.2 to 7.3.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.3.0/packages/client)

Updates `@rapideditor/country-coder` from 5.6.0 to 5.6.1
- [Release notes](https://github.com/rapideditor/country-coder/releases)
- [Changelog](https://github.com/rapideditor/country-coder/blob/main/CHANGELOG.md)
- [Commits](rapideditor/country-coder@v5.6.0...v5.6.1)

Updates `csv-parse` from 5.6.0 to 6.1.0
- [Changelog](https://github.com/adaltas/node-csv/blob/master/packages/csv-parse/CHANGELOG.md)
- [Commits](https://github.com/adaltas/node-csv/commits/[email protected]/packages/csv-parse)

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

Updates `motion` from 12.27.1 to 12.29.2
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.27.1...v12.29.2)

Updates `next` from 16.1.4 to 16.1.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.1.4...v16.1.6)

Updates `pg` from 8.17.1 to 8.18.0
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/[email protected]/packages/pg)

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.8 to 19.2.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

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 `recharts` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
- [Commits](recharts/recharts@v3.6.0...v3.7.0)

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

Updates `@playwright/test` from 1.57.0 to 1.58.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.57.0...v1.58.1)

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

Updates `@typescript-eslint/eslint-plugin` from 8.53.1 to 8.54.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.54.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.53.1 to 8.54.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.54.0/packages/parser)

Updates `@vitejs/plugin-react` from 4.7.0 to 5.1.2
- [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/[email protected]/packages/plugin-react)

Updates `@vitest/coverage-v8` from 3.2.4 to 4.0.18
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.18/packages/coverage-v8)

Updates `eslint-config-next` from 16.1.4 to 16.1.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v16.1.6/packages/eslint-config-next)

Updates `eslint-plugin-react-hooks` from 5.2.0 to 7.0.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `jsdom` from 26.1.0 to 27.4.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@26.1.0...27.4.0)

Updates `markdownlint-cli2` from 0.18.1 to 0.20.0
- [Changelog](https://github.com/DavidAnson/markdownlint-cli2/blob/main/CHANGELOG.md)
- [Commits](DavidAnson/markdownlint-cli2@v0.18.1...v0.20.0)

Updates `prettier` from 3.8.0 to 3.8.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.0...3.8.1)

Updates `prisma` from 6.19.2 to 7.3.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.3.0/packages/cli)

Updates `vite-tsconfig-paths` from 5.1.4 to 6.0.5
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v5.1.4...v6.0.5)

Updates `vitest` from 3.2.4 to 4.0.18
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.18/packages/vitest)

---
updated-dependencies:
- dependency-name: "@neondatabase/auth"
  dependency-version: 0.2.0-beta.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@prisma/adapter-pg"
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@prisma/client"
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@rapideditor/country-coder"
  dependency-version: 5.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: csv-parse
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: lucide-react
  dependency-version: 0.563.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: motion
  dependency-version: 12.29.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: next
  dependency-version: 16.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: pg
  dependency-version: 8.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: recharts
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: zod
  dependency-version: 4.3.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.58.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.54.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.54.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: eslint-config-next
  dependency-version: 16.1.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: jsdom
  dependency-version: 27.4.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: markdownlint-cli2
  dependency-version: 0.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: prisma
  dependency-version: 7.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: vite-tsconfig-paths
  dependency-version: 6.0.5
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: vitest
  dependency-version: 4.0.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 1, 2026
@dependabot dependabot bot requested a review from kjanat as a code owner February 1, 2026 18:03
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 1, 2026
@coderabbitai
Copy link

coderabbitai bot commented Feb 1, 2026

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

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