Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps hono from 4.10.8 to 4.11.1.

Release notes

Sourced from hono's releases.

v4.11.1

What's Changed

Full Changelog: honojs/hono@v4.11.0...v4.11.1

v4.11.0

Release Notes

Hono v4.11.0 is now available!

This release includes new features for the Hono client, middleware improvements, and an important type system fix.

Type System Fix for Middleware

We've fixed a bug in the type system for middleware. Previously, app did not have the correct type with pathless handlers:

const app = new Hono()
  .use(async (c, next) => {
    await next()
  })
  .get('/a', async (c, next) => {
    await next()
  })
  .get((c) => {
    return c.text('Hello')
  })
// app's type was incorrect

This has now been fixed.

Thanks @​kosei28!

Typed URL for Hono Client

You can now pass the base URL as the second type parameter to hc to get more precise URL types:

const client = hc<typeof app, 'http://localhost:8787'>(
  'http://localhost:8787/'
)
const url = client.api.posts.$url()
// url is TypedURL with precise type information
// including protocol, host, and path

... (truncated)

Commits
  • 1fbe45b 4.11.1
  • 37c3809 fix(types): fix app.on method array type inference (#4578)
  • fe278e9 4.11.0
  • 0d739b6 Merge pull request #4574 from honojs/next
  • 3e12de6 fix(types): replace schema-based path tracking with CurrentPath parameter (#4...
  • 6d62638 feat(secure-headers): Add CSP report-to and report-uri directive support (#4555)
  • b694129 feat(client): add buildSearchParams option to customize query serialization (...
  • d94f4a4 feat(context-storage): Add optional tryGetContext helper to context-storage m...
  • 61f473b feat(pretty-json): support force option (#4531)
  • 44bb7bb feat(timing): add wrapTime to simplify usage (#4519)
  • Additional commits viewable in compare view

Dependabot compatibility score

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

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

@dependabot dependabot bot added the dependencies This PR involves changes to dependencies label Dec 15, 2025
Bumps [hono](https://github.com/honojs/hono) from 4.10.8 to 4.11.1.
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.10.8...v4.11.1)

---
updated-dependencies:
- dependency-name: hono
  dependency-version: 4.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/hono-4.11.1 branch from 15fd6a8 to 23249b3 Compare December 15, 2025 08:47
@TonyRL TonyRL merged commit 6b4e93b into master Dec 15, 2025
44 of 46 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/hono-4.11.1 branch December 15, 2025 10:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto: ready to merge dependencies This PR involves changes to dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants