Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the npm group with 16 updates:

Package From To
@fortawesome/react-fontawesome 3.1.0 3.1.1
@vercel/analytics 1.5.0 1.6.0
@vercel/speed-insights 1.2.0 1.3.0
framer-motion 12.23.24 12.23.25
next 16.0.3 16.0.6
@biomejs/biome 2.3.2 2.3.8
@graphql-codegen/cli 6.0.1 6.1.0
@graphql-codegen/typescript-operations 5.0.2 5.0.6
@tailwindcss/postcss 4.1.16 4.1.17
@tsconfig/next 2.0.3 2.0.4
@types/node 24.9.2 24.10.1
@types/react 19.2.2 19.2.7
@types/react-dom 19.2.2 19.2.3
graphql-request 7.3.1 7.3.5
tailwind-variants 3.1.1 3.2.2
tailwindcss 4.1.16 4.1.17

Updates @fortawesome/react-fontawesome from 3.1.0 to 3.1.1

Release notes

Sourced from @​fortawesome/react-fontawesome's releases.

v3.1.1

3.1.1 (2025-11-28)

Bug Fixes

  • WCAG: allow custom role attribute on svgs like previous versions (ef4986b)

Documentation

  • remove irrelevant upgrade guide from 0.1-0.2x (7d41077)

Chores

Changelog

Sourced from @​fortawesome/react-fontawesome's changelog.

3.1.1 (2025-11-28)

Bug Fixes

  • WCAG: allow custom role attribute on svgs like previous versions (ef4986b)

Documentation

  • remove irrelevant upgrade guide from 0.1-0.2x (7d41077)

Chores

Commits
  • 24238e8 chore(release): 3.1.1 [skip ci]
  • 2aee952 chore(release): explicit registry in publish script
  • ebabf46 chore(release): fix semantic release config missing npm plugin
  • 9c50bbb Merge pull request #609 from FortAwesome/fix/role-attribute
  • ef4986b fix(WCAG): allow custom role attribute on svgs like previous versions
  • 7d41077 docs: remove irrelevant upgrade guide from 0.1-0.2x
  • 2aed44f Merge pull request #608 from FortAwesome/fix/cve-fixes
  • 2cd0c3f chore(deps): fix GH advisory GHSA-5j98-mcp5-4vw2
  • 779488e chore(deps): regenerate lockfile
  • b92e5a7 chore(deps): upgrade all dev deps
  • See full diff in compare view

Updates @vercel/analytics from 1.5.0 to 1.6.0

Release notes

Sourced from @​vercel/analytics's releases.

1.6.0

What's Changed

New Contributors

Full Changelog: vercel/analytics@1.5.0...1.6.0

Commits

Updates @vercel/speed-insights from 1.2.0 to 1.3.0

Release notes

Sourced from @​vercel/speed-insights's releases.

1.3.0

What's Changed

New Contributors

Full Changelog: vercel/speed-insights@1.2.0...1.3.0

Commits
  • 7ed15ed fix: add route param to beforeSend event type (#102)
  • a1dfa74 feat: next release and postinstall script removal (#106)
  • f48623c feat(nuxt): Add support for injectSpeedInsights() and Nuxt module (#104)
  • See full diff in compare view

Updates framer-motion from 12.23.24 to 12.23.25

Changelog

Sourced from framer-motion's changelog.

[12.23.25] 2025-12-01

Fixed

  • Ensure relative projection boxes are re-measured when parent layout changes.
Commits

Updates next from 16.0.3 to 16.0.6

Release notes

Sourced from next's releases.

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!

v16.0.5

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

Core Changes

  • fix(nodejs-middleware): await for body cloning to be properly finalized (#85418)

Credits

Huge thanks to @​lucasadrianof for helping!

v16.0.4

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

Core Changes

  • fix: Rename proxy.js to middleware.js in NFT file (#86214)
  • fix: prevent fetch abort errors propagating to user error boundaries (#86277)
  • Turbopack: fix passing project options from napi (#86256)

Credits

Huge thanks to @​devjiwonchoi, @​sokra and @​ztanner for helping!

Commits
  • aab1edc v16.0.6
  • 279f2e3 bump the browserslist version to silence a warning in CI (#86625)
  • 89ccb9f v16.0.5
  • 75f63f7 backport fix(nodejs-middleware): await for body cloning to be properly finali...
  • d440c75 v16.0.4
  • 296923e Turbopack: fix passing project options from napi (#86256)
  • 98317f5 fix: prevent fetch abort errors propagating to user error boundaries (#86277)
  • 7780025 fix: Rename proxy.js to middleware.js in NFT file (#86214)
  • See full diff in compare view

Updates @biomejs/biome from 2.3.2 to 2.3.8

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.8

2.3.8

Patch Changes

  • #8188 4ca088c Thanks @​ematipico! - Fixed #7390, where Biome couldn't apply the correct configuration passed via --config-path.

    If you have multiple root configuration files, running any command with --config-path will now apply the chosen configuration file.

  • #8171 79adaea Thanks @​dibashthapa! - Added the new rule noLeakedRender. This rule helps prevent potential leaks when rendering components that use binary expressions or ternaries.

    For example, the following code triggers the rule because the component would render 0:

    const Component = () => {
      const count = 0;
      return <div>{count && <span>Count: {count}</span>}</div>;
    };
  • #8116 b537918 Thanks @​Netail! - Added the nursery rule noDuplicatedSpreadProps. Disallow JSX prop spreading the same identifier multiple times.

    Invalid:

    <div {...props} something="else" {...props} />
  • #8256 f1e4696 Thanks @​cormacrelf! - Fixed a bug where logs were discarded (the kind from --log-level=info etc.). This is a regression introduced after an internal refactor that wasn't adequately tested.

  • #8226 3f19b52 Thanks @​dyc3! - Fixed #8222: The HTML parser, with Vue directives enabled, can now parse v-slot shorthand syntax, e.g. \<template #foo>.

  • #8007 182ecdc Thanks @​brandonmcconnell! - Added support for dollar-sign-prefixed filenames in the useFilenamingConvention rule.

    Biome now allows filenames starting with the dollar-sign (e.g. $postId.tsx) by default to support naming conventions used by frameworks such as TanStack Start for file-based-routing.

  • #8218 91484d1 Thanks @​hirokiokada77! - Added the noMultiStr rule, which disallows creating multiline strings by escaping newlines.

    Invalid:

    const foo =
      "Line 1\n\
    Line 2";

    Valid:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.8

Patch Changes

  • #8188 4ca088c Thanks @​ematipico! - Fixed #7390, where Biome couldn't apply the correct configuration passed via --config-path.

    If you have multiple root configuration files, running any command with --config-path will now apply the chosen configuration file.

  • #8171 79adaea Thanks @​dibashthapa! - Added the new rule noLeakedRender. This rule helps prevent potential leaks when rendering components that use binary expressions or ternaries.

    For example, the following code triggers the rule because the component would render 0:

    const Component = () => {
      const count = 0;
      return <div>{count && <span>Count: {count}</span>}</div>;
    };
  • #8116 b537918 Thanks @​Netail! - Added the nursery rule noDuplicatedSpreadProps. Disallow JSX prop spreading the same identifier multiple times.

    Invalid:

    <div {...props} something="else" {...props} />
  • #8256 f1e4696 Thanks @​cormacrelf! - Fixed a bug where logs were discarded (the kind from --log-level=info etc.). This is a regression introduced after an internal refactor that wasn't adequately tested.

  • #8226 3f19b52 Thanks @​dyc3! - Fixed #8222: The HTML parser, with Vue directives enabled, can now parse v-slot shorthand syntax, e.g. \<template #foo>.

  • #8007 182ecdc Thanks @​brandonmcconnell! - Added support for dollar-sign-prefixed filenames in the useFilenamingConvention rule.

    Biome now allows filenames starting with the dollar-sign (e.g. $postId.tsx) by default to support naming conventions used by frameworks such as TanStack Start for file-based-routing.

  • #8218 91484d1 Thanks @​hirokiokada77! - Added the noMultiStr rule, which disallows creating multiline strings by escaping newlines.

    Invalid:

    const foo =
      "Line 1\n\
    Line 2";

    Valid:

    const foo = "Line 1\nLine 2";
    const bar = `Line 1

... (truncated)

Commits
Maintainer changes

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


Updates @graphql-codegen/cli from 6.0.1 to 6.1.0

Changelog

Sourced from @​graphql-codegen/cli's changelog.

6.1.0

Minor Changes

Patch Changes

  • Updated dependencies [9e70bcb]:
    • @​graphql-codegen/plugin-helpers@​6.1.0
    • @​graphql-codegen/client-preset@​5.2.0

6.0.2

Patch Changes

Commits

Updates @graphql-codegen/typescript-operations from 5.0.2 to 5.0.6

Changelog

Sourced from @​graphql-codegen/typescript-operations's changelog.

5.0.6

Patch Changes

  • Updated dependencies [b995ed1]:
    • @​graphql-codegen/visitor-plugin-common@​6.2.1
    • @​graphql-codegen/typescript@​5.0.6

5.0.5

Patch Changes

  • Updated dependencies [f821e8a, 9e70bcb]:
    • @​graphql-codegen/visitor-plugin-common@​6.2.0
    • @​graphql-codegen/plugin-helpers@​6.1.0
    • @​graphql-codegen/typescript@​5.0.5

5.0.4

Patch Changes

  • Updated dependencies [51a1a72]:
    • @​graphql-codegen/visitor-plugin-common@​6.1.2
    • @​graphql-codegen/typescript@​5.0.4

5.0.3

Patch Changes

  • Updated dependencies [6715330]:
    • @​graphql-codegen/visitor-plugin-common@​6.1.1
    • @​graphql-codegen/typescript@​5.0.3
Commits

Updates @tailwindcss/postcss from 4.1.16 to 4.1.17

Release notes

Sourced from @​tailwindcss/postcss's releases.

v4.1.17

Fixed

  • Substitute @variant inside legacy JS APIs (#19263)
  • Prevent occasional crash on Windows when loaded into a worker thread (#19242)
Changelog

Sourced from @​tailwindcss/postcss's changelog.

[4.1.17] - 2025-11-06

Fixed

  • Substitute @variant inside legacy JS APIs (#19263)
  • Prevent occasional crash on Windows when loaded into a worker thread (#19242)
Commits

Updates @tsconfig/next from 2.0.3 to 2.0.4

Commits

Updates @types/node from 24.9.2 to 24.10.1

Commits

Updates @types/react from 19.2.2 to 19.2.7

Commits

Updates @types/react-dom from 19.2.2 to 19.2.3

Commits

Updates graphql-request from 7.3.1 to 7.3.5

Release notes

Sourced from graphql-request's releases.

[email protected]

Bug Fixes

  • Fixed #1281: GraphQL errors and data are now accessible from 4xx/5xx HTTP responses
  • Fixed #1461: ClientError is properly returned for non-2xx responses with malformed bodies
  • Fixed #1462: ClientError is properly returned for non-2xx responses with unsupported content types

Changes

  • Non-2xx HTTP responses now parse the response body first to extract GraphQL errors/data when available
  • Non-2xx responses with valid GraphQL bodies return ClientError with errors and data accessible
  • Non-2xx responses with invalid bodies still return ClientError (not generic Error) for backwards compatibility
  • This release reverts PRs #1457 and #1459 which introduced regressions, then reapplies a minimal fix for #1281

Breaking Changes

None - this release maintains backwards compatibility while adding support for accessing GraphQL errors from 4xx/5xx responses.

[email protected]

Bug Fixes

  • Non-JSON Error Response Handling: Fixed regression in 7.3.2 where servers returning HTTP 4xx/5xx status codes with non-JSON response bodies (HTML, plain text) would throw an unhelpful error: "Invalid execution result: result is not object or array" (#1459, closes #1458)
    • Added safe JSON parsing fallback for responses without proper Content-Type headers
    • Returns descriptive error messages with response body preview for non-JSON responses
    • Handles common production scenarios: load balancer errors (502/503 HTML pages), CDN errors, WAF/firewall responses, misconfigured servers
    • Maintains backward compatibility for servers that omit Content-Type but return valid JSON
    • Added comprehensive test coverage for HTML, plain text, and missing Content-Type scenarios

What Changed

Version 7.3.2 introduced a bug where the ELSE branch in parseResultFromResponse would pass raw strings (HTML, plain text) to a parser expecting objects/arrays. This only surfaced when:

  1. Server returns 4xx/5xx status code
  2. Content-Type header is missing or non-JSON (e.g., text/html, text/plain)
  3. Response body is not valid JSON

This is now fixed with graceful error handling and clear error messages.

[email protected]

Bug Fixes

  • HTTP Error Handling: Fixed regression from v6 to v7 where HTTP 4xx/5xx responses would not include GraphQL errors from response body in ClientError (#1457, closes #1281)

    • Response body is now parsed before checking HTTP status
    • Users can access GraphQL errors via error.response.errors even with non-2xx status codes
    • Common use case: authentication errors (422), server errors (500)
  • graphql-codegen Compatibility: Added support for TypedDocumentString from @graphql-codegen when using documentMode: 'string' (#1456, closes #1453)

    • Handles boxed String objects created by TypedDocumentString class
    • Normalizes document input to prevent crashes when passing to GraphQL operations
Commits

Updates tailwind-variants from 3.1.1 to 3.2.2

Release notes

Sourced from tailwind-variants's releases.

v3.2.2

No significant changes

    View changes on GitHub

v3.2.1

   🐞 Bug Fixes

    View changes on GitHub

v3.2.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Changelog

Sourced from tailwind-variants's changelog.

3.2.2 (2025-11-22)

3.2.1 (2025-11-22)

Bug Fixes

  • update cn function type and import cx from tailwind-variants/lite (#285) (3a3afce)

3.2.0 (2025-11-22)

Bug Fixes

  • export defaultConfig as value and remove responsiveVariants (#284) (65ee73c)
  • make twMerge default to true in cn function (#283) (1659aa7)
  • no longer minifyng the code (#282) (34c62f4)

Features

  • add cx function and refactor cn to use tailwind-merge (#278) (8ec5f6f)
Commits
  • fb6e0bf chore: release v3.2.2
  • ee83f93 refactor: split cn into cn and cnMerge functions (#286)
  • 9c3a937 chore: release v3.2.1
  • 3a3afce fix: update cn function type and import cx from tailwind-variants/lite (#285)
  • c19f93d chore: release v3.2.0
  • 65ee73c fix: export defaultConfig as value and remove responsiveVariants (#284)
  • e531070 Merge branch 'main' of github.com:nextui-org/tailwind-variants
  • a3c7505 refactor: simplify withFalsy array in benchmark.js
  • 1659aa7 fix: make twMerge default to true in cn function (#283)
  • d85ad99 Merge branch 'main' of github.com:nextui-org/tailwind-variants
  • Additional commits viewable in compare view

Updates tailwindcss from 4.1.16 to 4.1.17

Release notes

Sourced from tailwindcss's releases.

v4.1.17

Fixed

  • Substitute @variant inside legacy JS APIs (#19263)
  • Prevent occasional crash on Windows when loaded into a worker thread (#19242)
Changelog

Sourced from tailwindcss's changelog.

[4.1.17] - 2025-11-06

Fixed

  • Substitute @variant inside legacy JS APIs (#19263)
  • Prevent occasional crash on Windows when loaded into a worker thread (#19242)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [@fortawesome/react-fontawesome](https://github.com/FortAwesome/react-fontawesome) | `3.1.0` | `3.1.1` |
| [@vercel/analytics](https://github.com/vercel/analytics/tree/HEAD/packages/web) | `1.5.0` | `1.6.0` |
| [@vercel/speed-insights](https://github.com/vercel/speed-insights/tree/HEAD/packages/web) | `1.2.0` | `1.3.0` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.23.24` | `12.23.25` |
| [next](https://github.com/vercel/next.js) | `16.0.3` | `16.0.6` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.2` | `2.3.8` |
| [@graphql-codegen/cli](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/graphql-codegen-cli) | `6.0.1` | `6.1.0` |
| [@graphql-codegen/typescript-operations](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/operations) | `5.0.2` | `5.0.6` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.16` | `4.1.17` |
| [@tsconfig/next](https://github.com/tsconfig/bases/tree/HEAD/bases) | `2.0.3` | `2.0.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.9.2` | `24.10.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.2` | `19.2.7` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.2` | `19.2.3` |
| [graphql-request](https://github.com/graffle-js/graffle) | `7.3.1` | `7.3.5` |
| [tailwind-variants](https://github.com/heroui-inc/tailwind-variants) | `3.1.1` | `3.2.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.16` | `4.1.17` |


Updates `@fortawesome/react-fontawesome` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/FortAwesome/react-fontawesome/releases)
- [Changelog](https://github.com/FortAwesome/react-fontawesome/blob/main/CHANGELOG.md)
- [Commits](FortAwesome/react-fontawesome@v3.1.0...v3.1.1)

Updates `@vercel/analytics` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/vercel/analytics/releases)
- [Commits](https://github.com/vercel/analytics/commits/1.6.0/packages/web)

Updates `@vercel/speed-insights` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/vercel/speed-insights/releases)
- [Commits](https://github.com/vercel/speed-insights/commits/1.3.0/packages/web)

Updates `framer-motion` from 12.23.24 to 12.23.25
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.23.24...v12.23.25)

Updates `next` from 16.0.3 to 16.0.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.0.3...v16.0.6)

Updates `@biomejs/biome` from 2.3.2 to 2.3.8
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/[email protected]/packages/@biomejs/biome)

Updates `@graphql-codegen/cli` from 6.0.1 to 6.1.0
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/graphql-codegen-cli/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/graphql-codegen-cli)

Updates `@graphql-codegen/typescript-operations` from 5.0.2 to 5.0.6
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/operations/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/[email protected]/packages/plugins/typescript/operations)

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

Updates `@tsconfig/next` from 2.0.3 to 2.0.4
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

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

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

Updates `@types/react-dom` from 19.2.2 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `graphql-request` from 7.3.1 to 7.3.5
- [Release notes](https://github.com/graffle-js/graffle/releases)
- [Commits](https://github.com/graffle-js/graffle/compare/[email protected])

Updates `tailwind-variants` from 3.1.1 to 3.2.2
- [Release notes](https://github.com/heroui-inc/tailwind-variants/releases)
- [Changelog](https://github.com/heroui-inc/tailwind-variants/blob/main/CHANGELOG.md)
- [Commits](heroui-inc/tailwind-variants@v3.1.1...v3.2.2)

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

---
updated-dependencies:
- dependency-name: "@fortawesome/react-fontawesome"
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@vercel/analytics"
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@vercel/speed-insights"
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: framer-motion
  dependency-version: 12.23.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: next
  dependency-version: 16.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@graphql-codegen/cli"
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@graphql-codegen/typescript-operations"
  dependency-version: 5.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.1.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@tsconfig/next"
  dependency-version: 2.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-version: 24.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/react"
  dependency-version: 19.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: graphql-request
  dependency-version: 7.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: tailwind-variants
  dependency-version: 3.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: tailwindcss
  dependency-version: 4.1.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
@ken-matsui ken-matsui merged commit df0948f into main Dec 2, 2025
6 checks passed
@ken-matsui ken-matsui deleted the dependabot/npm_and_yarn/npm-4b81ccf4b7 branch December 2, 2025 00:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants