Releases: honojs/hono
Releases · honojs/hono
v0.5.7
What's Changed
- feat: exports utility methods by @yusukebe in https://github.com/yusukebe/hono/pull/146
Full Changelog: yusukebe/hono@v0.5.6...v0.5.7
v0.5.6
What's Changed
- feat:
notFound
support await/async by @yusukebe in https://github.com/yusukebe/hono/pull/140 - feat: add GraphQL Server middleware by @yusukebe in https://github.com/yusukebe/hono/pull/142
- docs: add middleware README documents by @yusukebe in https://github.com/yusukebe/hono/pull/145
Full Changelog: yusukebe/hono@v0.5.5...v0.5.6
v0.5.5
What's Changed
- Optimize RegExpRouter by @usualoma in https://github.com/yusukebe/hono/pull/135
- Fix typo. by @usualoma in https://github.com/yusukebe/hono/pull/136
- chore: update examples by @yusukebe in https://github.com/yusukebe/hono/pull/137
- chore: export
trie-router
in package.json by @yusukebe in https://github.com/yusukebe/hono/pull/138 - chore: export etag middleware by @yusukebe in https://github.com/yusukebe/hono/pull/139
Full Changelog: yusukebe/hono@v0.5.4...v0.5.5
v0.5.4
What's Changed
- fix(types): add
Handler<string>
by @yusukebe in https://github.com/yusukebe/hono/pull/134
Full Changelog: yusukebe/hono@v0.5.3...v0.5.4
v0.5.3
What's Changed
- chore: update example for fastly compute@edge by @yusukebe in https://github.com/yusukebe/hono/pull/130
- docs: create Japanese readme by @yusukebe in https://github.com/yusukebe/hono/pull/131
- feat: add
request
method by @yusukebe in https://github.com/yusukebe/hono/pull/132
Full Changelog: yusukebe/hono@v0.5.2...v0.5.3
v0.5.2
What's Changed
- chore: update examples by @yusukebe in https://github.com/yusukebe/hono/pull/123
- docs: write instructions by @yusukebe in https://github.com/yusukebe/hono/pull/125
- English grammar changes by @charl-kruger in https://github.com/yusukebe/hono/pull/127
- feat: basic auth middleware supports overriding
hashFunction
by @yusukebe in https://github.com/yusukebe/hono/pull/128
New Contributors
- @charl-kruger made their first contribution in https://github.com/yusukebe/hono/pull/127
Full Changelog: yusukebe/hono@v0.5.1...v0.5.2
v0.5.1
What's Changed
- refactor: create
utils/crypto.ts
by @yusukebe in https://github.com/yusukebe/hono/pull/118 - feat: etag middleware by @yusukebe in https://github.com/yusukebe/hono/pull/119
- chore: update benchmark script by @yusukebe in https://github.com/yusukebe/hono/pull/120
- refactor: compose by @yusukebe in https://github.com/yusukebe/hono/pull/121
- fix: mime-type bug by @yusukebe in https://github.com/yusukebe/hono/pull/122
Full Changelog: yusukebe/hono@v0.5.0...v0.5.1
v0.5.0
BREAKING CHANGES!!
app.notFound
and app.onError
are changed:
// Custom Not Found Response
app.notFound((c) => c.text('404', 404))
// Handle Error and return custom Error Response
app.onError((err, c) => {
console.error(`${err}`)
return c.text('500', 500)
})
What's Changed
- refactor: compose by @yusukebe in https://github.com/yusukebe/hono/pull/116
- feat:
app.notFound()
andapp.onError()
by @yusukebe in https://github.com/yusukebe/hono/pull/117
Full Changelog: yusukebe/hono@v0.4.2...v0.5.0
v0.4.2
What's Changed
- feat: basic auth middleware supports multiple users by @yusukebe in https://github.com/yusukebe/hono/pull/112
- Make ParamMap Array<[key, value]>. by @usualoma in https://github.com/yusukebe/hono/pull/113
- refactor: directory structure by @yusukebe in https://github.com/yusukebe/hono/pull/114
- feat: exports
RegExpRouter
by @yusukebe in https://github.com/yusukebe/hono/pull/115
Full Changelog: yusukebe/hono@v0.4.1...v0.4.2
v0.4.1
What's Changed
- chore: set up prettier by @yusukebe in https://github.com/yusukebe/hono/pull/106
- refactor: router must have only one hander by @yusukebe in https://github.com/yusukebe/hono/pull/107
- perf: Optimize router by @usualoma in https://github.com/yusukebe/hono/pull/108
- feat: RegExpRouter by @usualoma in https://github.com/yusukebe/hono/pull/109
- feat:
app.notFound
for setting default 404 not found by @yusukebe in https://github.com/yusukebe/hono/pull/110 - feat:
app.onError
for handling error by @yusukebe in https://github.com/yusukebe/hono/pull/111
Full Changelog: yusukebe/hono@v0.4.0...v0.4.1