Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: honojs/hono
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.12.12
Choose a base ref
...
head repository: honojs/hono
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.12.13
Choose a head ref
  • 4 commits
  • 7 files changed
  • 2 contributors

Commits on Apr 8, 2026

  1. fix(types): infer response type from last handler in app.on 9- and 10…

    …-handler overloads (#4865)
    
    The 9- and 10-handler `app.on` overloads declared `R` on the last handler position but discarded it, hardcoding `MergeTypedResponse<HandlerResponse<any>>` in the schema instead. This caused the inferred `output` to collapse to `{} | Promise<void>` regardless of what the response handler returned.
    
      Affected overloads:
      - app.on(method,   path, handler x10)
      - app.on(method[], path, handler x9)
      - app.on(method[], path, handler x10)
    
      The 8-handler variants were already using `MergeTypedResponse<R>` correctly.
    T4ko0522 authored Apr 8, 2026
    Configuration menu
    Copy the full SHA
    1aa32fb View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2026

  1. Configuration menu
    Copy the full SHA
    f23e97b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    faa6c46 View commit details
    Browse the repository at this point in the history
  3. 4.12.13

    yusukebe committed Apr 15, 2026
    Configuration menu
    Copy the full SHA
    3779927 View commit details
    Browse the repository at this point in the history
Loading