Skip to content

Bump the minor-and-patch group with 24 updates#74

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-and-patch-56e07cf126
Closed

Bump the minor-and-patch group with 24 updates#74
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-and-patch-56e07cf126

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 20, 2026

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

Package From To
@biomejs/biome 2.3.10 2.4.3
knip 5.78.0 5.84.1
turbo 2.7.1 2.8.10
@streamdown/code 1.0.2 1.0.3
fumadocs-core 16.2.2 16.6.4
fumadocs-mdx 14.0.4 14.2.7
fumadocs-ui 16.2.2 16.6.4
jotai 2.17.1 2.18.0
lucide-react 0.555.0 0.575.0
mermaid 11.12.2 11.12.3
motion 12.34.0 12.34.3
next 16.0.10 16.1.6
react 19.2.3 19.2.4
@types/react 19.2.7 19.2.14
react-dom 19.2.3 19.2.4
streamdown 2.2.0 2.3.0
tailwind-merge 3.4.1 3.5.0
zod 4.3.3 4.3.6
@tailwindcss/postcss 4.1.18 4.2.0
tailwindcss 4.1.18 4.2.0
discord-api-types 0.37.120 0.38.40
@slack/web-api 7.13.0 7.14.1
ioredis 5.8.2 5.9.3
dotenv 17.2.3 17.3.1

Updates @biomejs/biome from 2.3.10 to 2.4.3

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.3

2.4.3

Patch Changes

  • #9120 aa40fc2 Thanks @​ematipico! - Fixed #9109, where the GitHub reporter wasn't correctly enabled when biome ci runs on GitHub Actions.

  • #9128 8ca3f7f Thanks @​dyc3! - Fixed #9107: The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives.

  • #9124 f5b0e8d Thanks @​ematipico! - Fixed #8882 and #9108: The Astro frontmatter lexer now correctly identifies the closing --- fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. "it's"), or escaped quote characters (e.g. "\").

  • #9142 3ca066b Thanks @​THernandez03! - Fixed #9141: The noUnknownAttribute rule no longer reports closedby as an unknown attribute on <dialog> elements.

  • #9126 792013e Thanks @​ematipico! - Added missing Mocha globals to the Test domain: context, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, xcontext, xdescribe, xit, and xspecify. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha.

  • #8855 6918c9e Thanks @​ruidosujeira! - Fixed #8840. Now the Biome CSS parser correctly parses not + scroll-state inside @container queries.

  • #9111 4fb55cf Thanks @​Jayllyz! - Slightly improved performance of noIrregularWhitespace by adding early return optimization and simplifying character detection logic.

  • #8975 086a0c5 Thanks @​FrankFMY! - Fixed #8478: useDestructuring no longer suggests destructuring when the variable has a type annotation, like const foo: string = object.foo.

What's Changed

New Contributors

Full Changelog: https://github.com/biomejs/biome/compare/@​biomejs/biome@​2.4.2...@​biomejs/biome@​2.4.3

Biome CLI v2.4.2

2.4.2

Patch Changes

  • #9103 fc9850c Thanks @​dyc3! - Fixed #9098: useImportType no longer incorrectly flags imports used in Svelte control flow blocks ({#if}, {#each}, {#await}, {#key}) as type-only imports.

  • #9106 f4b7296 Thanks @​dyc3! - Updated rule source metadata for rules from html-eslint.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.3

Patch Changes

  • #9120 aa40fc2 Thanks @​ematipico! - Fixed #9109, where the GitHub reporter wasn't correctly enabled when biome ci runs on GitHub Actions.

  • #9128 8ca3f7f Thanks @​dyc3! - Fixed #9107: The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives.

  • #9124 f5b0e8d Thanks @​ematipico! - Fixed #8882 and #9108: The Astro frontmatter lexer now correctly identifies the closing --- fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. "it's"), or escaped quote characters (e.g. "\").

  • #9142 3ca066b Thanks @​THernandez03! - Fixed #9141: The noUnknownAttribute rule no longer reports closedby as an unknown attribute on <dialog> elements.

  • #9126 792013e Thanks @​ematipico! - Added missing Mocha globals to the Test domain: context, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, xcontext, xdescribe, xit, and xspecify. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha.

  • #8855 6918c9e Thanks @​ruidosujeira! - Fixed #8840. Now the Biome CSS parser correctly parses not + scroll-state inside @container queries.

  • #9111 4fb55cf Thanks @​Jayllyz! - Slightly improved performance of noIrregularWhitespace by adding early return optimization and simplifying character detection logic.

  • #8975 086a0c5 Thanks @​FrankFMY! - Fixed #8478: useDestructuring no longer suggests destructuring when the variable has a type annotation, like const foo: string = object.foo.

2.4.2

Patch Changes

  • #9103 fc9850c Thanks @​dyc3! - Fixed #9098: useImportType no longer incorrectly flags imports used in Svelte control flow blocks ({#if}, {#each}, {#await}, {#key}) as type-only imports.

  • #9106 f4b7296 Thanks @​dyc3! - Updated rule source metadata for rules from html-eslint.

  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noConditionalExpect. This rule disallows conditional expect() calls inside tests, which can lead to tests that silently pass when assertions never run.

    // Invalid - conditional expect may not run
    test("conditional", async ({ page }) => {
      if (someCondition) {
        await expect(page).toHaveTitle("Title");
      }
    });
    // Valid - unconditional expect
    test("unconditional", async ({ page }) => {
    await expect(page).toHaveTitle("Title");
    });

  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noPlaywrightElementHandle. Prefers locators to element handles.

    const el = await page.$(".btn");

... (truncated)

Commits

Updates knip from 5.78.0 to 5.84.1

Release notes

Sourced from knip's releases.

Release 5.84.1

  • Fix false positives for arrow-wrapped dynamic imports assigned to variables (#1544) (75a42c3aa4b8f9db59fb450ef4f45540ab94ec26) - thanks @​jantimon!
  • Improve pnpm arg handling (df8c353c7f30ee11d749b2cf3208f288def1ed84)
  • Ignore module.register if 2nd arg is not import.meta.url (#1535) (970fdb1f747c0941759aa3e0394c30ff6cf63481)

Release 5.84.0

  • Post-release shenanigans (e7965cba23b0c63f0165a12c96aed75257aa6919)
  • Move most compilers to plugins & register from there (61beafe3e002408e91169397f7c384e14c613d92)
  • Minor refactor (e20a6828be8dd1e49b819d5b5b896a26db2a91ac)
  • Fix lint issues (d2bbc139e63235c415a243e76ad8685693b8edf2)
  • Add missing catalog property to rules in JSON schema (#1518) (5d49dea2696db454e630014efd25172d6edde9fa) - thanks @​Mohmdev!
  • feat(plugins): add @​typescript/native-preview (tsgo) support (#1513) (babfb10a0426059bc2d79d14a2ba9c33767b6571) - thanks @​jgoux!
  • Fix up quoting for spaced args (resolve #1515) (2b735cb8d87a827bf9ea53ea2bcfcedf117e6d4d)
  • Switch to tsconfig-aware module resolver in input handler (634d0f68f681df1bf1e8896846f4d4c29b03e689)
  • Use bun test positionals as entry points (resolve #1521) (da9472555b28b04eddba703b1dfee69b2cb8b6f9)
  • Edit docs (327726ff2c5f2b135581088dea62bd3ed4bc99d4)
  • Minor refactor while at it (dc87e8ea7157745a449955e9a275877d19cf4d87)
  • Add config hints for unused ignore and ignoreFiles items (a4989eef8c870aa038d9c9d9e09597590ca444e7)
  • Accept known bins only behind double-dash (resolve #1524) (b9214e35659f1f87eabc6695d9b9643c0e6c8022)
  • feat(plugins): add support for bun test preloaded files (#1525) (14ee32a8f818e1cbf48398ba57bf0f19812ed8be) - thanks @​jgoux!
  • Add date to IGNORED_GLOBAL_BINARIES (#1476) (f08f92bd9eac95ec4eafd01ddb01279cb047544e) - thanks @​duci9y!
  • Fix edge case for binaries in scripts (82331ee2d336349d24a23437527991b73c764039)
  • Report ignore/files config hints only if sure & relevant (4c3bd085477139f50dce468c4231ba2753459c54)
  • Add consistent repository fields (781a0fd44a2cece4fd9c1413e50caa88df528607)
  • Add language-server bin (13d78454c4100f5d6a4f0cadcf1d77eadec523b2)
  • Use --stdio if no transport provided (bedb21adff873c13095350842c85bb1bfeac643b)
  • Refactor from "enabled" to "deferSession" (resolve #1499) (15e3360f11c81a866b8e6de76e894986bdfddedd)
  • Use initializationOptions.config or default fallback config obj (resolve #1503) (0abe5684083428340254dc1b0136760aacb9acff)
  • Also publish ls + mcp with pkg-pr-new (78065260f55fc491d59912e2db41d789e49a1bb7)
  • Auto-format (51b7dc1de9e2ec5b738df5389906df84dc1f3dd7)
  • Remove chdir shenanigans (close #1516) (0cbee8f38f4a91504b3adc4faee466b9624120fc)
  • Bind console.* to distinguish internal↔ external logs (3eac278273856994483a9164539bf57a51ed440b)
  • Add early bail-outs for changed files we can ignore (36c2dd5c4345d743c3de58ebd677b6f48a270213)
  • Avoid unnecessary module graph updates for unmodified files (f94c41f24fb7f5c4682a620bafd03700cf14ba68)
  • Fix typo in pkg-pr-new-pkg-dir (7e7a8b05a06f1f972a1d5e236dc53facbbb99729)
  • Add .DS_Store to .gitignore (#1530) (40fe5cc608f2ecf71d148e061071e249c8940edb) - thanks @​wojtekmaj!
  • Ignore RNC CLI and metro internals in react-native projects (#1528) (0f892aeed2556a018ddaa769c24be68fba8b91aa) - thanks @​wojtekmaj!
  • Support nested _generated dirs in Convex plugin (#1531) (bd75e9fce6a25997d3ecd90e58b087f05a89c96f) - thanks @​kvnwolf!
  • Housekeep cli help output (c24e746b31b5dd994d004286229bd9d913bf8f14)
  • Fix up gitignore test (6bc640c166daed354ec9514277b9f719155eb8ab)
  • Introduce isFilterTransitiveDependencies flag (close #1507, close #1101) (8678df2d6f6cbedfe9483dae75e84a5605d730df)
  • Housekeep webpack plugin (2cc13066cdfd82e03459cb724907ff998231145b)
  • Move up plugin.setup & tear down plugin.teardown (4dbf23dd54ec7712f33eb8c714c8dd9942eb5538)
  • Skip config file loading if only external re-exports (ab775b1038a25e3e844e23c84ae4fc30b87eb7be)
  • Improve & optimize ignore pattern handling (c3d391210d3cf9230622b32416c1b8093062b232)
  • Housekeep compiler registration (2aaf9fc6b68fcd36d6a8781690d5882f7bb7cc3e)
  • Edit docs re. config file location (79bfb352246c900035c6deac7c3742c7780e726f)
  • Register visitors from plugins (9b059f823a3aaa707a5e4bd3c14d7d879d397cf2)
  • importMetaGlobCall visitor for Vite plugin (1874b19b0509c50e50446c58d4237a8c411d7259)
  • Extend registerVisitors with script visitor support (728c8142a88df12bc4465201400cef4a057df0af)

... (truncated)

Commits
  • 5c2cccf Release knip@5.84.1
  • 970fdb1 Ignore module.register if 2nd arg is not import.meta.url (#1535)
  • df8c353 Improve pnpm arg handling
  • 75a42c3 Fix false positives for arrow-wrapped dynamic imports assigned to variables (...
  • c6d7ffa Release knip@5.84.0
  • 4115b97 Minor refactor while at it
  • 4f0a307 Fix Yarn (Berry) plugins and binaries reported as unused (#1523)
  • 3bb4203 Add pm2 plugin (#1540)
  • 9fd04a8 Extract and extend react-native plugin (#1538)
  • b7149b6 Remove @source matcher from tailwind plugin (resolve #1537)
  • Additional commits viewable in compare view

Updates turbo from 2.7.1 to 2.8.10

Release notes

Sourced from turbo's releases.

Turborepo v2.8.10

What's Changed

create-turbo

Changelog

Full Changelog: vercel/turborepo@v2.8.9...v2.8.10

Turborepo v2.8.10-canary.9

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.10-canary.8...v2.8.10-canary.9

Turborepo v2.8.10-canary.8

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.10-canary.7...v2.8.10-canary.8

Turborepo v2.8.10-canary.7

What's Changed

Changelog

... (truncated)

Commits
  • 1e0e1ae publish 2.8.10 to registry
  • 7cb9f0c release(turborepo): 2.8.10-canary.9 (#11892)
  • 2af1c0d perf: Pre-compile glob exclusion filter and cache path prefix in file hashing...
  • 31e29c9 release(turborepo): 2.8.10-canary.8 (#11890)
  • 5cbeef3 perf: Parallelize and pre-build RepoGitIndex (#11889)
  • a4213a1 release(turborepo): 2.8.10-canary.7 (#11888)
  • 42ab7fc perf: Batch per-package git subprocess calls into repo-wide index (#11887)
  • 48f5a2b release(turborepo): 2.8.10-canary.6 (#11885)
  • 8e3395e feat: Make --profile and --anon-profile filename optional (#11883)
  • 5febe7f release(turborepo): 2.8.10-canary.5 (#11884)
  • Additional commits viewable in compare view

Updates @streamdown/code from 1.0.2 to 1.0.3

Release notes

Sourced from @​streamdown/code's releases.

@​streamdown/code@​1.0.3

Patch Changes

  • c597336: Use JS engine
Changelog

Sourced from @​streamdown/code's changelog.

1.0.3

Patch Changes

  • c597336: Use JS engine
Commits

Updates fumadocs-core from 16.2.2 to 16.6.4

Release notes

Sourced from fumadocs-core's releases.

fumadocs-core@16.6.4

No release notes provided.

fumadocs-core@16.6.3

No release notes provided.

fumadocs-core@16.6.2

No release notes provided.

fumadocs-core@16.6.1

Patch Changes

  • 00c9a0f: Remove default rerank value from mixedbread search

fumadocs-core@16.6.0

Minor Changes

  • 9241992: Support Markdown in search results

    This deprecates the old contentWithHighlights field in search results, the highlights are marked with Markdown instead (e.g. Hello <mark>World</mark>).

Patch Changes

  • 64a0057: [Remark Feedback] skip MDX elements by default to avoid interfering with component logic

fumadocs-core@16.5.4

Patch Changes

  • 1ad8a38: Support server-side Mixedbread search API, deprecate client-side adapter
  • 3e8efb0: [remark-structure] hotfix filter MDX elements

fumadocs-core@16.5.3

Patch Changes

  • be957f1: use mdast-util-to-markdown for accurate stringification

fumadocs-core@16.5.0

Minor Changes

  • 9ba1250: Support Universal Shiki configuration

fumadocs-core@16.4.11

Patch Changes

  • a75a84d: fix duplicated transformer execution for fallback trees

fumadocs-core@16.4.10

Patch Changes

  • 099fde7: [Page Tree] Extract index page from folder

... (truncated)

Commits

Updates fumadocs-mdx from 14.0.4 to 14.2.7

Release notes

Sourced from fumadocs-mdx's releases.

fumadocs-mdx@14.2.4

Patch Changes

  • 689d31e: Improve error message
  • b16a32f: Switch to tsdown for bundling
  • Updated dependencies [590d36a]
  • Updated dependencies [98d38ff]
  • Updated dependencies [446631d]
  • Updated dependencies [b16a32f]
    • fumadocs-core@16.4.2
    • @​fumadocs/mdx-remote@​1.4.4
Commits
Maintainer changes

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


Updates fumadocs-ui from 16.2.2 to 16.6.4

Release notes

Sourced from fumadocs-ui's releases.

fumadocs-ui@16.6.4

Patch Changes

  • 8f8e7f0: fix accessibility issues
    • fumadocs-core@16.6.4

fumadocs-ui@16.6.3

Patch Changes

  • 1c26656: Extend grid of docs layout to 5 columns
    • fumadocs-core@16.6.3

fumadocs-ui@16.6.2

Patch Changes

  • cfc5590: Implement active on sidebar link items
    • fumadocs-core@16.6.2

fumadocs-ui@16.6.1

Patch Changes

  • 20cd4d6: Support ID & @fumadocsHref tag in type tables
  • Updated dependencies [00c9a0f]
    • fumadocs-core@16.6.1

fumadocs-ui@16.6.0

Minor Changes

  • 9241992: Support Markdown in search results

    This deprecates the old contentWithHighlights field in search results, the highlights are marked with Markdown instead (e.g. Hello <mark>World</mark>).

Patch Changes

  • Updated dependencies [9241992]
  • Updated dependencies [64a0057]
    • fumadocs-core@16.6.0

fumadocs-ui@16.5.4

Patch Changes

  • Updated dependencies [1ad8a38]
  • Updated dependencies [3e8efb0]
    • fumadocs-core@16.5.4

fumadocs-ui@16.5.3

Patch Changes

  • Updated dependencies [be957f1]
    • fumadocs-core@16.5.3

... (truncated)

Commits

Updates jotai from 2.17.1 to 2.18.0

Release notes

Sourced from jotai's releases.

v2.18.0

We moved jotai/babel to jotai-babel.

Migration Guide

If you use the preset:

  {
-   "presets": ["jotai/babel/preset"]
+   "presets": ["jotai-babel/preset"]
  }

If you use a plugin:

  {
-   "plugins": ["jotai/babel/plugin-debug-label"]
+   "plugins": ["jotai-babel/plugin-debug-label"]
  }

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.17.1...v2.18.0

Commits

Updates lucide-react from 0.555.0 to 0.575.0

Release notes

Sourced from lucide-react's releases.

Version 0.575.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.573.0...0.575.0

Version 0.574.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.572.0...0.574.0

Version 0.573.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.572.0...0.573.0

Version 0.572.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.571.0...0.572.0

... (truncated)

Commits
  • 67c0485 feat(scripts): added helper script to automatically update OpenCollective bac...
  • b6ed43d feat(packages): Added aria-hidden fallback for decorative icons to all packag...
  • 076e0bb chore(dependencies): Update dependencies (#3809)
  • See full diff in compare view
Maintainer changes

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


Updates mermaid from 11.12.2 to 11.12.3

Release notes

Sourced from mermaid's releases.

mermaid@11.12.3

Patch Changes

  • Updated dependencies [7243340]:
    • @​mermaid-js/parser@​1.0.0
Commits
  • cbe7015 Merge pull request #7397 from mermaid-js/changeset-release/master
  • 69fccd2 Version Packages
  • 56ecd66 Fixed issue with hero text
  • 3735098 Merge pull request #7377 from aloisklink/chore/upgrade-to-langium-v4
  • ea46407 Update link with source
  • dc30a46 Updating the Hero on the docs side
  • 426a616 chore(dev-deps): update @​argos-ci/cypress to 6.2.2
  • 16bc9e6 chore(deps): update dependency lodash-es to v4.17.23
  • 7243340 chore(parser)!: upgrade parser to Langium v4
  • 156dc11 chore(deps): upgrade to langium 3.5.0
  • Additional commits viewable in compare view

Updates motion from 12.34.0 to 12.34.3

Changelog

Sourced from motion's changelog.

[12.34.3] 2026-02-20

Fixed

  • Ensure velocity is never transferred to a time-derived spring.

[12.34.2] 2026-02-18

Fixed

  • Layout animations: Reset motion value velocity when starting a new layout animation.

[12.34.1] 2026-02-17

Fixed

  • useScroll: Ensure animations aren't hardware accelerated when target is set.
  • Improve animatable "none" generation for mask values.
Commits
  • 071f659 v12.34.3
  • ab73833 Updating changelog
  • bd6eac3 Merge pull request #3564 from motiondivision/fix/time-defined-spring-velocity
  • bebd7f5 Ignore velocity for time-defined springs to prevent wild oscillation
  • 6828340 v12.34.2
  • 679a0ad Reset layout animation motion value velocity on restart
  • 1d566fc Merge pull request #3546 from veeceey/fix/typescript-ban-types-issue
  • 57263d8 v12.34.1
  • 9447ee2 Updating changelog
  • 79a4097 Merge pull request #3555 ...

    Description has been truncated

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 20, 2026
@vercel
Copy link
Contributor

vercel bot commented Feb 20, 2026

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

Project Deployment Actions Updated (UTC)
chat Ready Ready Preview, Comment, Open in v0 Feb 24, 2026 8:42pm
the-real-chat-sdk-nextjs-chat Ready Ready Preview, Comment, Open in v0 Feb 24, 2026 8:42pm
v0-chat-fy Error Error Open in v0 Feb 24, 2026 8:42pm

@github-actions
Copy link
Contributor

Preview Branch Testing

To test this PR with real webhook traffic:

  1. Go to /settings on the production deployment
  2. Enter this PR's Vercel preview URL
  3. Save — all webhook requests will now be proxied to this preview

To disable: Clear the URL on the settings page.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 21, 2026

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.10` | `2.4.3` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.78.0` | `5.84.1` |
| [turbo](https://github.com/vercel/turborepo) | `2.7.1` | `2.8.10` |
| [@streamdown/code](https://github.com/vercel/streamdown/tree/HEAD/packages/streamdown-code) | `1.0.2` | `1.0.3` |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `16.2.2` | `16.6.4` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `14.0.4` | `14.2.7` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.2.2` | `16.6.4` |
| [jotai](https://github.com/pmndrs/jotai) | `2.17.1` | `2.18.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.555.0` | `0.575.0` |
| [mermaid](https://github.com/mermaid-js/mermaid) | `11.12.2` | `11.12.3` |
| [motion](https://github.com/motiondivision/motion) | `12.34.0` | `12.34.3` |
| [next](https://github.com/vercel/next.js) | `16.0.10` | `16.1.6` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.3` | `19.2.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.7` | `19.2.14` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.3` | `19.2.4` |
| [streamdown](https://github.com/vercel/streamdown/tree/HEAD/packages/streamdown) | `2.2.0` | `2.3.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.4.1` | `3.5.0` |
| [zod](https://github.com/colinhacks/zod) | `4.3.3` | `4.3.6` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.18` | `4.2.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.18` | `4.2.0` |
| [discord-api-types](https://github.com/discordjs/discord-api-types) | `0.37.120` | `0.38.40` |
| [@slack/web-api](https://github.com/slackapi/node-slack-sdk) | `7.13.0` | `7.14.1` |
| [ioredis](https://github.com/luin/ioredis) | `5.8.2` | `5.9.3` |
| [dotenv](https://github.com/motdotla/dotenv) | `17.2.3` | `17.3.1` |


Updates `@biomejs/biome` from 2.3.10 to 2.4.3
- [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/biome@2.4.3/packages/@biomejs/biome)

Updates `knip` from 5.78.0 to 5.84.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@5.84.1/packages/knip)

Updates `turbo` from 2.7.1 to 2.8.10
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.7.1...v2.8.10)

Updates `@streamdown/code` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/vercel/streamdown/releases)
- [Changelog](https://github.com/vercel/streamdown/blob/main/packages/streamdown-code/CHANGELOG.md)
- [Commits](https://github.com/vercel/streamdown/commits/@streamdown/code@1.0.3/packages/streamdown-code)

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

Updates `fumadocs-mdx` from 14.0.4 to 14.2.7
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/commits)

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

Updates `jotai` from 2.17.1 to 2.18.0
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.17.1...v2.18.0)

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

Updates `mermaid` from 11.12.2 to 11.12.3
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.12.2...mermaid@11.12.3)

Updates `motion` from 12.34.0 to 12.34.3
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.34.0...v12.34.3)

Updates `next` from 16.0.10 to 16.1.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.10...v16.1.6)

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

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

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

Updates `streamdown` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/vercel/streamdown/releases)
- [Changelog](https://github.com/vercel/streamdown/blob/main/packages/streamdown/CHANGELOG.md)
- [Commits](https://github.com/vercel/streamdown/commits/streamdown@2.3.0/packages/streamdown)

Updates `tailwind-merge` from 3.4.1 to 3.5.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.4.1...v3.5.0)

Updates `zod` from 4.3.3 to 4.3.6
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.3.3...v4.3.6)

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

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

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

Updates `discord-api-types` from 0.37.120 to 0.38.40
- [Release notes](https://github.com/discordjs/discord-api-types/releases)
- [Changelog](https://github.com/discordjs/discord-api-types/blob/main/CHANGELOG.md)
- [Commits](discordjs/discord-api-types@0.37.120...0.38.40)

Updates `@slack/web-api` from 7.13.0 to 7.14.1
- [Release notes](https://github.com/slackapi/node-slack-sdk/releases)
- [Commits](https://github.com/slackapi/node-slack-sdk/compare/@slack/web-api@7.13.0...@slack/web-api@7.14.1)

Updates `ioredis` from 5.8.2 to 5.9.3
- [Release notes](https://github.com/luin/ioredis/releases)
- [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
- [Commits](redis/ioredis@v5.8.2...v5.9.3)

Updates `dotenv` from 17.2.3 to 17.3.1
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v17.2.3...v17.3.1)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: knip
  dependency-version: 5.84.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: turbo
  dependency-version: 2.8.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@streamdown/code"
  dependency-version: 1.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: fumadocs-core
  dependency-version: 16.6.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: fumadocs-mdx
  dependency-version: 14.2.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: fumadocs-ui
  dependency-version: 16.6.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: jotai
  dependency-version: 2.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: lucide-react
  dependency-version: 0.575.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: mermaid
  dependency-version: 11.12.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: motion
  dependency-version: 12.34.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: next
  dependency-version: 16.1.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: streamdown
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tailwind-merge
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: zod
  dependency-version: 4.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: discord-api-types
  dependency-version: 0.38.40
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@slack/web-api"
  dependency-version: 7.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ioredis
  dependency-version: 5.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: dotenv
  dependency-version: 17.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/minor-and-patch-56e07cf126 branch from 59a49f8 to 383d2a9 Compare February 24, 2026 20:41
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 26, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 26, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-56e07cf126 branch February 26, 2026 22:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants