Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the dependencies group with 20 updates:

Package From To
@next/bundle-analyzer 16.0.5 16.0.7
@tanstack/react-query 5.90.11 5.90.12
lucide-react 0.555.0 0.556.0
posthog-js 1.301.1 1.302.2
posthog-node 5.17.0 5.17.2
react 19.2.0 19.2.1
react-dom 19.2.0 19.2.1
react-hook-form 7.67.0 7.68.0
svix 1.81.0 1.82.0
@next/eslint-plugin-next 16.0.5 16.0.7
@posthog/nextjs-config 1.6.3 1.6.4
@typescript-eslint/eslint-plugin 8.48.0 8.48.1
@typescript-eslint/parser 8.48.0 8.48.1
eslint-config-next 16.0.5 16.0.7
eslint-config-turbo 2.6.1 2.6.3
prettier 3.7.3 3.7.4
prettier-plugin-tailwindcss 0.7.1 0.7.2
tsx 4.20.6 4.21.0
typescript-eslint 8.48.0 8.48.1
vitest 4.0.8 4.0.15

Updates @next/bundle-analyzer from 16.0.5 to 16.0.7

Release notes

Sourced from @​next/bundle-analyzer's releases.

v16.0.7

Please see CVE-2025-66478 for additional details about this release.

v16.0.6

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

Core Changes

  • bump the browserslist version to silence a warning in CI (#86625)

Credits

Huge thanks to @​lukesandberg for helping!

Commits

Updates @tanstack/react-query from 5.90.11 to 5.90.12

Release notes

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

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

Patch Changes

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

@​tanstack/react-query@​5.90.12

Patch Changes

  • Updated dependencies [72d8ac5]:
    • @​tanstack/query-core@​5.90.12
Changelog

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

5.90.12

Patch Changes

  • Updated dependencies [72d8ac5]:
    • @​tanstack/query-core@​5.90.12
Commits

Updates lucide-react from 0.555.0 to 0.556.0

Release notes

Sourced from lucide-react's releases.

Version 0.556.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.555.0...0.556.0

Commits

Updates posthog-js from 1.301.1 to 1.302.2

Release notes

Sourced from posthog-js's releases.

posthog-js@1.302.2

1.302.2

Patch Changes

posthog-js@1.302.1

1.302.1

Patch Changes

posthog-js@1.302.0

1.302.0

Minor Changes

posthog-js@1.301.2

1.301.2

Patch Changes

  • #2690 e9c00fd Thanks @​robbie-c! - Related to https://www.wiz.io/blog/critical-vulnerability-in-react-cve-2025-55182

    We didn't include any of the vulnerable deps in any of our packages, however we did have them as dev / test / example project dependencies.

    There was no way that any of these vulnerable packages were included in any of our published packages.

    We've now patched out those dependencies.

    Out of an abundance of caution, let's create a new release of all of our packages. (2025-12-04)

  • Updated dependencies [e9c00fd]:

    • @​posthog/core@​1.7.1
Commits

Updates posthog-node from 5.17.0 to 5.17.2

Release notes

Sourced from posthog-node's releases.

posthog-node@5.17.2

5.17.2

Patch Changes

  • #2678 ca4436e Thanks @​haacked! - Local evaluation polling sends If-None-Match header with latest etag to reduce bandwidth when no flags have changed. (2025-12-04)

posthog-node@5.17.1

5.17.1

Patch Changes

  • #2690 e9c00fd Thanks @​robbie-c! - Related to https://www.wiz.io/blog/critical-vulnerability-in-react-cve-2025-55182

    We didn't include any of the vulnerable deps in any of our packages, however we did have them as dev / test / example project dependencies.

    There was no way that any of these vulnerable packages were included in any of our published packages.

    We've now patched out those dependencies.

    Out of an abundance of caution, let's create a new release of all of our packages. (2025-12-04)

  • Updated dependencies [e9c00fd]:

    • @​posthog/core@​1.7.1
Changelog

Sourced from posthog-node's changelog.

5.17.2

Patch Changes

  • #2678 ca4436e Thanks @​haacked! - Local evaluation polling sends If-None-Match header with latest etag to reduce bandwidth when no flags have changed. (2025-12-04)

5.17.1

Patch Changes

  • #2690 e9c00fd Thanks @​robbie-c! - Related to https://www.wiz.io/blog/critical-vulnerability-in-react-cve-2025-55182

    We didn't include any of the vulnerable deps in any of our packages, however we did have them as dev / test / example project dependencies.

    There was no way that any of these vulnerable packages were included in any of our published packages.

    We've now patched out those dependencies.

    Out of an abundance of caution, let's create a new release of all of our packages. (2025-12-04)

  • Updated dependencies [e9c00fd]:

    • @​posthog/core@​1.7.1
Commits

Updates react from 19.2.0 to 19.2.1

Release notes

Sourced from react's releases.

19.2.1 (December 3rd, 2025)

React Server Components

Changelog

Sourced from react's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

Commits

Updates react-dom from 19.2.0 to 19.2.1

Release notes

Sourced from react-dom's releases.

19.2.1 (December 3rd, 2025)

React Server Components

Changelog

Sourced from react-dom's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

Commits

Updates react-hook-form from 7.67.0 to 7.68.0

Release notes

Sourced from react-hook-form's releases.

Version 7.68.0

🎧 feat: <FormStateSubscribe /> component (#13142)

import { useForm, FormStateSubscribe } from 'react-hook-form';
const App = () => {
const { register, control } = useForm();
return (
<div>
<form>
<input {...register('foo')} />
<input {...register('bar')} />
</form>
{/* re-render only when formState of foo changes */}
<FormStateSubscribe
control={control}
name={"foo"}
render={({errors}) => <span>{errors.foo?.message}</span>}
/>
</div>
);
};

🐞 fix: clear validation errors synchronously in reset() to fix Next.js 16 Server Actions issue (#13139) Revert "✨ fix(types): allow undefined value with async defaultValues in Contr…" (#13171)

thanks to @​xiangnuans, @​abnud11, @​ntatoud & @​ap0nia

Commits
  • b84595e 7.68.0
  • f51aaa8 🧹 chore: clean up imports in deep-equal (#13174)
  • baa0733 Revert "✨ fix(types): allow undefined value with async defaultValues in Contr...
  • e82e05e 🐞 fix: clear validation errors synchronously in reset() to fix Next.js 16 Ser...
  • 175cbb9 🪖 chore: upgrade eslint react hooks (#13168)
  • 43bcf05 🎧 feat: <FormStateSubscribe /> component (#13142)
  • 6f39b1e 7.67.0
  • 90d19ad 🎯 feat: add exact to useController props (#13154)
  • ceb0b8f ✨ fix(types): allow undefined value with async defaultValues in Contr… (#13160)
  • a42f198 🐞 fix(types): correct PathValueImpl type inference (#13150)
  • See full diff in compare view

Updates svix from 1.81.0 to 1.82.0

Release notes

Sourced from svix's releases.

v1.82.0

What's Changed

  • Libs/All: Add support for connector UIDs
  • CLI: Add support for the Connector API
  • CLI: Add -v --verbose flag
  • CLI: Fix a bug in config file saving
  • Server: Allow specifying queue prefix (thanks @​turip)

New Contributors

Full Changelog: svix/svix-webhooks@v1.81.0...v1.82.0

Changelog

Sourced from svix's changelog.

Version 1.82.0

  • Libs/All: Add support for connector UIDs
  • CLI: Add support for the Connector API
  • CLI: Add -v --verbose flag
  • CLI: Fix a bug in config file saving
  • Server: Allow specifying queue prefix (thanks @​turip)
Commits

Updates @next/eslint-plugin-next from 16.0.5 to 16.0.7

Release notes

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

v16.0.7

Please see CVE-2025-66478 for additional details about this release.

v16.0.6

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

Core Changes

  • bump the browserslist version to silence a warning in CI (#86625)

Credits

Huge thanks to @​lukesandberg for helping!

Commits

Updates @posthog/nextjs-config from 1.6.3 to 1.6.4

Release notes

Sourced from @​posthog/nextjs-config's releases.

@​posthog/nextjs-config@​1.6.4

1.6.4

Patch Changes

  • #2690 e9c00fd Thanks @​robbie-c! - Related to https://www.wiz.io/blog/critical-vulnerability-in-react-cve-2025-55182

    We didn't include any of the vulnerable deps in any of our packages, however we did have them as dev / test / example project dependencies.

    There was no way that any of these vulnerable packages were included in any of our published packages.

    We've now patched out those dependencies.

    Out of an abundance of caution, let's create a new release of all of our packages. (2025-12-04)

  • Updated dependencies [e9c00fd]:

    • @​posthog/core@​1.7.1
    • @​posthog/webpack-plugin@​1.1.4
Changelog

Sourced from @​posthog/nextjs-config's changelog.

1.6.4

Patch Changes

  • #2690 e9c00fd Thanks @​robbie-c! - Related to https://www.wiz.io/blog/critical-vulnerability-in-react-cve-2025-55182

    We didn't include any of the vulnerable deps in any of our packages, however we did have them as dev / test / example project dependencies.

    There was no way that any of these vulnerable packages were included in any of our published packages.

    We've now patched out those dependencies.

    Out of an abundance of caution, let's create a new release of all of our packages. (2025-12-04)

  • Updated dependencies [e9c00fd]:

    • @​posthog/core@​1.7.1
    • @​posthog/webpack-plugin@​1.1.4
Commits

Updates @typescript-eslint/eslint-plugin from 8.48.0 to 8.48.1

Release notes

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

v8.48.1

8.48.1 (2025-12-02)

⏪ Reverts

  • eslint-plugin: revert "[no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)" (#11812)

🩹 Fixes

  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)

❤️ Thank You

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

Changelog

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

8.48.1 (2025-12-02)

🩹 Fixes

  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)

❤️ Thank You

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

Commits
  • 8fe3445 chore(release): publish 8.48.1
  • 5ac66a6 fix(eslint-plugin): revert "[no-redundant-type-constituents] use assignabilit...
  • 906cc3c fix(eslint-plugin): [restrict-template-expressions] check base types in allow...
  • 16cf0f7 test(eslint-plugin): [consistent-type-exports] add more shadowed imports test...
  • 0db02ac fix(eslint-plugin): honor ignored base types on generic classes (#11767)
  • bb9ba53 fix(eslint-plugin): [consistent-type-exports] check value flag before resolvi...
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.48.0 to 8.48.1

Release notes

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

v8.48.1

8.48.1 (2025-12-02)

⏪ Reverts

  • eslint-plugin: revert "[no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)" (#11812)

🩹 Fixes

  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)

❤️ Thank You

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

Changelog

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

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.

Commits

Updates eslint-config-next from 16.0.5 to 16.0.7

Release notes

Sourced from eslint-config-next's releases.

v16.0.7

Please see CVE-2025-66478 for additional details about this release.

v16.0.6

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

Core Changes

  • bump the browserslist version to silence a warning in CI (#86625)

Credits

Huge thanks to @​lukesandberg for helping!

Commits

Updates eslint-config-turbo from 2.6.1 to 2.6.3

Release notes

Sourced from eslint-config-turbo's releases.

Turborepo v2.6.3

What's Changed

turbo-ignore

Examples

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.6.2...v2.6.3

Turborepo v2.6.3-canary.0

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.6.2...v2.6.3-canary.0

Turborepo v2.6.2

What's Changed

Docs

... (truncated)

Changelog

Sourced from eslint-config-turbo's changelog.

Release Documentation

Quick Start

Release Turborepo CLI

  1. Create a release by triggering the [Turborepo Release][1] workflow

    • Specify the semver increment using the SemVer Increment field (start with prerelease)
    • Check the "Dry Run" box to run the full release workflow without publishing any packages. Artifacts will be created that you can test with locally.
  2. A PR is automatically opened to merge the release branch created in step 1 back into main

    • ⚠️ Merge this in! You don't need to wait for tests to pass (because they won't pass until after this PR is merged in). It's important to merge this branch soon after the publish is successful.

Release @turbo/repository

  1. Run [bump-version.sh][4] to update the versions of the packages. Merge in the changes to main.

  2. Create a release by triggering the [Turborepo Library Release][5] workflow.

    • Check the "Dry Run" box to run the full release workflow without publishing any packages.

Notes

  • GitHub Release Notes are published automatically using the config from [turborepo-release.yml][2], triggered by the [turbo-orchestrator][3] bot.

Turborepo CLI Release Process - In-Depth Guide

This section provides comprehensive documentation on how the Turborepo CLI is released, including the architecture, workflows, and detailed step-by-step processes.

Table of Contents

  1. Architecture Overview
  2. Version Management
  3. Release Workflow Stages
  4. Packages Released
  5. Platform-Specific Binaries
  6. Technical Reference
  7. Best Practices

Architecture Overview

The Turborepo release process is a multi-stage pipeline that:

  1. Manages versions centrally via version.txt at the repository root

... (truncated)

Commits
Maintainer changes

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


Updates prettier from 3.7.3 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits

Updates prettier-plugin-tailwindcss from 0.7.1 to 0.7.2

Release notes

Sourced from prettier-plugin-tailwindcss's releases.

v0.7.2

Fixed

  • Load compatible plugins sequentially to work around race conditions in Node.js (#412)
  • Fix compatibility with prettier-plugin-svelte when using Prettier v3.7+ (#418)
Changelog

Sourced from prettier-plugin-tailwindcss's changelog.

[0.7.2] - 2025-12-01

Fixed

  • Load compatible plugins sequentially to work around race conditions in Node.js (#412)
  • Fix compatibility with prettier-plugin-svelte when using Prettier v3.7+ (#418)
Commits

Bumps the dependencies group with 20 updates:

| Package | From | To |
| --- | --- | --- |
| [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/HEAD/packages/next-bundle-analyzer) | `16.0.5` | `16.0.7` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.11` | `5.90.12` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.555.0` | `0.556.0` |
| [posthog-js](https://github.com/PostHog/posthog-js) | `1.301.1` | `1.302.2` |
| [posthog-node](https://github.com/PostHog/posthog-js/tree/HEAD/packages/node) | `5.17.0` | `5.17.2` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.1` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.0` | `19.2.1` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.67.0` | `7.68.0` |
| [svix](https://github.com/svix/svix-libs) | `1.81.0` | `1.82.0` |
| [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) | `16.0.5` | `16.0.7` |
| [@posthog/nextjs-config](https://github.com/PostHog/posthog-js/tree/HEAD/packages/nextjs-config) | `1.6.3` | `1.6.4` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.48.0` | `8.48.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.48.0` | `8.48.1` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.0.5` | `16.0.7` |
| [eslint-config-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo) | `2.6.1` | `2.6.3` |
| [prettier](https://github.com/prettier/prettier) | `3.7.3` | `3.7.4` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.7.1` | `0.7.2` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.6` | `4.21.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.48.0` | `8.48.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.8` | `4.0.15` |


Updates `@next/bundle-analyzer` from 16.0.5 to 16.0.7
- [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.0.7/packages/next-bundle-analyzer)

Updates `@tanstack/react-query` from 5.90.11 to 5.90.12
- [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/react-query@5.90.12/packages/react-query)

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

Updates `posthog-js` from 1.301.1 to 1.302.2
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/compare/posthog-js@1.301.1...posthog-js@1.302.2)

Updates `posthog-node` from 5.17.0 to 5.17.2
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/packages/node/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/commits/posthog-node@5.17.2/packages/node)

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

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

Updates `react-hook-form` from 7.67.0 to 7.68.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.67.0...v7.68.0)

Updates `svix` from 1.81.0 to 1.82.0
- [Release notes](https://github.com/svix/svix-libs/releases)
- [Changelog](https://github.com/svix/svix-webhooks/blob/main/ChangeLog.md)
- [Commits](svix/svix-webhooks@v1.81.0...v1.82.0)

Updates `@next/eslint-plugin-next` from 16.0.5 to 16.0.7
- [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.0.7/packages/eslint-plugin-next)

Updates `@posthog/nextjs-config` from 1.6.3 to 1.6.4
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/packages/nextjs-config/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/commits/@posthog/nextjs-config@1.6.4/packages/nextjs-config)

Updates `@typescript-eslint/eslint-plugin` from 8.48.0 to 8.48.1
- [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.48.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.48.0 to 8.48.1
- [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.48.1/packages/parser)

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

Updates `eslint-config-turbo` from 2.6.1 to 2.6.3
- [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.6.3/packages/eslint-config-turbo)

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

Updates `prettier-plugin-tailwindcss` from 0.7.1 to 0.7.2
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.7.1...v0.7.2)

Updates `tsx` from 4.20.6 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.6...v4.21.0)

Updates `typescript-eslint` from 8.48.0 to 8.48.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.1/packages/typescript-eslint)

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

---
updated-dependencies:
- dependency-name: "@next/bundle-analyzer"
  dependency-version: 16.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.90.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: lucide-react
  dependency-version: 0.556.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: posthog-js
  dependency-version: 1.302.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: posthog-node
  dependency-version: 5.17.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react
  dependency-version: 19.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-version: 19.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-hook-form
  dependency-version: 7.68.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: svix
  dependency-version: 1.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@next/eslint-plugin-next"
  dependency-version: 16.0.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@posthog/nextjs-config"
  dependency-version: 1.6.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-config-next
  dependency-version: 16.0.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-config-turbo
  dependency-version: 2.6.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prettier-plugin-tailwindcss
  dependency-version: 0.7.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vitest
  dependency-version: 4.0.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 6, 2025
@vercel
Copy link

vercel bot commented Dec 6, 2025

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

Project Deployment Preview Comments Updated (UTC)
mikebifulco-com-bnbu Ready Ready Preview Comment Dec 6, 2025 5:14am

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