Skip to content

chore(deps): bump hono from 4.8.12 to 4.10.1 in the npm-security-updates group across 1 directory#7

Merged
mridang merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm-security-updates-e1207b5ccf
Oct 28, 2025
Merged

chore(deps): bump hono from 4.8.12 to 4.10.1 in the npm-security-updates group across 1 directory#7
mridang merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm-security-updates-e1207b5ccf

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 21, 2025

Bumps the npm-security-updates group with 1 update in the / directory: hono.

Updates hono from 4.8.12 to 4.10.1

Release notes

Sourced from hono's releases.

v4.10.1

What's Changed

Full Changelog: honojs/hono@v4.10.0...v4.10.1

v4.10.0

Release Notes

Hono v4.10.0 is now available!

This release brings improved TypeScript support and new utilities.

The main highlight is the enhanced middleware type definitions that solve a long-standing issue with type safety for RPC clients.

Middleware Type Improvements

Imagine the following app:

import { Hono } from 'hono'
const app = new Hono()
const routes = app.get(
'/',
(c) => {
return c.json({ errorMessage: 'Error!' }, 500)
},
(c) => {
return c.json({ message: 'Success!' }, 200)
}
)

The client with RPC:

import { hc } from 'hono/client'
const client = hc<typeof routes>('/')
const res = await client.index.$get()
if (res.status === 500) {
}
if (res.status === 200) {
}
</tr></table>

... (truncated)

Commits
  • db764c2 4.10.1
  • 8774bf9 fix(types): cannot .use non-return mw from createMiddleware (#4465)
  • 5eb7c15 4.10.0
  • f0c0377 Merge pull request #4461 from honojs/next
  • 9ae98c9 fix(proxy): Correct hop-by-hop header handling per RFC 9110 (#4459)
  • 1280661 feat(request): add cloneRawRequest utility for request cloning (#4382)
  • fb2a7ef feat(ssg): add default plugin that defines the recommended behavior (#4394)
  • 0133317 feat(types): passing middleware types (#4393)
  • 4b796cf 4.9.12
  • 17e4455 refactor: use protected methods instead of computed properties to allow `tree...
  • 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 <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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the npm-security-updates group with 1 update in the / directory: [hono](https://github.com/honojs/hono).


Updates `hono` from 4.8.12 to 4.10.1
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.8.12...v4.10.1)

---
updated-dependencies:
- dependency-name: hono
  dependency-version: 4.10.1
  dependency-type: direct:production
  dependency-group: npm-security-updates
...

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 Oct 21, 2025
@mridang mridang merged commit ba4789c into main Oct 28, 2025
7 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-security-updates-e1207b5ccf branch October 28, 2025 05:14
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.

1 participant