Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2025

Bumps the deps group with 37 updates in the /modules/web directory:

Package From To
zod 3.25.76 4.2.1
@typescript-eslint/eslint-plugin 6.21.0 8.51.0
@typescript-eslint/parser 6.21.0 8.51.0
eslint-config-prettier 8.10.2 10.1.8
eslint-import-resolver-typescript 3.10.1 4.4.4
eslint-plugin-react-hooks 4.6.2 7.0.1
eslint-plugin-turbo 1.13.4 2.7.2
eslint-plugin-unused-imports 3.2.0 4.3.0
@hookform/resolvers 3.10.0 5.2.2
@radix-ui/react-primitive 1.0.3 2.1.4
date-fns 3.6.0 4.1.0
framer-motion 11.18.2 12.23.26
lucide-react 0.323.0 0.562.0
next-themes 0.2.1 0.4.6
react 18.3.1 19.2.3
react-day-picker 8.10.1 9.13.0
sonner 1.7.4 2.0.7
tailwind-merge 2.6.0 3.4.0
react-dom 18.3.1 19.2.3
@bufbuild/protobuf 1.10.1 2.10.2
@connectrpc/connect-query 1.4.2 2.2.0
@connectrpc/connect-web 1.7.0 2.1.1
@formkit/auto-animate 0.8.4 0.9.0
@nivo/bar 0.84.0 0.99.0
@nivo/core 0.84.0 0.99.0
@nivo/line 0.84.0 0.99.0
@stripe/react-stripe-js 3.10.0 5.4.1
@stripe/stripe-js 5.10.0 8.6.0
immer 10.2.0 11.1.3
jotai-optics 0.3.2 0.4.0
jotai-scope 0.5.2 0.10.0
nanoid 5.0.9 5.1.6
react-resizable-panels 2.1.9 4.1.0
react-router-dom 6.30.2 7.11.0
simple-icons 13.21.0 16.3.0
superjson 2.2.1 2.2.6
zustand 4.5.7 5.0.9

Updates zod from 3.25.76 to 4.2.1

Release notes

Sourced from zod's releases.

v4.2.1

Commits:

  • 5b5b129315fbc94a3b0d6244185eaeefcbe438d1 4.2.1

v4.2.0

Features

Implement Standard JSON Schema

standard-schema/standard-schema#134

Implement z.fromJSONSchema()

const jsonSchema = {
  type: "object",
  properties: {
    name: { type: "string" },
    age: { type: "number" }
  },
  required: ["name"]
};
const schema = z.fromJSONSchema(jsonSchema);

Implement z.xor()

const schema = z.xor(
  z.object({ type: "user", name: z.string() }),
  z.object({ type: "admin", role: z.string() })
);
// Exactly one of the schemas must match

Implement z.looseRecord()

const schema = z.looseRecord(z.string(), z.number());
// Allows additional properties beyond those defined

