Skip to content

chore(deps): bump hono from 4.12.10 to 4.13.0 - #554

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/hono-4.13.0
Closed

chore(deps): bump hono from 4.12.10 to 4.13.0#554
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/hono-4.13.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 4, 2026

Copy link
Copy Markdown
Contributor

Bumps hono from 4.12.10 to 4.13.0.

Release notes

Sourced from hono's releases.

v4.13.0

Hono v4.13.0 is now available!

The highlight of this release is performance: a batch of low-level optimizations makes the core request/response path significantly faster — up to 1.25x on common routes in our benchmark. This release also adds first-class support for the HTTP QUERY method, defined in RFC 10008, a new Method Not Allowed middleware, and more.

Performance improvements

This release includes a series of small optimizations: skipping unnecessary Headers allocations, replacing regex tests with indexOf, allocating internal state lazily, and more.

Here is benchmarks/fetch comparing v4.12 and v4.13 (ROUNDS=5 ./compare.sh, Bun 1.4.0, Apple Silicon — each measurement runs in a fresh process, and the variant order is reversed every round to avoid warm-up bias):

Benchmark v4.12 v4.13 Speedup
pingGET / 165.83 ns 163.99 ns 1.01x
queryGET /id/1?name=bun 674.40 ns 616.99 ns 1.09x
jsonGET /user 528.99 ns 422.44 ns 1.25x
bodyPOST /json 1.16 µs 1.00 µs 1.15x

The individual changes:

In addition, the RegExpRouter rewrite described below makes route registration plus the first match roughly 20% faster.

Thanks @​kibertoad for the contributions!

First-class QUERY method support

The QUERY method — a safe, idempotent method that carries a request body — is now a first-class citizen in Hono. You can define QUERY handlers with app.query():

const app = new Hono()
app.query('/search', async (c) => {
const conditions = await c.req.json()
return c.json(await search(conditions))
})

Thanks @​shellhaki!

QUERY support across built-in middleware

The built-in middleware has been updated to handle QUERY requests properly:

... (truncated)

Commits
  • 192768f 4.13.0
  • b0c2d90 Merge pull request #5154 from honojs/next
  • 8f07028 fix(compress): set Vary: Accept-Encoding on negotiated responses (#5137)
  • 8a0b18f feat(reg-exp-router): throw UnsupportedPathError during route registration (#...
  • 3feb355 fix(jsx): allow a function component to return an array (#5179)
  • 5d911d2 feat(utils/headers): add HTTP fields newly registered with IANA (#5153)
  • 30277ae feat(jwt,jwk): add a configurable WWW-Authenticate realm (#5141)
  • 1f707c5 feat(middleware): add method-not-allowed middleware (#5132)
  • 2df0b47 feat(jsx): add React-compatible overloads to useRef (#5063)
  • 3bc96ba feat(cache): add first-class support for QUERY requests (#5119)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for hono since your current version.


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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [hono](https://github.com/honojs/hono) from 4.12.10 to 4.13.0.
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.12.10...v4.13.0)

---
updated-dependencies:
- dependency-name: hono
  dependency-version: 4.13.0
  dependency-type: indirect
...

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 Aug 4, 2026
@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown

Knowledge graph blast radius

Diff: dcd2a5513503c18a84a9ab13b9b274128cfd66eaHEAD
Changed files: 1 · Owning projects: 0 · Unmapped: 1

No owning projects mapped from changed paths.

Unmapped paths

  • package-lock.json

Overview from nx run graph:impact.

@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown

Nx coverage

Projects: 65 · Up: 0 · Down: 0

Project summary

Project Statements Branches Functions Lines Δ statements
apps/agenstra/backend-agent-controller 80.00% 26.47% 28.57% 80.00% 0.00%
apps/agenstra/backend-agent-manager 0.00% 0.00% 0.00% 0.00% 0.00%
apps/agenstra/frontend-agent-console 100.00% 100.00% 100.00% 100.00% 0.00%
apps/agenstra/frontend-landingpage 100.00% 100.00% 100.00% 100.00% 0.00%
apps/decabill/backend-billing-manager 95.45% 83.33% 100.00% 95.31% 0.00%
apps/decabill/frontend-billing-console 100.00% 100.00% 100.00% 100.00% 0.00%
apps/decabill/frontend-landingpage 100.00% 100.00% 100.00% 100.00% 0.00%
apps/forepath/backend-communication 0.00% 0.00% 0.00% 0.00% 0.00%
apps/forepath/frontend-landingpage 100.00% 100.00% 100.00% 100.00% 0.00%
apps/shared/frontend-docs 100.00% 100.00% 100.00% 100.00% 0.00%
apps/shared/mcp-devkit 0.00% 0.00% 0.00% 0.00% 0.00%
apps/shared/mcp-proxy 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/agenstra/backend/feature-agent-controller 70.36% 48.77% 61.39% 70.58% 0.00%
libs/domains/agenstra/backend/feature-agent-manager 78.54% 61.81% 84.70% 78.16% 0.00%
libs/domains/agenstra/frontend/data-access-agent-console 84.79% 57.41% 74.75% 84.85% 0.00%
libs/domains/agenstra/frontend/data-access-portal 100.00% 87.23% 100.00% 100.00% 0.00%
libs/domains/agenstra/frontend/feature-agent-console 78.57% 62.16% 90.98% 78.32% 0.00%
libs/domains/agenstra/frontend/feature-landingpage 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/decabill/backend/feature-billing-manager 86.14% 71.08% 79.59% 85.81% 0.00%
libs/domains/decabill/frontend/data-access-billing-console 89.63% 60.12% 87.33% 89.92% 0.00%
libs/domains/decabill/frontend/data-access-portal 100.00% 88.46% 100.00% 100.00% 0.00%
libs/domains/decabill/frontend/feature-billing-console 92.51% 76.73% 97.50% 92.39% 0.00%
libs/domains/decabill/frontend/feature-landingpage 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/forepath/backend/feature-communication-manager 82.79% 70.74% 86.20% 82.48% 0.00%
libs/domains/forepath/frontend/data-access-project-estimator 83.12% 65.72% 76.68% 84.08% 0.00%
libs/domains/forepath/frontend/feature-landingpage 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/identity/backend/feature-auth 68.33% 49.02% 34.42% 66.95% 0.00%
libs/domains/identity/backend/util-auth 97.69% 89.10% 91.11% 97.81% 0.00%
libs/domains/identity/frontend/data-access-auth 85.67% 66.66% 74.81% 84.93% 0.00%
libs/domains/identity/frontend/feature-auth 47.93% 20.73% 16.17% 45.22% 0.00%
libs/domains/identity/frontend/util-auth 93.22% 90.00% 70.00% 94.64% 0.00%
libs/domains/shared/backend/feature-monitoring 100.00% 100.00% 100.00% 100.00% 0.00%
libs/domains/shared/backend/feature-notifications 79.51% 64.42% 44.36% 79.17% 0.00%
libs/domains/shared/backend/feature-updates 65.93% 62.01% 55.17% 65.06% 0.00%
libs/domains/shared/backend/util-crypto 93.93% 91.17% 100.00% 94.91% 0.00%
libs/domains/shared/backend/util-dynamic-provider-registry 82.05% 63.55% 92.85% 81.79% 0.00%
libs/domains/shared/backend/util-email 100.00% 97.59% 100.00% 100.00% 0.00%
libs/domains/shared/backend/util-http-context 99.46% 89.72% 100.00% 99.45% 0.00%
libs/domains/shared/backend/util-network-address 80.95% 73.80% 80.00% 80.95% 0.00%
libs/domains/shared/backend/util-otel 91.59% 77.77% 90.90% 91.22% 0.00%
libs/domains/shared/backend/util-provisioning-geography 96.92% 87.67% 100.00% 96.82% 0.00%
libs/domains/shared/backend/util-queue 98.07% 88.41% 100.00% 98.06% 0.00%
libs/domains/shared/backend/util-redis-cache 85.93% 76.59% 90.00% 85.48% 0.00%
libs/domains/shared/backend/util-webhook 73.74% 61.17% 70.37% 73.86% 0.00%
libs/domains/shared/frontend/data-access-communication 92.50% 45.45% 100.00% 91.66% 0.00%
libs/domains/shared/frontend/data-access-notifications 72.93% 38.04% 52.57% 72.46% 0.00%
libs/domains/shared/frontend/data-access-updates 89.18% 26.08% 82.60% 92.23% 0.00%
libs/domains/shared/frontend/feature-docs 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/shared/frontend/feature-landingpage 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/shared/frontend/feature-notifications 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/shared/frontend/feature-updates 94.11% 75.00% 100.00% 94.11% 0.00%
libs/domains/shared/frontend/util-configuration 95.00% 61.53% 100.00% 95.00% 0.00%
libs/domains/shared/frontend/util-cookie-consent 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/shared/frontend/util-docs-parser 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/shared/frontend/util-express-server 100.00% 86.18% 100.00% 100.00% 0.00%
libs/domains/shared/frontend/util-loading-indicator 0.00% 0.00% 0.00% 0.00% 0.00%
libs/domains/shared/frontend/util-meta 82.97% 69.33% 86.66% 82.79% 0.00%
libs/domains/shared/frontend/util-provisioning-geography 88.23% 80.76% 66.66% 93.75% 0.00%
libs/domains/shared/frontend/util-runtime-config-server 86.36% 84.82% 90.90% 87.03% 0.00%
libs/domains/shared/shared/util-network-address 80.95% 73.80% 80.00% 80.95% 0.00%
tools/ai 74.54% 56.16% 75.58% 77.38% 0.00%
tools/code 100.00% 93.45% 100.00% 100.00% 0.00%
tools/graph 89.73% 76.22% 91.69% 90.22% 0.00%
tools/release-integrity 79.87% 63.63% 90.00% 80.53% 0.00%
tools/sbom 93.50% 78.04% 100.00% 93.50% 0.00%

Generated from Jest coverage-summary.json (head vs base when available).

@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown

Nx tests

Projects: 69 · Passed projects: 69 · Failed projects: 0
Tests: 7486 passed · 0 failed · 0 pending

Project summary

Project Result Passed Failed Pending Total
agenstra-backend-agent-controller pass 5 0 0 5
agenstra-backend-agent-manager pass 0 0 0 0
agenstra-backend-feature-agent-controller pass 834 0 0 834
agenstra-backend-feature-agent-manager pass 1024 0 0 1024
agenstra-frontend-agent-console pass 1 0 0 1
agenstra-frontend-billing-console pass 1 0 0 1
agenstra-frontend-data-access-agent-console pass 1409 0 0 1409
agenstra-frontend-data-access-portal pass 58 0 0 58
agenstra-frontend-docs pass 1 0 0 1
agenstra-frontend-feature-agent-console pass 72 0 0 72
agenstra-frontend-feature-landingpage pass 0 0 0 0
agenstra-frontend-landingpage pass 1 0 0 1
ai pass 28 0 0 28
code pass 23 0 0 23
decabill-backend-billing-manager pass 13 0 0 13
decabill-backend-feature-billing-manager pass 1562 0 0 1562
decabill-frontend-billing-console pass 1 0 0 1
decabill-frontend-data-access-billing-console pass 1111 0 0 1111
decabill-frontend-data-access-portal pass 61 0 0 61
decabill-frontend-docs pass 1 0 0 1
decabill-frontend-feature-billing-console pass 51 0 0 51
decabill-frontend-feature-landingpage pass 0 0 0 0
decabill-frontend-landingpage pass 1 0 0 1
forepath-backend-communication pass 0 0 0 0
forepath-backend-feature-communication-manager pass 18 0 0 18
forepath-frontend-billing-console pass 1 0 0 1
forepath-frontend-data-access-project-estimator pass 87 0 0 87
forepath-frontend-feature-landingpage pass 0 0 0 0
forepath-frontend-landingpage pass 1 0 0 1
graph pass 74 0 0 74
identity-backend-feature-auth pass 100 0 0 100
identity-backend-util-auth pass 107 0 0 107
identity-frontend-data-access-auth pass 151 0 0 151
identity-frontend-feature-auth pass 40 0 0 40
identity-frontend-util-auth pass 21 0 0 21
release-integrity pass 17 0 0 17
sbom pass 10 0 0 10
shared-backend-feature-monitoring pass 5 0 0 5
shared-backend-feature-notifications pass 57 0 0 57
shared-backend-feature-updates pass 26 0 0 26
shared-backend-util-crypto pass 13 0 0 13
shared-backend-util-dynamic-provider-registry pass 41 0 0 41
shared-backend-util-email pass 29 0 0 29
shared-backend-util-http-context pass 94 0 0 94
shared-backend-util-network-address pass 4 0 0 4
shared-backend-util-otel pass 14 0 0 14
shared-backend-util-provisioning-geography pass 14 0 0 14
shared-backend-util-queue pass 47 0 0 47
shared-backend-util-redis-cache pass 5 0 0 5
shared-backend-util-webhook pass 18 0 0 18
shared-frontend-data-access-communication pass 24 0 0 24
shared-frontend-data-access-notifications pass 29 0 0 29
shared-frontend-data-access-updates pass 19 0 0 19
shared-frontend-docs pass 1 0 0 1
shared-frontend-feature-docs pass 0 0 0 0
shared-frontend-feature-landingpage pass 0 0 0 0
shared-frontend-feature-notifications pass 0 0 0 0
shared-frontend-feature-updates pass 4 0 0 4
shared-frontend-util-configuration pass 37 0 0 37
shared-frontend-util-cookie-consent pass 0 0 0 0
shared-frontend-util-docs-parser pass 0 0 0 0
shared-frontend-util-express-server pass 69 0 0 69
shared-frontend-util-loading-indicator pass 0 0 0 0
shared-frontend-util-meta pass 18 0 0 18
shared-frontend-util-provisioning-geography pass 2 0 0 2
shared-frontend-util-runtime-config-server pass 27 0 0 27
shared-mcp-devkit pass 0 0 0 0
shared-mcp-proxy pass 0 0 0 0
shared-shared-util-network-address pass 4 0 0 4

Generated from per-project Jest summaries under test-results/.

@me-marcel me-marcel closed this Aug 4, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 4, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/hono-4.13.0 branch August 4, 2026 14:54
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