Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 5, 2026

Bumps the minor-and-patch group with 26 updates:

Package From To
@sentry/nextjs 10.31.0 10.32.1
@tanstack/react-query 5.90.12 5.90.16
@trpc/client 11.7.2 11.8.1
@trpc/server 11.8.0 11.8.1
@trpc/tanstack-react-query 11.7.2 11.8.1
hono 4.10.7 4.11.3
import-in-the-middle 2.0.0 2.0.1
jotai 2.15.2 2.16.1
kysely 0.28.8 0.28.9
lucide-react 0.535.0 0.562.0
nodemailer 7.0.11 7.0.12
react 19.2.1 19.2.3
react-day-picker 9.11.3 9.13.0
react-dom 19.2.1 19.2.3
react-error-boundary 6.0.0 6.0.2
react-hook-form 7.68.0 7.70.0
zod 4.1.13 4.3.5
@hono/zod-openapi 1.1.5 1.2.0
@tailwindcss/postcss 4.1.17 4.1.18
@testing-library/react 16.3.0 16.3.1
@types/pg 8.15.6 8.16.0
@vitejs/plugin-react 5.1.1 5.1.2
eslint 9.39.1 9.39.2
eslint-config-next 16.0.7 16.1.1
kysely-codegen 0.18.5 0.19.0
tailwindcss 4.1.17 4.1.18

Updates @sentry/nextjs from 10.31.0 to 10.32.1

Release notes

Sourced from @​sentry/nextjs's releases.

