Skip to content

chore(deps)(deps): bump the production-dependencies group across 1 directory with 10 updates#810

Merged
hotlong merged 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-d5ef2c5366
Feb 25, 2026
Merged

chore(deps)(deps): bump the production-dependencies group across 1 directory with 10 updates#810
hotlong merged 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-d5ef2c5366

Conversation

@dependabot
Copy link
Contributor

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

Bumps the production-dependencies group with 10 updates in the / directory:

Package From To
lucide-react 0.574.0 0.575.0
@oclif/core 4.8.0 4.8.1
glob 13.0.5 13.0.6
better-auth 1.4.18 1.4.19
hono 4.11.9 4.12.2
fumadocs-core 16.6.3 16.6.5
fumadocs-mdx 14.2.7 14.2.8
fumadocs-ui 16.6.3 16.6.5
tailwind-merge 3.4.1 3.5.0
react-resizable-panels 4.6.4 4.6.5

Updates lucide-react from 0.574.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

Commits

Updates @oclif/core from 4.8.0 to 4.8.1

Release notes

Sourced from @​oclif/core's releases.

4.8.1

Bug Fixes

  • deps: bump minimatch from 9.0.5 to 10.2.1 (2815e37)
Changelog

Sourced from @​oclif/core's changelog.

4.8.1 (2026-02-22)

Bug Fixes

  • deps: bump minimatch from 9.0.5 to 10.2.1 (2815e37)
Commits
  • 5072476 chore(release): 4.8.1 [skip ci]
  • ce25dae Merge pull request #1539 from oclif/dependabot-npm_and_yarn-minimatch-10.2.1
  • 2815e37 fix(deps): bump minimatch from 9.0.5 to 10.2.1
  • bcfc7d0 Merge pull request #1540 from oclif/dependabot-npm_and_yarn-eslint-9.39.3
  • d399e77 chore(dev-deps): bump eslint from 9.39.2 to 9.39.3
  • 6929b32 Merge pull request #1541 from oclif/dependabot-npm_and_yarn-eslint-config-ocl...
  • 72cf503 chore(dev-deps): bump eslint-config-oclif from 6.0.137 to 6.0.140
  • e32b9b3 Merge pull request #1534 from oclif/dependabot-npm_and_yarn-oclif-plugin-plug...
  • a8489da Merge pull request #1535 from oclif/dependabot-npm_and_yarn-eslint-config-ocl...
  • 3e95a26 chore(dev-deps): bump eslint-config-oclif from 6.0.135 to 6.0.137
  • Additional commits viewable in compare view

Updates glob from 13.0.5 to 13.0.6

Commits

Updates better-auth from 1.4.18 to 1.4.19

Release notes

Sourced from better-auth's releases.

v1.4.19

   🚀 Features

   🐞 Bug Fixes

... (truncated)

Commits
  • 1892ca3 chore: release v1.4.19
  • 0f035e3 fix(custom-session): use getSetCookie() to preserve individual Set-Cookie hea...
  • 3f25497 fix(organization): remove unreachable null check in acceptInvitation (#7825)
  • 80120ae fix(microsoft): add verifyIdToken support for Microsoft Entra ID provider (...
  • 17407ba fix(admin): optional chain user in hooks (#8026)
  • c44a84d fix(db): infer default value for required attr properly (#7996)
  • 81f507a fix(cookie): relax cookie retrieval for getSessionCookie (#8008)
  • fab61af fix: encode callbackURL in delete-user verification email (#8007)
  • c682ac8 fix(generic-oauth): emit duplicate id warning (#7779)
  • 327ee71 fix(adapter): use getCurrentAdapter for user lookup to avoid transaction de...
  • Additional commits viewable in compare view

Updates hono from 4.11.9 to 4.12.2

Release notes

Sourced from hono's releases.

v4.12.2

Security fix

Fixed incorrect handling of X-Forwarded-For in the AWS Lambda adapter behind ALB that could allow IP-based access control bypass. The detail: GHSA-xh87-mx6m-69f3

Thanks @​EdamAme-x

What's Changed

Full Changelog: honojs/hono@v4.12.1...v4.12.2

v4.12.1

What's Changed

Full Changelog: honojs/hono@v4.12.0...v4.12.1

v4.12.0

Release Notes

Hono v4.12.0 is now available!

This release includes new features for the Hono client, middleware improvements, adapter enhancements, and significant performance improvements to the router and context.

$path for Hono Client

The Hono client now has a $path() method that returns the path string instead of a full URL. This is useful when you need just the path portion for routing or key-based operations:

const client = hc<typeof app>('http://localhost:8787')
// Get the path string
const path = client.api.posts.$path()
// => '/api/posts'
// With path parameters
const postPath = client.api.posts[':id'].$path({
param: { id: '123' },
})
// => '/api/posts/123'
// With query parameters
const searchPath = client.api.posts.$path({
query: { filter: 'test' },
})
// => '/api/posts?filter=test'

... (truncated)

Commits

Updates fumadocs-core from 16.6.3 to 16.6.5

Release notes

Sourced from fumadocs-core's releases.

fumadocs-core@16.6.5

Patch Changes

  • 1a614de: enforce MDX stringifier by default
  • 6ab6692: fix edge case for Dynamic Link

fumadocs-core@16.6.4

No release notes provided.

Commits
  • 8a12676 Version Packages (#3020)
  • c684f53 feat(create-app): add OpenGraph Image to template (#3023)
  • 1a614de Core: enforce MDX stringifier by default
  • 16360ef TypeScript: fix tag parser
  • f5e7993 OpenAPI: improve edge case handling
  • d0cc719 Merge pull request #3024 from Shatlyk1011/patch-1
  • 6ab6692 Core: fix edge case for Dynamic Link
  • 4192b69 Version Packages (#3015)
  • 8f8e7f0 UI: fix accessibility issues
  • 3f8c9b0 OpenAPI: Support OpenAPI 3.2 security scheme deprecation
  • Additional commits viewable in compare view

Updates fumadocs-mdx from 14.2.7 to 14.2.8

Release notes

Sourced from fumadocs-mdx's releases.

fumadocs-mdx@14.2.8

Patch Changes

  • 1a614de: enforce MDX stringifier by default
  • Updated dependencies [1a614de]
  • Updated dependencies [6ab6692]
    • fumadocs-core@16.6.5
Commits

Updates fumadocs-ui from 16.6.3 to 16.6.5

Release notes

Sourced from fumadocs-ui's releases.

fumadocs-ui@16.6.5

Patch Changes

  • Updated dependencies [1a614de]
  • Updated dependencies [6ab6692]
    • fumadocs-core@16.6.5

fumadocs-ui@16.6.4

Patch Changes

  • 8f8e7f0: fix accessibility issues
    • fumadocs-core@16.6.4
Commits
  • 8a12676 Version Packages (#3020)
  • c684f53 feat(create-app): add OpenGraph Image to template (#3023)
  • 1a614de Core: enforce MDX stringifier by default
  • 16360ef TypeScript: fix tag parser
  • f5e7993 OpenAPI: improve edge case handling
  • d0cc719 Merge pull request #3024 from Shatlyk1011/patch-1
  • 6ab6692 Core: fix edge case for Dynamic Link
  • 4192b69 Version Packages (#3015)
  • 8f8e7f0 UI: fix accessibility issues
  • 3f8c9b0 OpenAPI: Support OpenAPI 3.2 security scheme deprecation
  • Additional commits viewable in compare view

Updates tailwind-merge from 3.4.1 to 3.5.0

Release notes

Sourced from tailwind-merge's releases.

v3.5.0

New Features

Full Changelog: dcastil/tailwind-merge@v3.4.1...v3.5.0

Thanks to @​brandonmcconnell, @​manavm1990, @​langy, @​roboflow, @​syntaxfm, @​getsentry, @​codecov, a private sponsor, @​block, @​openclaw, @​sourcegraph and more via @​thnxdev for sponsoring tailwind-merge! ❤️

Commits
  • 270ac79 v3.5.0
  • 86f772e add changelog for 3.5.0
  • 6c1f77c Merge pull request #651 from dcastil/feature/add-support-for-tailwind-css-v4.2
  • 7a4cacf Add support for decimal fraction values
  • 9ef0f79 fix incorrectly escaped characters
  • f4938b0 update README with v4.2 support
  • b02a572 Add Tailwind v4.2 font-features utilities support
  • 5bd25ec Add Tailwind v4.2 logical sizing utilities
  • 697c920 Add Tailwind v4.2 logical border block utilities
  • 6656a47 Improve JSDoc comments for logical insets
  • Additional commits viewable in compare view

Updates react-resizable-panels from 4.6.4 to 4.6.5

Release notes

Sourced from react-resizable-panels's releases.

4.6.5

  • 670: Check for undefined adoptedStyleSheets (to better support environments like jsdom)
  • 671: Bug-fix: Update in-memory layout cache when group is resized by double-clicking on a separator
Changelog

Sourced from react-resizable-panels's changelog.

4.6.5

  • 670: Check for undefined adoptedStyleSheets (to better support environments like jsdom)
  • 671: Bug-fix: Update in-memory layout cache when group is resized by double-clicking on a separator
Commits
  • d905ad8 4.6.4 -> 4.6.5
  • ecc52f8 Check for undefined adoptedStyleSheets (to better support environments like j...
  • 7090efb Conditionally-rendered panel edge case bug fix (#671)
  • 211676e Fixed typo in docs example
  • See full diff in compare view

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 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

…rectory with 10 updates

Bumps the production-dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.574.0` | `0.575.0` |
| [@oclif/core](https://github.com/oclif/core) | `4.8.0` | `4.8.1` |
| [glob](https://github.com/isaacs/node-glob) | `13.0.5` | `13.0.6` |
| [better-auth](https://github.com/better-auth/better-auth/tree/HEAD/packages/better-auth) | `1.4.18` | `1.4.19` |
| [hono](https://github.com/honojs/hono) | `4.11.9` | `4.12.2` |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `16.6.3` | `16.6.5` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `14.2.7` | `14.2.8` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.6.3` | `16.6.5` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.4.1` | `3.5.0` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `4.6.4` | `4.6.5` |



Updates `lucide-react` from 0.574.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 `@oclif/core` from 4.8.0 to 4.8.1
- [Release notes](https://github.com/oclif/core/releases)
- [Changelog](https://github.com/oclif/core/blob/main/CHANGELOG.md)
- [Commits](oclif/core@4.8.0...4.8.1)

Updates `glob` from 13.0.5 to 13.0.6
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v13.0.5...v13.0.6)

Updates `better-auth` from 1.4.18 to 1.4.19
- [Release notes](https://github.com/better-auth/better-auth/releases)
- [Commits](https://github.com/better-auth/better-auth/commits/v1.4.19/packages/better-auth)

Updates `hono` from 4.11.9 to 4.12.2
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.11.9...v4.12.2)

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

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

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

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 `react-resizable-panels` from 4.6.4 to 4.6.5
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md)
- [Commits](bvaughn/react-resizable-panels@4.6.4...4.6.5)

---
updated-dependencies:
- dependency-name: lucide-react
  dependency-version: 0.575.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@oclif/core"
  dependency-version: 4.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: glob
  dependency-version: 13.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: better-auth
  dependency-version: 1.4.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: hono
  dependency-version: 4.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: fumadocs-core
  dependency-version: 16.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fumadocs-mdx
  dependency-version: 14.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fumadocs-ui
  dependency-version: 16.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tailwind-merge
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-resizable-panels
  dependency-version: 4.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-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 Feb 24, 2026
@vercel
Copy link

vercel bot commented Feb 24, 2026

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

Project Deployment Actions Updated (UTC)
objectstack-play Ready Ready Preview, Comment Feb 24, 2026 2:30pm
spec Ready Ready Preview, Comment Feb 24, 2026 2:30pm

Request Review

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 24, 2026
@github-actions github-actions bot added documentation Improvements or additions to documentation size/s labels Feb 24, 2026
@hotlong hotlong merged commit 3e8f41d into main Feb 25, 2026
25 of 26 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-d5ef2c5366 branch February 25, 2026 02:44
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 documentation Improvements or additions to documentation javascript Pull requests that update javascript code size/s

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant