Skip to content

chore(deps): bump the dependencies group in /docs with 13 updates#566

Open
dependabot[bot] wants to merge 1 commit intodepsfrom
dependabot/npm_and_yarn/docs/deps/dependencies-cf490c9cad
Open

chore(deps): bump the dependencies group in /docs with 13 updates#566
dependabot[bot] wants to merge 1 commit intodepsfrom
dependabot/npm_and_yarn/docs/deps/dependencies-cf490c9cad

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 21, 2026

Bumps the dependencies group in /docs with 13 updates:

Package From To
@ai-sdk/react 3.0.161 3.0.170
@next/third-parties 16.2.3 16.2.4
@opennextjs/cloudflare 1.19.1 1.19.3
ai 6.0.159 6.0.168
fumadocs-core 16.7.15 16.8.1
fumadocs-mdx 14.2.14 14.3.1
fumadocs-openapi 10.7.0 10.8.0
fumadocs-ui 16.7.15 16.8.1
next 16.2.3 16.2.4
@tailwindcss/postcss 4.2.2 4.2.4
postcss 8.5.9 8.5.10
tailwindcss 4.2.2 4.2.4
wrangler 4.82.2 4.84.1

Updates @ai-sdk/react from 3.0.161 to 3.0.170

Commits
  • c38119a Version Packages (#14574)
  • 6afb871 Backport: ci(backport): check for exisitng PRs and use the force (#13260)
  • 493d7d4 Backport: update oidc (#13367)
  • f4a9c74 Backport: feat (provider/klingai): add kling v3.0 motion control support (#13...
  • f741e28 Backport: docs: remove dead imports and general improvements (#13671)
  • 93ecf8f Backport: chore (gateway): add reranking to model settings generation config ...
  • f93eca6 Version Packages (#14564)
  • 95b4fe0 Backport: fix(provider/anthropic): stop sending obsolete fine-grained-tool-st...
  • db2a49b Version Packages (#14558)
  • 20805c8 Backport: chore(provider/gateway): update gateway model settings files v6 (#1...
  • Additional commits viewable in compare view

Updates @next/third-parties from 16.2.3 to 16.2.4

Release notes

Sourced from @​next/third-parties's releases.

v16.2.4

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

Core Changes

  • chore: Bump reqwest to 0.13.2 (Fixes Google Fonts with Turbopack for Windows on ARM64) (#92713)
  • Turbopack: fix filesystem watcher config not applying follow_symlinks(false) (#92631)
  • Scope Safari ?ts= cache-buster to CSS/font assets only (Pages Router) (#92580)
  • Compiler: Support boolean and number primtives in next.config defines (#92731)
  • turbo-tasks: Fix recomputation loop by allowing cell cleanup on error during recomputation (#92725)
  • Turbopack: shorter error for ChunkGroupInfo::get_index_of (#92814)
  • Turbopack: shorter error message for ModuleBatchesGraph::get_entry_index (#92828)
  • Adding more system info to the 'initialize project' trace (#92427)

Credits

Huge thanks to @​Badbird5907, @​lukesandberg, @​andrewimm, @​sokra, and @​mischnic for helping!

Commits

Updates @opennextjs/cloudflare from 1.19.1 to 1.19.3

Release notes

Sourced from @​opennextjs/cloudflare's releases.

@​opennextjs/cloudflare@​1.19.3

Patch Changes

  • #1215 608893e Thanks @​vicb! - Factor large repeated values in manifests

    This reduce the size of the generated code.

  • #1218 f0d0226 Thanks @​314systems! - remove process.version override

    Remove process.version / process.versions.node overrides now that unjs/unenv#493 is merged and shipped in unenv@2.0.0-rc.16 (project uses 2.0.0-rc.24)

  • #1199 32594d6 Thanks @​SdSadat! - fix(cli): fail fast in non-TTY environments instead of hanging on config-creation prompts

    When open-next.config.ts (or wrangler.(toml|json|jsonc)) is missing, the CLI prompts the user to auto-create it. In non-TTY environments (Cloudflare Workers Builds, Docker, CI) the Enquirer prompt can't read stdin, so the build hangs or fails with a truncated prompt and a cryptic exit code — the user sees ? Missing required open-next.config.ts file, do you want to create one? (Y/n) and then ELIFECYCLE Command failed with exit code 13, with no hint at what to do next.

    Now, in non-interactive environments, both prompts throw an actionable error with the exact template to paste (for open-next.config.ts) or point at the existing --skipWranglerConfigCheck / SKIP_WRANGLER_CONFIG_CHECK escape hatch (for the wrangler config). Interactive behavior is unchanged.

@​opennextjs/cloudflare@​1.19.2

Patch Changes

  • #1207 0958726 Thanks @​edmundhung! - bump @opennextjs/aws to 3.10.2

    See details at https://github.com/opennextjs/opennextjs-aws/releases/tag/v3.10.2

  • #1139 79b01b8 Thanks @​james-elicx! - Fix Turbopack external module resolution by dynamically discovering external imports at build time.

    When packages are listed in serverExternalPackages, Turbopack externalizes them via externalImport() which uses dynamic await import(id). The bundler (ESBuild) can't statically analyze import(id) with a variable, so these modules aren't included in the worker bundle.

    This patch:

    • Discovers hashed Turbopack external module mappings from .next/node_modules/ symlinks (e.g. shiki-43d062b67f27bbdcshiki)
    • Scans traced chunk files for bare external imports (e.g. externalImport("shiki")) and subpath imports (e.g. shiki/engine/javascript)
    • Generates explicit switch/case entries so the bundler can statically resolve and include these modules
  • #1203 6f02d12 Thanks @​314systems! - fix: exclude unsupported Next.js 16 releases from peer dependencies.

    The previous range allowed Next.js 16.0.0 through 16.2.2 without a peer dependency warning because >=16.2.3 was already covered by >=15.5.15.

    The range now explicitly supports Next.js 15.5.15 and above in the 15.x line, and Next.js 16.2.3 and above in the 16.x line.

  • #1200 7820ad0 Thanks @​NathanDrake2406! - fix: reuse sharded tag data when filling the regional cache.

... (truncated)

Changelog

Sourced from @​opennextjs/cloudflare's changelog.

1.19.3

Patch Changes

  • #1215 608893e Thanks @​vicb! - Factor large repeated values in manifests

    This reduce the size of the generated code.

  • #1218 f0d0226 Thanks @​314systems! - remove process.version override

    Remove process.version / process.versions.node overrides now that unjs/unenv#493 is merged and shipped in unenv@2.0.0-rc.16 (project uses 2.0.0-rc.24)

  • #1199 32594d6 Thanks @​SdSadat! - fix(cli): fail fast in non-TTY environments instead of hanging on config-creation prompts

    When open-next.config.ts (or wrangler.(toml|json|jsonc)) is missing, the CLI prompts the user to auto-create it. In non-TTY environments (Cloudflare Workers Builds, Docker, CI) the Enquirer prompt can't read stdin, so the build hangs or fails with a truncated prompt and a cryptic exit code — the user sees ? Missing required open-next.config.ts file, do you want to create one? (Y/n) and then ELIFECYCLE Command failed with exit code 13, with no hint at what to do next.

    Now, in non-interactive environments, both prompts throw an actionable error with the exact template to paste (for open-next.config.ts) or point at the existing --skipWranglerConfigCheck / SKIP_WRANGLER_CONFIG_CHECK escape hatch (for the wrangler config). Interactive behavior is unchanged.

1.19.2

Patch Changes

  • #1207 0958726 Thanks @​edmundhung! - bump @opennextjs/aws to 3.10.2

    See details at https://github.com/opennextjs/opennextjs-aws/releases/tag/v3.10.2

  • #1139 79b01b8 Thanks @​james-elicx! - Fix Turbopack external module resolution by dynamically discovering external imports at build time.

    When packages are listed in serverExternalPackages, Turbopack externalizes them via externalImport() which uses dynamic await import(id). The bundler (ESBuild) can't statically analyze import(id) with a variable, so these modules aren't included in the worker bundle.

    This patch:

    • Discovers hashed Turbopack external module mappings from .next/node_modules/ symlinks (e.g. shiki-43d062b67f27bbdcshiki)
    • Scans traced chunk files for bare external imports (e.g. externalImport("shiki")) and subpath imports (e.g. shiki/engine/javascript)
    • Generates explicit switch/case entries so the bundler can statically resolve and include these modules
  • #1203 6f02d12 Thanks @​314systems! - fix: exclude unsupported Next.js 16 releases from peer dependencies.

    The previous range allowed Next.js 16.0.0 through 16.2.2 without a peer dependency warning because >=16.2.3 was already covered by >=15.5.15.

    The range now explicitly supports Next.js 15.5.15 and above in the 15.x line, and Next.js 16.2.3 and above in the 16.x line.

... (truncated)

Commits
  • d577521 Version Packages (#1219)
  • 608893e Factor manifest code to reduce the bundle size (#1215)
  • 32594d6 fix(cli): fail fast in non-TTY environments instead of hanging on config-crea...
  • f0d0226 remove process.version override now that unenv#493 is merged (#1218)
  • ac28b08 fix: typo (#1217)
  • 264d0a0 Version Packages (#1201)
  • 0958726 chore: bump @​opennextjs/aws version (#1207)
  • 7820ad0 Reuse sharded tag data on regional cache fill (#1200)
  • 585795d fix: regression where getEnvFromPlatformProxy received wrong options type (#1...
  • 6f02d12 fix: narrow peerDependencies next range to exclude 16.0.0–16.2.2 (#1203)
  • Additional commits viewable in compare view

Updates ai from 6.0.159 to 6.0.168

Commits
  • c38119a Version Packages (#14574)
  • 6afb871 Backport: ci(backport): check for exisitng PRs and use the force (#13260)
  • 493d7d4 Backport: update oidc (#13367)
  • f4a9c74 Backport: feat (provider/klingai): add kling v3.0 motion control support (#13...
  • f741e28 Backport: docs: remove dead imports and general improvements (#13671)
  • 93ecf8f Backport: chore (gateway): add reranking to model settings generation config ...
  • f93eca6 Version Packages (#14564)
  • 95b4fe0 Backport: fix(provider/anthropic): stop sending obsolete fine-grained-tool-st...
  • db2a49b Version Packages (#14558)
  • 20805c8 Backport: chore(provider/gateway): update gateway model settings files v6 (#1...
  • Additional commits viewable in compare view

Updates fumadocs-core from 16.7.15 to 16.8.1

Release notes

Sourced from fumadocs-core's releases.

fumadocs-core@16.8.1

No release notes provided.

fumadocs-core@16.7.16

Patch Changes

  • 9cf33e9: Improve inline code output
  • 9cf33e9: Support async hooks in Shiki transformers
Commits
  • 998f775 Merge pull request #3221 from fuma-nama/changeset-release/dev
  • ef7e446 Docs: fix links
  • 3ae8809 UI: Improve TOC sizing
  • 8478be2 Docs: introduce dynamicLoader() API
  • 6c77249 Docs: introduce Local MD
  • cfeb2c5 OpenAPI: Fix @scalar/api-client-react version as 2.0.2 has a breaking change
  • da908c7 Chore: update examples usage
  • bc981eb Local MD: support custom module exports type
  • 974b093 Local MD: Support custom options for built-in plugins
  • d10688d Chore: keep legacy types for backward compat
  • Additional commits viewable in compare view

Updates fumadocs-mdx from 14.2.14 to 14.3.1

Release notes

Sourced from fumadocs-mdx's releases.

fumadocs-mdx@14.3.0

Minor Changes

  • fa9f678: Make Next.js config ESM only

    Newer Next.js supported .mts extension for Next.js config files, see Next.js docs for more info.

Commits
  • 00c01b6 Merge pull request #1041 from fuma-nama/changeset-release/dev
  • b571b21 Version Packages
  • e7443d7 UI: Fix development errors
  • a6a7b70 Merge branch 'main' into dev
  • 00209d0 docs: update information
  • 07e343e Merge pull request #1028 from fuma-nama/changeset-release/dev
  • d21abf0 Version Packages
  • acffcfd fix Orama type problems
  • a11804b UI: expose more providers from fumadocs-ui/provider
  • 46d9208 CFA: Add option for ESLint
  • Additional commits viewable in compare view
Attestation changes

This version has no provenance attestation, while the previous version (14.2.14) was attested. Review the package versions before updating.


Updates fumadocs-openapi from 10.7.0 to 10.8.0

Release notes

Sourced from fumadocs-openapi's releases.

fumadocs-openapi@10.8.0

Minor Changes

  • cfeb2c5: Fix @scalar/api-client-react version as 2.0.2 has a breaking change

Patch Changes

  • Updated dependencies [3ae8809]
    • fumadocs-ui@16.8.1
    • fumadocs-core@16.8.1

fumadocs-openapi@10.7.1

Patch Changes

  • 1ecb7ae: expose more types
    • fumadocs-ui@16.7.16
Commits
  • 998f775 Merge pull request #3221 from fuma-nama/changeset-release/dev
  • ef7e446 Docs: fix links
  • 3ae8809 UI: Improve TOC sizing
  • 8478be2 Docs: introduce dynamicLoader() API
  • 6c77249 Docs: introduce Local MD
  • cfeb2c5 OpenAPI: Fix @scalar/api-client-react version as 2.0.2 has a breaking change
  • da908c7 Chore: update examples usage
  • bc981eb Local MD: support custom module exports type
  • 974b093 Local MD: Support custom options for built-in plugins
  • d10688d Chore: keep legacy types for backward compat
  • Additional commits viewable in compare view

Updates fumadocs-ui from 16.7.15 to 16.8.1

Release notes

Sourced from fumadocs-ui's releases.

fumadocs-ui@16.8.1

Patch Changes

  • 3ae8809: Improve TOC sizing
    • fumadocs-core@16.8.1

fumadocs-ui@16.7.16

Patch Changes

  • f2c6e59: Reduce iterations for calculating TOC track
  • 9cf33e9: Improve inline code output
  • 9cf33e9: Support async hooks in Shiki transformers
  • Updated dependencies [9cf33e9]
  • Updated dependencies [9cf33e9]
    • fumadocs-core@16.7.16
Commits
  • 998f775 Merge pull request #3221 from fuma-nama/changeset-release/dev
  • ef7e446 Docs: fix links
  • 3ae8809 UI: Improve TOC sizing
  • 8478be2 Docs: introduce dynamicLoader() API
  • 6c77249 Docs: introduce Local MD
  • cfeb2c5 OpenAPI: Fix @scalar/api-client-react version as 2.0.2 has a breaking change
  • da908c7 Chore: update examples usage
  • bc981eb Local MD: support custom module exports type
  • 974b093 Local MD: Support custom options for built-in plugins
  • d10688d Chore: keep legacy types for backward compat
  • Additional commits viewable in compare view

Updates next from 16.2.3 to 16.2.4

Release notes

Sourced from next's releases.

v16.2.4

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

Core Changes

  • chore: Bump reqwest to 0.13.2 (Fixes Google Fonts with Turbopack for Windows on ARM64) (#92713)
  • Turbopack: fix filesystem watcher config not applying follow_symlinks(false) (#92631)
  • Scope Safari ?ts= cache-buster to CSS/font assets only (Pages Router) (#92580)
  • Compiler: Support boolean and number primtives in next.config defines (#92731)
  • turbo-tasks: Fix recomputation loop by allowing cell cleanup on error during recomputation (#92725)
  • Turbopack: shorter error for ChunkGroupInfo::get_index_of (#92814)
  • Turbopack: shorter error message for ModuleBatchesGraph::get_entry_index (#92828)
  • Adding more system info to the 'initialize project' trace (#92427)

Credits

Huge thanks to @​Badbird5907, @​lukesandberg, @​andrewimm, @​sokra, and @​mischnic for helping!

Commits
  • 2275bd8 v16.2.4
  • e073983 Adding more system info to the 'initialize project' trace (#92427)
  • 8a540b5 Turbopack: shorter error message for ModuleBatchesGraph::get_entry_index (#92...
  • 2f5343f Turbopack: shorter error for ChunkGroupInfo::get_index_of (#92814)
  • 2ad9d3f turbo-tasks: Fix recomputation loop by allowing cell cleanup on error during ...
  • 6f3808e Compiler: Support boolean and number primtives in next.config defines (#92731)
  • fbc7684 Scope Safari ?ts= cache-buster to CSS/font assets only (Pages Router) (#92580)
  • 805d758 Turbopack: fix filesystem watcher config not applying follow_symlinks(false) ...
  • 1056fae chore: Bump reqwest to 0.13.2 (#92713)
  • See full diff in compare view

Updates @tailwindcss/postcss from 4.2.2 to 4.2.4

Release notes

Sourced from @​tailwindcss/postcss's releases.

v4.2.4

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

v4.2.3

Fixed

  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Changelog

Sourced from @​tailwindcss/postcss's changelog.

[4.2.4] - 2026-04-21

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

[4.2.3] - 2026-04-20

Fixed

  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​tailwindcss/postcss since your current version.


Updates postcss from 8.5.9 to 8.5.10

Release notes

Sourced from postcss's releases.

8.5.10

  • Fixed XSS via unescaped </style> in non-bundler cases (by @​TharVid).
Changelog

Sourced from postcss's changelog.

8.5.10

  • Fixed XSS via unescaped </style> in non-bundler cases (by @​TharVid).
Commits

Updates tailwindcss from 4.2.2 to 4.2.4

Release notes

Sourced from tailwindcss's releases.

v4.2.4

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

v4.2.3

Fixed

  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Changelog

Sourced from tailwindcss's changelog.

[4.2.4] - 2026-04-21

Fixed

  • Ensure imports in @import and @plugin still resolve correctly when using Vite aliases in @tailwindcss/vite (#19947)

[4.2.3] - 2026-04-20

Fixed

  • Canonicalization: improve canonicalizations for tracking-* utilities by preferring non-negative utilities (e.g. -tracking-tightertracking-wider) (#19827)
  • Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
  • Ensure query params in imports are considered unique resources when using @tailwindcss/webpack (#19723)
  • Canonicalization: collapse arbitrary values into shorthand utilities (e.g. px-[1.2rem] py-[1.2rem]p-[1.2rem]) (#19837)
  • Canonicalization: collapse border-{t,b}-* into border-y-*, border-{l,r}-* into border-x-*, and border-{t,r,b,l}-* into border-* (#19842)
  • Canonicalization: collapse scroll-m{t,b}-* into scroll-my-*, scroll-m{l,r}-* into scroll-mx-*, and scroll-m{t,r,b,l}-* into scroll-m-* (#19842)
  • Canonicalization: collapse scroll-p{t,b}-* into scroll-py-*, scroll-p{l,r}-* into scroll-px-*, and scroll-p{t,r,b,l}-* into scroll-p-* (#19842)
  • Canonicalization: collapse overflow-{x,y}-* into overflow-* (#19842)
  • Canonicalization: collapse overscroll-{x,y}-* into overscroll-* (#19842)
  • Read from --placeholder-color instead of --background-color for placeholder-* utilities (#19843)
  • Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
  • Upgrade: use config.content when migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)
  • Upgrade: never migrate files that are ignored by git (#19846)
  • Add .env and .env.* to default ignored content files (#19846)
  • Canonicalization: migrate overflow-ellipsis into text-ellipsis (#19849)
  • Canonicalization: migrate start-fullinset-s-full, start-autoinset-s-auto, start-pxinset-s-px, and start-<number>inset-s-<number> as well as negative versions (#19849)
  • Canonicalization: migrate end-fullinset-e-full, end-autoinset-e-auto, end-pxinset-e-px, and end-<number>inset-e-<number> as well as negative versions (#19849)
  • Canonicalization: move the - sign inside the arbitrary value -left-[9rem]left-[-9rem] (#19858)
  • Canonicalization: move the - sign outside the arbitrary value ml-[calc(-1*var(--width))]-ml-(--width) (#19858)
  • Improve performance when scanning JSONL / NDJSON files (#19862)
  • Support NODE_PATH environment variable in standalone CLI (#19617)
Commits

Bumps the dependencies group in /docs with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@ai-sdk/react](https://github.com/vercel/ai) | `3.0.161` | `3.0.170` |
| [@next/third-parties](https://github.com/vercel/next.js/tree/HEAD/packages/third-parties) | `16.2.3` | `16.2.4` |
| [@opennextjs/cloudflare](https://github.com/opennextjs/opennextjs-cloudflare/tree/HEAD/packages/cloudflare) | `1.19.1` | `1.19.3` |
| [ai](https://github.com/vercel/ai) | `6.0.159` | `6.0.168` |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `16.7.15` | `16.8.1` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `14.2.14` | `14.3.1` |
| [fumadocs-openapi](https://github.com/fuma-nama/fumadocs) | `10.7.0` | `10.8.0` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.7.15` | `16.8.1` |
| [next](https://github.com/vercel/next.js) | `16.2.3` | `16.2.4` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.2.2` | `4.2.4` |
| [postcss](https://github.com/postcss/postcss) | `8.5.9` | `8.5.10` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.2.2` | `4.2.4` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.82.2` | `4.84.1` |


Updates `@ai-sdk/react` from 3.0.161 to 3.0.170
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/@ai-sdk/react@3.0.161...@ai-sdk/react@3.0.170)

Updates `@next/third-parties` from 16.2.3 to 16.2.4
- [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.2.4/packages/third-parties)

Updates `@opennextjs/cloudflare` from 1.19.1 to 1.19.3
- [Release notes](https://github.com/opennextjs/opennextjs-cloudflare/releases)
- [Changelog](https://github.com/opennextjs/opennextjs-cloudflare/blob/main/packages/cloudflare/CHANGELOG.md)
- [Commits](https://github.com/opennextjs/opennextjs-cloudflare/commits/@opennextjs/cloudflare@1.19.3/packages/cloudflare)

Updates `ai` from 6.0.159 to 6.0.168
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/compare/ai@6.0.159...ai@6.0.168)

Updates `fumadocs-core` from 16.7.15 to 16.8.1
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-core@16.7.15...fumadocs-core@16.8.1)

Updates `fumadocs-mdx` from 14.2.14 to 14.3.1
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-mdx@14.2.14...fumadocs-ui@14.3.1)

Updates `fumadocs-openapi` from 10.7.0 to 10.8.0
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-openapi@10.7.0...fumadocs-openapi@10.8.0)

Updates `fumadocs-ui` from 16.7.15 to 16.8.1
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-ui@16.7.15...fumadocs-ui@16.8.1)

Updates `next` from 16.2.3 to 16.2.4
- [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.2.3...v16.2.4)

Updates `@tailwindcss/postcss` from 4.2.2 to 4.2.4
- [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.2.4/packages/@tailwindcss-postcss)

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

Updates `tailwindcss` from 4.2.2 to 4.2.4
- [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.2.4/packages/tailwindcss)

Updates `wrangler` from 4.82.2 to 4.84.1
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.84.1/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@ai-sdk/react"
  dependency-version: 3.0.170
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@next/third-parties"
  dependency-version: 16.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@opennextjs/cloudflare"
  dependency-version: 1.19.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ai
  dependency-version: 6.0.168
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: fumadocs-core
  dependency-version: 16.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: fumadocs-mdx
  dependency-version: 14.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: fumadocs-openapi
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: fumadocs-ui
  dependency-version: 16.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: next
  dependency-version: 16.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: postcss
  dependency-version: 8.5.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tailwindcss
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: wrangler
  dependency-version: 4.84.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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 Apr 21, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 21, 2026 18:32
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants