Skip to content

Comments

chore(deps)(deps): bump the production-dependencies group with 9 updates#789

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-6c5bb1b12a
Open

chore(deps)(deps): bump the production-dependencies group with 9 updates#789
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-6c5bb1b12a

Conversation

@dependabot
Copy link
Contributor

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

Bumps the production-dependencies group with 9 updates:

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
hono 4.11.9 4.12.1
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 hono from 4.11.9 to 4.12.1

Release notes

Sourced from hono's releases.

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'

Unlike $url() which returns a URL object, $path() returns a plain path string, making it convenient for use with routers or as cache keys.

Thanks @​ShaMan123!

ApplyGlobalResponse Type Helper for RPC Client

The new ApplyGlobalResponse type helper allows you to add global error response types to all routes in the RPC client. This is useful for typing common error responses from app.onError() or global middlewares:

const app = new Hono()
  .get('/api/users', (c) => c.json({ users: ['alice', 'bob'] }, 200))
  .onError((err, c) => c.json({ error: err.message }, 500))
</tr></table> 

... (truncated)

Commits
  • 2de30d7 4.12.1
  • 91ef235 fix(client): export ApplyGlobalResponse from hono/client (#4743)
  • d2ed2e9 4.12.0
  • 01e78ad Merge pull request #4735 from honojs/next
  • a340a25 perf(context): use createResponseInstance for new Response (#4733)
  • bd26c31 perf(trie-router): improve performance (1.5x ~ 2.0x) (#4724)
  • b85c1e0 feat(types): Add exports field to ExecutionContext (#4719)
  • 02346c6 feat(language): add progressive locale code truncation to normalizeLanguage (...
  • 7438ab9 perf(context): add fast path to c.json() matching c.text() optimization (#4707)
  • 034223f feat(trailing-slash): add alwaysRedirect option to support wildcard routes ...
  • Additional commits viewable in compare view

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

Bumps the production-dependencies group with 9 updates:

| 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` |
| [hono](https://github.com/honojs/hono) | `4.11.9` | `4.12.1` |
| [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 `hono` from 4.11.9 to 4.12.1
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.11.9...v4.12.1)

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: hono
  dependency-version: 4.12.1
  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 23, 2026
@vercel
Copy link

vercel bot commented Feb 23, 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 23, 2026 2:28am
spec Ready Ready Preview, Comment Feb 23, 2026 2:28am

Request Review

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.

0 participants