Commits:

  • af49c084f66339110d00e37ff71dc7b3b9f2b7ef Update docs for JSON Schema conversion of z.undefined() (#5504)
  • 767f320318986e422f524b939f1a7174544fda2e Add .toJSONSchema() method (#5477)
  • e17dcb63573397063e87d7c7fe10a5a78968181a Add z.fromJSONSchema(), z.looseRecord(), z.xor() (#5534)

... (truncated)

Commits

Updates @typescript-eslint/eslint-plugin from 6.21.0 to 8.51.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.51.0

8.51.0 (2025-12-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11719)
  • eslint-plugin: [no-useless-default-assignment] fix some cases to optional syntax (#11871)
  • eslint-plugin: add namespace to plugin meta (#11885)
  • tsconfig-utils: more informative error on parsing failures (#11888)

🩹 Fixes

  • eslint-plugin: fix crash and false positives in no-useless-default-assignment (#11845)
  • eslint-plugin: remove fixable from no-dynamic-delete rule (#11876)
  • eslint-plugin: bump ts-api-utils to 2.2.0 (#11881)
  • eslint-plugin: [prefer-optional-chain] handle MemberExpression in final chain position (#11835)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.50.1

8.50.1 (2025-12-22)

🩹 Fixes

  • eslint-plugin: [method-signature-style] ignore methods that return this (#11813)
  • eslint-plugin: [no-unnecessary-type-assertion] correct handling of undefined vs. void (#11826)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.50.0

8.50.0 (2025-12-15)

🚀 Features

  • eslint-plugin: [no-useless-default-assignment] add rule (#11720)

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.51.0 (2025-12-29)

🚀 Features

  • eslint-plugin: add namespace to plugin meta (#11885)
  • eslint-plugin: [no-useless-default-assignment] fix some cases to optional syntax (#11871)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chain] handle MemberExpression in final chain position (#11835)
  • eslint-plugin: bump ts-api-utils to 2.2.0 (#11881)
  • eslint-plugin: remove fixable from no-dynamic-delete rule (#11876)
  • eslint-plugin: fix crash and false positives in no-useless-default-assignment (#11845)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.50.1 (2025-12-22)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-assertion] correct handling of undefined vs. void (#11826)
  • eslint-plugin: [method-signature-style] ignore methods that return this (#11813)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.50.0 (2025-12-15)

🚀 Features

  • eslint-plugin: [no-useless-default-assignment] add rule (#11720)

❤️ Thank You

  • Josh Goldberg ✨
  • Ulrich Stark

You can read about our versioning strategy and releases on our website.

... (truncated)

Commits
  • e4c57f5 chore(release): publish 8.51.0
  • c7b698b feat(eslint-plugin): add namespace to plugin meta (#11885)
  • 2b0d14b docs(eslint-plugin): [no-unsafe-return] added Limitations note (#11884)
  • 5612098 chore(eslint-plugin): default testing types to projectService, only (#11882)
  • 6e441a7 feat(eslint-plugin): [no-useless-default-assignment] fix some cases to option...
  • 7379004 fix(eslint-plugin): [prefer-optional-chain] handle MemberExpression in final ...
  • d9ba20d chore(website): replace cross-fetch and make-dir with Node.js built-ins (...
  • f7085c3 docs(eslint-plugin): [no-useless-default-assignment] mention .length in "when...
  • 7ee3522 fix(eslint-plugin): bump ts-api-utils to 2.2.0 (#11881)
  • e033d27 docs(eslint-plugin): [strict-boolean-expressions] mention @​eslint-react/no-le...
  • 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 @​typescript-eslint/eslint-plugin since your current version.


Updates @typescript-eslint/parser from 6.21.0 to 8.51.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.51.0

8.51.0 (2025-12-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11719)
  • eslint-plugin: [no-useless-default-assignment] fix some cases to optional syntax (#11871)
  • eslint-plugin: add namespace to plugin meta (#11885)
  • tsconfig-utils: more informative error on parsing failures (#11888)

🩹 Fixes

  • eslint-plugin: fix crash and false positives in no-useless-default-assignment (#11845)
  • eslint-plugin: remove fixable from no-dynamic-delete rule (#11876)
  • eslint-plugin: bump ts-api-utils to 2.2.0 (#11881)
  • eslint-plugin: [prefer-optional-chain] handle MemberExpression in final chain position (#11835)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.50.1

8.50.1 (2025-12-22)

🩹 Fixes

  • eslint-plugin: [method-signature-style] ignore methods that return this (#11813)
  • eslint-plugin: [no-unnecessary-type-assertion] correct handling of undefined vs. void (#11826)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.50.0

8.50.0 (2025-12-15)

🚀 Features

  • eslint-plugin: [no-useless-default-assignment] add rule (#11720)

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.51.0 (2025-12-29)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.50.1 (2025-12-22)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.50.0 (2025-12-15)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.49.0 (2025-12-08)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.48.1 (2025-12-02)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.48.0 (2025-11-24)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.47.0 (2025-11-17)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.46.4 (2025-11-10)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.46.3 (2025-11-03)

... (truncated)

Commits
  • e4c57f5 chore(release): publish 8.51.0
  • d520b88 chore(release): publish 8.50.1
  • c62e858 chore(release): publish 8.50.0
  • 864595a chore(release): publish 8.49.0
  • 32b7e89 chore(deps): update dependency @​vitest/eslint-plugin to v1.5.1 (#11816)
  • 8fe3445 chore(release): publish 8.48.1
  • 6fb1551 chore(release): publish 8.48.0
  • a4dc42a chore: migrate to nx 22 (#11780)
  • 28cf803 chore(release): publish 8.47.0
  • 843f144 chore(release): publish 8.46.4
  • 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 @​typescript-eslint/parser since your current version.


Updates eslint-config-prettier from 8.10.2 to 10.1.8

Release notes

Sourced from eslint-config-prettier's releases.

v10.1.8

republish latest version

Full Changelog: prettier/eslint-config-prettier@v10.1.5...v10.1.8

v10.1.5

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.4...v10.1.5

v10.1.4

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.3...v10.1.4

v10.1.3

Patch Changes

New Contributors

Full Changelog: prettier/eslint-config-prettier@v10.1.2...v10.1.3

v10.1.2

Patch Changes

v10.1.1

Patch Changes

  • #309 eb56a5e Thanks @​JounQin! - fix: separate the /flat entry for compatibility

    For flat config users, the previous "eslint-config-prettier" entry still works, but "eslint-config-prettier/flat" adds a new name property for config-inspector, we just can't add it for the default entry for compatibility.

    See also prettier/eslint-config-prettier#308

    // before
    import eslintConfigPrettier from "eslint-config-prettier";
    // after
    import eslintConfigPrettier from "eslint-config-prettier/flat";

... (truncated)

Changelog

Sourced from eslint-config-prettier's changelog.

eslint-config-prettier

10.1.5

Patch Changes

10.1.4

Patch Changes

10.1.3

Patch Changes

10.1.2

Patch Changes

10.1.1

Patch Changes

  • #309 eb56a5e Thanks @​JounQin! - fix: separate the /flat entry for compatibility

    For flat config users, the previous "eslint-config-prettier" entry still works, but "eslint-config-prettier/flat" adds a new name property for config-inspector, we just can't add it for the default entry for compatibility.

    See also prettier/eslint-config-prettier#308

    // before
    import eslintConfigPrettier from "eslint-config-prettier";
    // after
    import eslintConfigPrettier from "eslint-config-prettier/flat";

10.1.0

Minor Changes

... (truncated)

Commits

Updates eslint-import-resolver-typescript from 3.10.1 to 4.4.4

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v4.4.4

Patch Changes

New Contributors

Full Changelog: import-js/eslint-import-resolver-typescript@v4.4.3...v4.4.4

v4.4.3

Patch Changes

v4.4.2

Patch Changes

Full Changelog: import-js/eslint-import-resolver-typescript@v4.4.1...v4.4.2

v4.4.1

Patch Changes

Full Changelog: import-js/eslint-import-resolver-typescript@v4.4.0...v4.4.1

v4.4.0

Minor Changes

Full Changelog: import-js/eslint-import-resolver-typescript@v4.3.5...v4.4.0

v4.3.5

Patch Changes

Full Changelog: import-js/eslint-import-resolver-typescript@v4.3.4...v4.3.5

v4.3.4

Patch Changes

... (truncated)

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

4.4.4

Patch Changes

4.4.3

Patch Changes

4.4.2

Patch Changes

4.4.1

Patch Changes

4.4.0

Minor Changes

4.3.5

Patch Changes

4.3.4

Patch Changes

4.3.3

Patch Changes

... (truncated)

Commits
  • 76672ae chore: release eslint-import-resolver-typescript (#467)
  • 93b39d2 fix(deps): update all dependencies (#468)
  • 799f1ce fix: include options hash in cache key for options normalization (#466)
  • c06392f docs: improve the documentation (#464)
  • ff0445f chore: release eslint-import-resolver-typescript (#463)
  • 43575e7 chore: migrate stable-hash to stable-hash-x (#462)
  • 5db36e7 chore: release eslint-import-resolver-typescript (#460)
  • f16150b fix: always sort projects by affinity before iterating (#459)
  • f9ad3b0 docs: add Star History section
  • c7d0125 chore: release eslint-import-resolver-typescript (#458)
  • Additional commits viewable in compare view

Updates eslint-plugin-react-hooks from 4.6.2 to 7.0.1

Release notes

Sourced from eslint-plugin-react-hooks's releases.

[email protected] (Oct 11, 2024)

This release only contains eslint-plugin-react-hooks. Notably, new violations and support for ESLint v9 were added.

eslint-plugin-react-hooks

  • New Violations: Component names now need to start with an uppercase letter instead of a non-lowercase letter. This means _Button or _component are no longer valid. (@​kassens) in #25162 For example, in
    function _Component() {
      useState()
      ^^^^^^^^ A React Hook "useState" is called in function "_Component" which is neither a Component nor a custom React Hook function.
    }
    _Component should be renamed to Component.
Changelog

Sourced from eslint-plugin-react-hooks's changelog.

7.0.1

  • Disallowed passing inline useEffectEvent values as JSX props to guard against accidental propagation. (#34820 by @​jf-eirinha)
  • Switch to export = so eslint-plugin-react-hooks emits correct types for consumers in Node16 ESM projects. (#34949 by @​karlhorky)
  • Tightened the typing of configs.flat so the configs export is always defined. (#34950 by @​poteto)
  • Fix named import runtime errors. (#34951, #34953 by @​karlhorky)

7.0.0

This release slims down presets to just 2 configurations (recommended and recommended-latest), and all compiler rules are enabled by default.

  • Breaking: Removed recommended-latest-legacy and flat/recommended configs. The plugin now provides recommended (legacy and flat configs with all recommended rules), and recommended-latest (legacy and flat configs with all recommended rules plus new bleeding edge experimental compiler rules). (@​poteto in #34757)

6.1.1

Note: 6.1.0 accidentally allowed use of recommended without flat config, causing errors when used with ESLint v9's defineConfig() helper. This has been fixed in 6.1.1.

6.1.0

Note: Version 6.0.0 was mistakenly released and immediately deprecated and untagged on npm. This is the first official 6.x major release and includes breaking changes.

  • Breaking: Require Node.js 18 or newer. (@​michaelfaith in #32458)
  • Breaking: Flat config is now the default recommended preset. Legacy config moved to recommended-legacy. (@​michaelfaith in #32457)
  • New Violations: Disallow calling use within try/catch blocks. (@​poteto in #34040)
  • New Violations: Disallow calling useEffectEvent functions in arbitrary closures. (@​jbrown215 in #33544)
  • Handle React.useEffect in addition to useEffect in rules-of-hooks. (@​Ayc0 in #34076)
  • Added react-hooks settings config option that to accept additionalEffectHooks that are used across exhaustive-deps and rules-of-hooks rules. (@​jbrown215) in #34497

6.0.0

Accidentally released. See 6.1.0 for the actual changes.

5.2.0

5.1.0

... (truncated)

Commits

Updates eslint-plugin-turbo from 1.13.4 to 2.7.2

Release notes

Sourced from eslint-plugin-turbo's releases.

Turborepo v2.7.2

What's Changed

Docs

Examples

Changelog

Full Changelog: vercel/turborepo@v2.7.1...v2.7.2

Turborepo v2.7.2-canary.2

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.7.2-canary.1...v2.7.2-canary.2

Turborepo v2.7.2-canary.1

What's Changed

Examples

Changelog

Full Changelog: https://github.com/vercel/turborepo/compare/v2.7.2-canary.0...v2.7.2-canar...

Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 29, 2025
Bumps the deps group with 37 updates in the /modules/web directory:

| Package | From | To |
| --- | --- | --- |
| [zod](https://github.com/colinhacks/zod) | `3.25.76` | `4.2.1` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.21.0` | `8.51.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.21.0` | `8.51.0` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `8.10.2` | `10.1.8` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.10.1` | `4.4.4` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.2` | `7.0.1` |
| [eslint-plugin-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-plugin-turbo) | `1.13.4` | `2.7.2` |
| [eslint-plugin-unused-imports](https://github.com/sweepline/eslint-plugin-unused-imports) | `3.2.0` | `4.3.0` |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `3.10.0` | `5.2.2` |
| [@radix-ui/react-primitive](https://github.com/radix-ui/primitives) | `1.0.3` | `2.1.4` |
| [date-fns](https://github.com/date-fns/date-fns) | `3.6.0` | `4.1.0` |
| [framer-motion](https://github.com/motiondivision/motion) | `11.18.2` | `12.23.26` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.323.0` | `0.562.0` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.2.1` | `0.4.6` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.3` |
| [react-day-picker](https://github.com/gpbl/react-day-picker) | `8.10.1` | `9.13.0` |
| [sonner](https://github.com/emilkowalski/sonner) | `1.7.4` | `2.0.7` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.6.0` | `3.4.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.3` |
| [@bufbuild/protobuf](https://github.com/bufbuild/protobuf-es/tree/HEAD/packages/protobuf) | `1.10.1` | `2.10.2` |
| [@connectrpc/connect-query](https://github.com/connectrpc/connect-query-es/tree/HEAD/packages/connect-query) | `1.4.2` | `2.2.0` |
| [@connectrpc/connect-web](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect-web) | `1.7.0` | `2.1.1` |
| [@formkit/auto-animate](https://github.com/formkit/auto-animate) | `0.8.4` | `0.9.0` |
| [@nivo/bar](https://github.com/plouc/nivo/tree/HEAD/packages/bar) | `0.84.0` | `0.99.0` |
| [@nivo/core](https://github.com/plouc/nivo/tree/HEAD/packages/core) | `0.84.0` | `0.99.0` |
| [@nivo/line](https://github.com/plouc/nivo/tree/HEAD/packages/line) | `0.84.0` | `0.99.0` |
| [@stripe/react-stripe-js](https://github.com/stripe/react-stripe-js) | `3.10.0` | `5.4.1` |
| [@stripe/stripe-js](https://github.com/stripe/stripe-js) | `5.10.0` | `8.6.0` |
| [immer](https://github.com/immerjs/immer) | `10.2.0` | `11.1.3` |
| [jotai-optics](https://github.com/jotaijs/jotai-optics) | `0.3.2` | `0.4.0` |
| [jotai-scope](https://github.com/jotaijs/jotai-scope) | `0.5.2` | `0.10.0` |
| [nanoid](https://github.com/ai/nanoid) | `5.0.9` | `5.1.6` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `2.1.9` | `4.1.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.2` | `7.11.0` |
| [simple-icons](https://github.com/simple-icons/simple-icons) | `13.21.0` | `16.3.0` |
| [superjson](https://github.com/blitz-js/superjson) | `2.2.1` | `2.2.6` |
| [zustand](https://github.com/pmndrs/zustand) | `4.5.7` | `5.0.9` |



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

Updates `@typescript-eslint/eslint-plugin` from 6.21.0 to 8.51.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.51.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.21.0 to 8.51.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.51.0/packages/parser)

Updates `eslint-config-prettier` from 8.10.2 to 10.1.8
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/eslint-config-prettier/commits/v10.1.8)

Updates `eslint-import-resolver-typescript` from 3.10.1 to 4.4.4
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.10.1...v4.4.4)

Updates `eslint-plugin-react-hooks` from 4.6.2 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 `eslint-plugin-turbo` from 1.13.4 to 2.7.2
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](https://github.com/vercel/turborepo/commits/v2.7.2/packages/eslint-plugin-turbo)

Updates `eslint-plugin-unused-imports` from 3.2.0 to 4.3.0
- [Commits](https://github.com/sweepline/eslint-plugin-unused-imports/commits/v4.3.0)

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

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

Updates `date-fns` from 3.6.0 to 4.1.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md)
- [Commits](date-fns/date-fns@v3.6.0...v4.1.0)

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

Updates `lucide-react` from 0.323.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 `next-themes` from 0.2.1 to 0.4.6
- [Release notes](https://github.com/pacocoursey/next-themes/releases)
- [Commits](https://github.com/pacocoursey/next-themes/commits/v0.4.6)

Updates `react` from 18.3.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 8.10.1 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@v8.10.1...v9.13.0)

Updates `react-hook-form` from 7.68.0 to 7.69.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.69.0)

Updates `sonner` from 1.7.4 to 2.0.7
- [Release notes](https://github.com/emilkowalski/sonner/releases)
- [Commits](https://github.com/emilkowalski/sonner/commits/v2.0.7)

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

Updates `react-dom` from 18.3.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 `@bufbuild/protobuf` from 1.10.1 to 2.10.2
- [Release notes](https://github.com/bufbuild/protobuf-es/releases)
- [Commits](https://github.com/bufbuild/protobuf-es/commits/v2.10.2/packages/protobuf)

Updates `@connectrpc/connect-query` from 1.4.2 to 2.2.0
- [Release notes](https://github.com/connectrpc/connect-query-es/releases)
- [Commits](https://github.com/connectrpc/connect-query-es/commits/v2.2.0/packages/connect-query)

Updates `@connectrpc/connect-web` from 1.7.0 to 2.1.1
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v2.1.1/packages/connect-web)

Updates `@formkit/auto-animate` from 0.8.4 to 0.9.0
- [Release notes](https://github.com/formkit/auto-animate/releases)
- [Commits](formkit/auto-animate@0.8.4...0.9.0)

Updates `@nivo/bar` from 0.84.0 to 0.99.0
- [Release notes](https://github.com/plouc/nivo/releases)
- [Commits](https://github.com/plouc/nivo/commits/v0.99.0/packages/bar)

Updates `@nivo/core` from 0.84.0 to 0.99.0
- [Release notes](https://github.com/plouc/nivo/releases)
- [Commits](https://github.com/plouc/nivo/commits/v0.99.0/packages/core)

Updates `@nivo/line` from 0.84.0 to 0.99.0
- [Release notes](https://github.com/plouc/nivo/releases)
- [Commits](https://github.com/plouc/nivo/commits/v0.99.0/packages/line)

Updates `@stripe/react-stripe-js` from 3.10.0 to 5.4.1
- [Release notes](https://github.com/stripe/react-stripe-js/releases)
- [Changelog](https://github.com/stripe/react-stripe-js/blob/master/CHANGELOG.md)
- [Commits](stripe/react-stripe-js@v3.10.0...v5.4.1)

Updates `@stripe/stripe-js` from 5.10.0 to 8.6.0
- [Release notes](https://github.com/stripe/stripe-js/releases)
- [Commits](stripe/stripe-js@v5.10.0...v8.6.0)

Updates `@tanstack/react-query` from 5.90.12 to 5.90.15
- [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 `@tanstack/react-query-devtools` from 5.91.1 to 5.91.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query-devtools/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/[email protected]/packages/react-query-devtools)

Updates `@uiw/codemirror-theme-github` from 4.25.3 to 4.25.4
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.3...v4.25.4)

Updates `@uiw/react-codemirror` from 4.25.3 to 4.25.4
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.25.3...v4.25.4)

Updates `immer` from 10.2.0 to 11.1.3
- [Release notes](https://github.com/immerjs/immer/releases)
- [Commits](immerjs/immer@v10.2.0...v11.1.3)

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 `jotai-optics` from 0.3.2 to 0.4.0
- [Changelog](https://github.com/jotaijs/jotai-optics/blob/main/CHANGELOG.md)
- [Commits](jotaijs/jotai-optics@v0.3.2...v0.4.0)

Updates `jotai-scope` from 0.5.2 to 0.10.0
- [Release notes](https://github.com/jotaijs/jotai-scope/releases)
- [Commits](jotaijs/jotai-scope@v0.5.2...v0.10.0)

Updates `nanoid` from 5.0.9 to 5.1.6
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@5.0.9...5.1.6)

Updates `react-resizable-panels` from 2.1.9 to 4.1.0
- [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@2.1.9...4.1.0)

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

Updates `sass` from 1.94.3 to 1.97.1
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.94.3...1.97.1)

Updates `simple-icons` from 13.21.0 to 16.3.0
- [Release notes](https://github.com/simple-icons/simple-icons/releases)
- [Commits](simple-icons/simple-icons@13.21.0...16.3.0)

Updates `superjson` from 2.2.1 to 2.2.6
- [Release notes](https://github.com/blitz-js/superjson/releases)
- [Commits](https://github.com/blitz-js/superjson/commits)

Updates `zustand` from 4.5.7 to 5.0.9
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@4.5.7...v5.0.9)

---
updated-dependencies:
- dependency-name: zod
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.51.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.51.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: eslint-import-resolver-typescript
  dependency-version: 4.4.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: eslint-plugin-turbo
  dependency-version: 2.7.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: eslint-plugin-unused-imports
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@hookform/resolvers"
  dependency-version: 5.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@radix-ui/react-primitive"
  dependency-version: 2.1.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: date-fns
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: framer-motion
  dependency-version: 12.23.26
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: lucide-react
  dependency-version: 0.562.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: next-themes
  dependency-version: 0.4.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: react
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: react-day-picker
  dependency-version: 9.13.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: react-hook-form
  dependency-version: 7.69.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: sonner
  dependency-version: 2.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: tailwind-merge
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: react-dom
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@bufbuild/protobuf"
  dependency-version: 2.10.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@connectrpc/connect-query"
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@connectrpc/connect-web"
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@formkit/auto-animate"
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: "@nivo/bar"
  dependency-version: 0.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: "@nivo/core"
  dependency-version: 0.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: "@nivo/line"
  dependency-version: 0.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: "@stripe/react-stripe-js"
  dependency-version: 5.4.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@stripe/stripe-js"
  dependency-version: 8.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.90.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.91.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: "@uiw/codemirror-theme-github"
  dependency-version: 4.25.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: "@uiw/react-codemirror"
  dependency-version: 4.25.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: immer
  dependency-version: 11.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: jotai
  dependency-version: 2.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: jotai-optics
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: jotai-scope
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: nanoid
  dependency-version: 5.1.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: react-resizable-panels
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: react-router-dom
  dependency-version: 7.11.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: sass
  dependency-version: 1.97.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: simple-icons
  dependency-version: 16.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: superjson
  dependency-version: 2.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: zustand
  dependency-version: 5.0.9
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/modules/web/deps-3c097a84fb branch from 7e918bf to 7c31eee Compare January 5, 2026 22:26
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.

1 participant