Skip to content

Releases: honojs/hono

v0.3.1

02 Feb 01:32
Compare
Choose a tag to compare

What's Changed

Full Changelog: yusukebe/hono@v0.3.0...v0.3.1

v0.3.0

01 Feb 13:18
Compare
Choose a tag to compare

BREAKING CHANGES!!

Now, builtin middleware are not in main package. You can't use Middleware.logger() method. Call sub modules if needed:

import { Hono } from 'hono'
import { poweredBy } from 'hono/powered-by'
import { logger } from 'hono/logger'

const app = new Hono()

app.use('*', poweredBy())
app.use('*', logger())

What's Changed

Full Changelog: yusukebe/hono@v0.2.4...v0.3.0

v0.2.4

31 Jan 05:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: yusukebe/hono@v0.2.3...v0.2.4

v0.2.3

29 Jan 01:32
Compare
Choose a tag to compare

What's Changed

Full Changelog: yusukebe/hono@v0.2.2...v0.2.3

v0.2.2

29 Jan 00:33
a1f29da
Compare
Choose a tag to compare

What's Changed

Full Changelog: yusukebe/hono@v0.2.1...v0.2.2

v0.2.1

29 Jan 00:13
Compare
Choose a tag to compare

What's Changed

Full Changelog: yusukebe/hono@v0.2.0...v0.2.1

v0.2.0

26 Jan 04:15
Compare
Choose a tag to compare

BREAKING CHANGES

c.req.params is obsoleted! Use c.req.param.

What's Changed

Full Changelog: yusukebe/hono@v0.1.0...v0.2.0

v0.1.0

21 Jan 14:40
Compare
Choose a tag to compare

πŸŽ‰πŸŽ‰πŸŽ‰

What's Changed

Full Changelog: yusukebe/hono@v0.0.16...v0.1.0

v0.0.16

19 Jan 09:47
Compare
Choose a tag to compare

What's Changed

Full Changelog: yusukebe/hono@v0.0.15...v0.0.16

v0.0.15

18 Jan 16:47
Compare
Choose a tag to compare

What's Changed

Full Changelog: yusukebe/hono@v0.0.14...v0.0.15