honojs/hono
 Watch   
 Star   
 Fork   
5 hours ago
hono

v4.9.5

What's Changed

New Contributors

Full Changelog: https://github.com/honojs/hono/compare/v4.9.4...v4.9.5

7 days ago
hono

v4.9.4

What's Changed

Full Changelog: https://github.com/honojs/hono/compare/v4.9.3...v4.9.4

7 days ago
hono

v4.9.3

What's Changed

Full Changelog: https://github.com/honojs/hono/compare/v4.9.2...v4.9.3

14 days ago
hono

v4.9.2

What's Changed

New Contributors

Full Changelog: https://github.com/honojs/hono/compare/v4.9.1...v4.9.2

17 days ago
hono

v4.9.1

What's Changed

Full Changelog: https://github.com/honojs/hono/compare/v4.9.0...v4.9.1

21 days ago
hono

v4.9.0

Release Notes

Hono v4.9.0 is now available!

This release introduces several enhancements and utilities.

The main highlight is the new parseResponse utility that makes it easier to work with RPC client responses.

parseResponse Utility

The new parseResponse utility provides a convenient way to parse responses from Hono RPC clients (hc). It automatically handles different response formats and throws structured errors for failed requests.

import { parseResponse, DetailedError } from 'hono/client'

// result contains the parsed response body (automatically parsed based on Content-Type)
const result = await parseResponse(client.hello.$get()).catch(
  // parseResponse automatically throws an error if response is not ok
  (e: DetailedError) => {
    console.error(e)
  }
)

This makes working with RPC client responses much more straightforward and type-safe.

Thanks @NamesMT!

New features

All changes

New Contributors

Full Changelog: https://github.com/honojs/hono/compare/v4.8.12...v4.9.0

27 days ago
hono

v4.8.12

What's Changed

Full Changelog: https://github.com/honojs/hono/compare/v4.8.11...v4.8.12

27 days ago
hono

v4.8.11

What's Changed

Full Changelog: https://github.com/honojs/hono/compare/v4.8.10...v4.8.11

2025-07-29 16:21:37
hono

v4.8.10

What's Changed

New Contributors

Full Changelog: https://github.com/honojs/hono/compare/v4.8.9...v4.8.10

2025-07-26 08:04:40
hono

v4.8.9

What's Changed

Full Changelog: https://github.com/honojs/hono/compare/v4.8.8...v4.8.9