10.32.1

  • fix(cloudflare): Add hono transaction name when error is thrown (#18529)
  • fix(ember): Make implementation field optional (hash routes) (#18564)
  • fix(vercelai): Fix input token count (#18574)
  • chore(lint): prefer 'unknown' to 'any', fix lint warnings
  • chore(test): Remove cloudflare-astro e2e test (#18567)

Bundle size 📦

Path Size
@​sentry/browser 24.24 KB
@​sentry/browser - with treeshaking flags 22.77 KB
@​sentry/browser (incl. Tracing) 40.62 KB
@​sentry/browser (incl. Tracing, Profiling) 45.12 KB
@​sentry/browser (incl. Tracing, Replay) 78.3 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.28 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 82.88 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 94.83 KB
@​sentry/browser (incl. Feedback) 40.57 KB
@​sentry/browser (incl. sendFeedback) 28.82 KB
@​sentry/browser (incl. FeedbackAsync) 33.7 KB
@​sentry/react 25.92 KB
@​sentry/react (incl. Tracing) 42.77 KB
@​sentry/vue 28.6 KB
@​sentry/vue (incl. Tracing) 42.39 KB
@​sentry/svelte 24.25 KB
CDN Bundle 26.62 KB
CDN Bundle (incl. Tracing) 41.25 KB
CDN Bundle (incl. Tracing, Replay) 77.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 82.44 KB
CDN Bundle - uncompressed 78.18 KB
CDN Bundle (incl. Tracing) - uncompressed 122.47 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 236.27 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 248.74 KB
@​sentry/nextjs (client) 44.94 KB
@​sentry/sveltekit (client) 40.98 KB
@​sentry/node-core 50.4 KB
@​sentry/node 157.73 KB
@​sentry/node - without tracing 90.87 KB
@​sentry/aws-serverless 106.02 KB

10.32.0

Important Changes

... (truncated)

Changelog

Sourced from @​sentry/nextjs's changelog.

10.32.1

  • fix(cloudflare): Add hono transaction name when error is thrown (#18529)
  • fix(ember): Make implementation field optional (hash routes) (#18564)
  • fix(vercelai): Fix input token count (#18574)
  • chore(lint): prefer 'unknown' to 'any', fix lint warnings
  • chore(test): Remove cloudflare-astro e2e test (#18567)

10.32.0

Important Changes

  • feat(core): Apply scope attributes to logs (#18184)

    You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    Sentry.withScope(scope => {
    scope.setAttribute('step', 'authentication');
    // scope attributes is_admin, auth_provider and step are added
    Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
    Sentry.logger.info(updated ${user.id} last activity);
    });
    // scope attributes is_admin and auth_provider are added
    Sentry.logger.warn('stale website version, reloading page');

  • feat(replay): Add Request body with attachRawBodyFromRequest option (#18501)

    To attach the raw request body (from Request objects passed as the first fetch argument) to replay events, you can now use the attachRawBodyFromRequest option in the Replay integration:

    Sentry.init({
      integrations: [
        Sentry.replayIntegration({
          attachRawBodyFromRequest: true,
        }),
      ],
    });

... (truncated)

Commits
  • 528ade2 release: 10.32.1
  • 25f695d Merge pull request #18578 from getsentry/prepare-release/10.32.1
  • a981a3d meta(changelog): Update changelog for 10.32.1
  • 0d8547c fix(vercelai): Fix input token count (#18574)
  • 71384a2 chore(lint): prefer 'unknown' to 'any', fix lint warnings
  • d1dd308 chore(test): Remove cloudflare-astro e2e test (#18567)
  • 12f3007 fix(ember): Make implementation field optional (hash routes) (#18564)
  • 3fda84d fix(cloudflare): Add hono transaction name when error is thrown (#18529)
  • a538901 Merge pull request #18563 from getsentry/master
  • 063c4dc Merge pull request #18562 from getsentry/ab/skip-ci-when-no-code-changes
  • Additional commits viewable in compare view

Updates @tanstack/react-query from 5.90.12 to 5.90.16

Release notes

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

@​tanstack/react-query-persist-client@​5.90.16

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.13
    • @​tanstack/react-query@​5.90.14

@​tanstack/react-query@​5.90.16

Patch Changes

  • fix(react-query): allow retryOnMount when throwOnError is function (#9338)

  • Updated dependencies [7f47906]:

    • @​tanstack/query-core@​5.90.16

@​tanstack/react-query-persist-client@​5.90.15

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.12
    • @​tanstack/react-query@​5.90.13

@​tanstack/react-query@​5.90.15

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

@​tanstack/react-query-persist-client@​5.90.14

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.91.11
    • @​tanstack/react-query@​5.90.12

@​tanstack/react-query@​5.90.14

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

@​tanstack/react-query-persist-client@​5.90.13

Patch Changes

  • Updated dependencies [c01b150]:
    • @​tanstack/react-query@​5.90.11
    • @​tanstack/query-persist-client-core@​5.91.10
Changelog

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

5.90.16

Patch Changes

  • fix(react-query): allow retryOnMount when throwOnError is function (#9338)

  • Updated dependencies [7f47906]:

    • @​tanstack/query-core@​5.90.16

5.90.15

Patch Changes

  • Updated dependencies [fccef79]:
    • @​tanstack/query-core@​5.90.15

5.90.14

Patch Changes

  • Updated dependencies [d576092]:
    • @​tanstack/query-core@​5.90.14

5.90.13

Patch Changes

  • Updated dependencies [4a0a78a]:
    • @​tanstack/query-core@​5.90.13
Commits
  • 167db32 ci: Version Packages (#10005)
  • 4be3ad7 fix(react-query): allow retryOnMount when throwOnError is function (#9336) (#...
  • 0a1e3e0 ci: Version Packages (#10003)
  • fccef79 fix(query-core): ensure query refetches on mount/retry when status is error (...
  • e907f89 fix(core): report errors of useMutation callbacks asynchronously (#9676)
  • 84564f1 ci: Version Packages (#10001)
  • 642f72d test(react-query/ssr): add 'useIsFetching' test for SSR (#9994)
  • 1d20c48 ci: Version Packages (#9997)
  • 2be25ca test(react-query/HydrationBoundary): add tests for 'enabled: false' and 'stal...
  • f15b7fc ci: prepare for trusted publishing (#9952)
  • 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 @​tanstack/react-query since your current version.


Updates @trpc/client from 11.7.2 to 11.8.1

Release notes

Sourced from @​trpc/client's releases.

v11.8.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v11.8.0...v11.8.1

v11.8.0

What's Changed

Commits

Updates @trpc/server from 11.8.0 to 11.8.1

Release notes

Sourced from @​trpc/server's releases.

v11.8.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v11.8.0...v11.8.1

Commits

Updates @trpc/tanstack-react-query from 11.7.2 to 11.8.1

Release notes

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

v11.8.1

What's Changed

New Contributors

Full Changelog: trpc/trpc@v11.8.0...v11.8.1

v11.8.0

What's Changed

Commits

Updates hono from 4.10.7 to 4.11.3

Release notes

Sourced from hono's releases.

v4.11.3

What's Changed

Full Changelog: honojs/hono@v4.11.2...v4.11.3

v4.11.2

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.11.1...v4.11.2

v4.11.1

What's Changed

Full Changelog: honojs/hono@v4.11.0...v4.11.1

v4.11.0

Release Notes

Hono v4.11.0 is now available!

This release includes new features for the Hono client, middleware improvements, and an important type system fix.

Type System Fix for Middleware

We've fixed a bug in the type system for middleware. Previously, app did not have the correct type with pathless handlers:

const app = new Hono()
  .use(async (c, next) => {
    await next()
  })
  .get('/a', async (c, next) => {
    await next()
  })
  .get((c) => {
    return c.text('Hello')
</tr></table> 

... (truncated)

Commits
  • 7997740 4.11.3
  • 489af0b fix(types): fix middleware union type merging in MergeMiddlewareResponse (#4602)
  • 6ca01ec 4.11.2
  • 27daf50 perf(types): optimize MergeMiddlewareResponse type (#4598)
  • b96b99f perf(types): reduce Simplify in ToSchema (#4597)
  • 41ee1bb refactor(client): refactor HonoURL types (#4592)
  • d8ea652 refactor(hono-base): add type annotations (#4591)
  • d454b31 chore: bump typescript-go preview for accurate benchmarking (#4586)
  • bde9a03 fix(validator): preserve literal union types in input type inference (#4583)
  • d3abeb1 docs: improve grammar in contributing documentation (#4581)
  • Additional commits viewable in compare view

Updates import-in-the-middle from 2.0.0 to 2.0.1

Release notes

Sourced from import-in-the-middle's releases.

import-in-the-middle: v2.0.1

2.0.1 (2025-12-18)

Bug Fixes

  • properly hook submodule package exports (#215) (a20f47a)
Changelog

Sourced from import-in-the-middle's changelog.

2.0.1 (2025-12-18)

Bug Fixes

  • properly hook submodule package exports (#215) (a20f47a)
Commits

Updates jotai from 2.15.2 to 2.16.1

Release notes

Sourced from jotai's releases.

v2.16.1

This fixes an internal API issue that affects ecosystem libraries.

What's Changed

Full Changelog: pmndrs/jotai@v2.16.0...v2.16.1

v2.16.0

This version deprecates atomFamily in jotai/utils in favor of jotai-family, and includes some internal changes.

What's Changed

Full Changelog: pmndrs/jotai@v2.15.2...v2.16.0

Commits
  • 6897847 2.16.1
  • 8dbb95c chore: update dev dependencies (#3204)
  • 2243375 fix(internals): buildingblocks should not invoke buildingblock definitions fr...
  • 56687bc chore(ci): add action link in ecosystem-ci (#3203)
  • c35af80 test(types): migrate from 'ts-expect' to vitest 'expectTypeOf' (#3195)
  • 12fd9fc chore(eslint): enable 'testing-library', 'jest-dom', 'vitest' plugins and fix...
  • c0feb7f 2.16.0
  • 6cce4dd chore(deps): update dev dependencies (#3194)
  • cd8ba03 test: extract 'sleep' and 'useCommitCount' to 'test-utils' (#3188)
  • baaa702 feat: rename to INTERNAL_onInit (#3193)
  • Additional commits viewable in compare view

Updates kysely from 0.28.8 to 0.28.9

Release notes

Sourced from kysely's releases.

0.28.9

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

🚀 Features

🐞 Bugfixes

PostgreSQL 🐘

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.8...v0.28.9

Commits
  • 44e578d 0.28.9
  • fc8318f fix TypeScript native type errors in test-setup.ts. (#1660)
  • 630ef7c fix: withSchema adds schema to for update|share|key share|no key share of...
  • e0a3396 fix: withSchema not applying for delete query using clause. (#1648)
  • 4bfb6fb chore: bump github actions. (#1645)
  • a9b831b chore: bump dependencies, run prettier. (#1644)
  • f13d9f8 chore(ci): add deno lint with JSR rules. Add verbatimModuleSyntax in `tsc...
  • 78a86bf chore: bump pnpm, use trustPolicy, exclude safe downgrades, fix browser tes...
  • 871a0f1 add jsr file. (#1457)
  • See full diff in compare view

Updates lucide-react from 0.535.0 to 0.562.0

Release notes

Sourced from lucide-react's releases.

Version 0.562.0

What's Changed

New Contributors

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

Version 0.561.0

What's Changed

Full Changelog: lucide-icons/lucide@0.560.0...0.561.0

Version 0.560.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.559.0...0.560.0

Version 0.559.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.558.0...0.559.0

Version 0.558.0

What's Changed

Full Changelog: lucide-icons/lucide@0.557.0...0.558.0

Version 0.557.0

What's Changed

... (truncated)

Commits
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 nodemailer from 7.0.11 to 7.0.12

Release notes

Sourced from nodemailer's releases.

v7.0.12

7.0.12 (2025-12-22)

Bug Fixes

  • added support for REQUIRETLS (#1793) (053ce6a)
  • use 8bit encoding for message/rfc822 attachments (adf8611)
Changelog

Sourced from nodemailer's changelog.

7.0.12 (2025-12-22)

Bug Fixes

  • added support for REQUIRETLS (#1793) (053ce6a)
  • use 8bit encoding for message/rfc822 attachments (adf8611)
Commits

Updates react from 19.2.1 to 19.2.3

Release notes

Sourced from react's releases.

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

Commits

Updates react-day-picker from 9.11.3 to 9.13.0

Release notes

Sourced from react-day-picker's releases.

v9.13.0

This release introduces an experimental noonSafe prop to help deal with historical time zones with second offsets. See https://daypicker.dev/localization/setting-time-zone#noonsafe for more details.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.12.0...v9.13.0

v9.12.0

This release adds translated labels to built-in locales and fixes issues with array modifiers and the Hebrew calendar.

Translated Locales

DayPicker locales now ship with localized labels (e.g., “Go to next month”, “Today”), so you no longer need to supply them via labels. To use a locale:

import { es } from "react-day-picker/locale";
<DayPicker locale={es} /> // Use Spanish locale, now with translated labels.

If you previously set the labels prop for translations, you can remove it. For details on switching locales, see https://daypicker.dev/localization/changing-locale.

What's Changed

Full Changelog: gpbl/react-day-picker@v9.11.3...v9.12.0

Changelog

Sourced from react-day-picker's changelog.

v9.13.0

Release date: 2025-12-18

This release introduces an experimental noonSafe prop to help deal with historical time zones with second offsets. See https://github.com/gpbl/react-day-picker/blob/main/localization/setting-time-zone#noonsafe for more details.

What's Changed

  • feat: add experimental noonSafe prop for timezone offsets by @​gpbl in #2879

v9.12.0

Release date: 2025-12-06

This release adds translated labels to built-in locales and fixes issues with array modifiers and the Hebrew calendar.

Translated Locales

DayPicker locales now ship with localized labels (e.g., “Go to next month”, “Today”), so you no longer need to supply them via labels. To use a locale:

import { es } from "react-day-picker/locale";
<DayPicker locale={es} /> // Use Spanish locale, now with translated labels.

If you previously set the labels prop for translations, you can remove it. For details on switching locales, see the localization guide.

What's Changed

  • feat: add locale-aware labels and translated locale wrappers by @​gpbl in #2861
  • fix: match Date[] modifiers by day by @​gpbl in #2865
  • fix: correct Hebrew date conversion timezone handling by @​gpbl in #2870
Commits
  • 103fe7f docs: update noon safe link
  • 62bddaa build: bump v9.13.0
  • 91e1fc6 docs: updates for time zone with noonSafe
  • 2a080c5 feat: add experimental noonSafe prop for timezone offsets (#2879)
  • 2bfbb3b docs: update time zone docs, add Asia/Saigon examples (#2878)
  • 14494d6 repo: upgrade dependencies (#2877)
  • 2a85e2b docs: enhance custom components and custom selections guides (#2876)
  • 4988ad5 docs: add responsive markdown tables (#2875)
  • e851689 docs: isolate daypicker demos from docusaurus css (#2874)
  • de5b2e0 docs: reorganize customization props (#2873)
  • Additional commits viewable in compare view
Maintainer changes

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


Updates react-dom from 19.2.1 to 19.2.3

Release notes

Sourced from

Bumps the minor-and-patch group with 26 updates:

| Package | From | To |
| --- | --- | --- |
| [@sentry/nextjs](https://github.com/getsentry/sentry-javascript) | `10.31.0` | `10.32.1` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.12` | `5.90.16` |
| [@trpc/client](https://github.com/trpc/trpc/tree/HEAD/packages/client) | `11.7.2` | `11.8.1` |
| [@trpc/server](https://github.com/trpc/trpc/tree/HEAD/packages/server) | `11.8.0` | `11.8.1` |
| [@trpc/tanstack-react-query](https://github.com/trpc/trpc/tree/HEAD/packages/tanstack-react-query) | `11.7.2` | `11.8.1` |
| [hono](https://github.com/honojs/hono) | `4.10.7` | `4.11.3` |
| [import-in-the-middle](https://github.com/nodejs/import-in-the-middle) | `2.0.0` | `2.0.1` |
| [jotai](https://github.com/pmndrs/jotai) | `2.15.2` | `2.16.1` |
| [kysely](https://github.com/kysely-org/kysely) | `0.28.8` | `0.28.9` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.535.0` | `0.562.0` |
| [nodemailer](https://github.com/nodemailer/nodemailer) | `7.0.11` | `7.0.12` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.1` | `19.2.3` |
| [react-day-picker](https://github.com/gpbl/react-day-picker) | `9.11.3` | `9.13.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.1` | `19.2.3` |
| [react-error-boundary](https://github.com/bvaughn/react-error-boundary) | `6.0.0` | `6.0.2` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.68.0` | `7.70.0` |
| [zod](https://github.com/colinhacks/zod) | `4.1.13` | `4.3.5` |
| [@hono/zod-openapi](https://github.com/honojs/middleware/tree/HEAD/packages/zod-openapi) | `1.1.5` | `1.2.0` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.17` | `4.1.18` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.3.0` | `16.3.1` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.15.6` | `8.16.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.1` | `5.1.2` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.0.7` | `16.1.1` |
| [kysely-codegen](https://github.com/RobinBlomberg/kysely-codegen) | `0.18.5` | `0.19.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.17` | `4.1.18` |


Updates `@sentry/nextjs` from 10.31.0 to 10.32.1
- [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.31.0...10.32.1)

Updates `@tanstack/react-query` from 5.90.12 to 5.90.16
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/[email protected]/packages/react-query)

Updates `@trpc/client` from 11.7.2 to 11.8.1
- [Release notes](https://github.com/trpc/trpc/releases)
- [Commits](https://github.com/trpc/trpc/commits/v11.8.1/packages/client)

Updates `@trpc/server` from 11.8.0 to 11.8.1
- [Release notes](https://github.com/trpc/trpc/releases)
- [Commits](https://github.com/trpc/trpc/commits/v11.8.1/packages/server)

Updates `@trpc/tanstack-react-query` from 11.7.2 to 11.8.1
- [Release notes](https://github.com/trpc/trpc/releases)
- [Commits](https://github.com/trpc/trpc/commits/v11.8.1/packages/tanstack-react-query)

Updates `hono` from 4.10.7 to 4.11.3
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.10.7...v4.11.3)

Updates `import-in-the-middle` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/nodejs/import-in-the-middle/releases)
- [Changelog](https://github.com/nodejs/import-in-the-middle/blob/main/CHANGELOG.md)
- [Commits](nodejs/import-in-the-middle@import-in-the-middle-v2.0.0...import-in-the-middle-v2.0.1)

Updates `jotai` from 2.15.2 to 2.16.1
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.15.2...v2.16.1)

Updates `kysely` from 0.28.8 to 0.28.9
- [Release notes](https://github.com/kysely-org/kysely/releases)
- [Commits](kysely-org/kysely@v0.28.8...v0.28.9)

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

Updates `nodemailer` from 7.0.11 to 7.0.12
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v7.0.11...v7.0.12)

Updates `react` from 19.2.1 to 19.2.3
- [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.3/packages/react)

Updates `react-day-picker` from 9.11.3 to 9.13.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.11.3...v9.13.0)

Updates `react-dom` from 19.2.1 to 19.2.3
- [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.3/packages/react-dom)

Updates `react-error-boundary` from 6.0.0 to 6.0.2
- [Release notes](https://github.com/bvaughn/react-error-boundary/releases)
- [Commits](bvaughn/react-error-boundary@6.0.0...6.0.2)

Updates `react-hook-form` from 7.68.0 to 7.70.0
- [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.68.0...v7.70.0)

Updates `zod` from 4.1.13 to 4.3.5
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.1.13...v4.3.5)

Updates `@hono/zod-openapi` from 1.1.5 to 1.2.0
- [Release notes](https://github.com/honojs/middleware/releases)
- [Changelog](https://github.com/honojs/middleware/blob/main/packages/zod-openapi/CHANGELOG.md)
- [Commits](https://github.com/honojs/middleware/commits/@hono/[email protected]/packages/zod-openapi)

Updates `@tailwindcss/postcss` from 4.1.17 to 4.1.18
- [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.1.18/packages/@tailwindcss-postcss)

Updates `@testing-library/react` from 16.3.0 to 16.3.1
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.3.0...v16.3.1)

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

Updates `@vitejs/plugin-react` from 5.1.1 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 `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

Updates `eslint-config-next` from 16.0.7 to 16.1.1
- [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.1/packages/eslint-config-next)

Updates `kysely-codegen` from 0.18.5 to 0.19.0
- [Release notes](https://github.com/RobinBlomberg/kysely-codegen/releases)
- [Commits](https://github.com/RobinBlomberg/kysely-codegen/commits/0.19.0)

Updates `tailwindcss` from 4.1.17 to 4.1.18
- [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.1.18/packages/tailwindcss)

---
updated-dependencies:
- dependency-name: "@sentry/nextjs"
  dependency-version: 10.32.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.90.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@trpc/client"
  dependency-version: 11.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@trpc/server"
  dependency-version: 11.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@trpc/tanstack-react-query"
  dependency-version: 11.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: hono
  dependency-version: 4.11.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: import-in-the-middle
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: jotai
  dependency-version: 2.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: kysely
  dependency-version: 0.28.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: lucide-react
  dependency-version: 0.562.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: nodemailer
  dependency-version: 7.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-day-picker
  dependency-version: 9.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-error-boundary
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-hook-form
  dependency-version: 7.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: zod
  dependency-version: 4.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@hono/zod-openapi"
  dependency-version: 1.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.1.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/pg"
  dependency-version: 8.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint-config-next
  dependency-version: 16.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: kysely-codegen
  dependency-version: 0.19.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-version: 4.1.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 5, 2026
@tilyupo tilyupo merged commit c4f6d66 into main Jan 6, 2026
10 checks passed
@tilyupo tilyupo deleted the dependabot/npm_and_yarn/minor-and-patch-f1292ec1c9 branch January 6, 2026 18:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant