Skip to content

Releases: moonrhythm/hime

v1.3.0

03 Mar 04:32
9030ac1

Choose a tag to compare

What's Changed

  • implement cookie helper functions to context by @acoshift in #110
  • fix build part handle query from base by @acoshift in #111
  • update dependencies and go

Full Changelog: v1.2.0...v1.3.0

v1.2.0

23 Sep 13:56
0fdbd44

Choose a tag to compare

Breaking Changed

  • remove builder style

Before

app := hime.New().Address(":8080").Handler(h)
app.Template().Minify().Parse("index", "<p>index</p>")

After

app := hime.New()
app.Address(":8080")
app.Handler(h)

t := app.Template()
t.Minify()
t.Parse("index", "<p>index</p>")

What's Changed

Full Changelog: v1.1.4...v1.2.0

v1.1.4

07 Mar 05:31
c6ea0b5

Choose a tag to compare

  • change go mod version to 1.20
  • update dependencies

v1.1.3

21 Jul 23:00
cfa37c6

Choose a tag to compare

  • change go mod version to 1.17
  • update dependencies

v1.1.2

30 Jun 06:06
2281714

Choose a tag to compare

New Features

  • context: add BindJSON
  • add h2c support
  • add eTag to AppConfig

Bug Fixes

  • fix clone missing ETag field

v1.1.1

20 Feb 14:35
25aa47e

Choose a tag to compare

  • template: fix load template from fs.FS on Windows

v1.1.0

18 Feb 15:54
29ed49f

Choose a tag to compare

  • support go 1.16 embed fs
  • minimum go version now is 1.16

Release 1.0.1

24 Nov 02:15
dc93422

Choose a tag to compare

  • template: add MinifyWith and update test to go 1.14 behavior (#98)
  • add etag support (#99)
  • update go to 1.15
  • update dependency

Release 1.0.0

21 Feb 17:16
326e9fb

Choose a tag to compare

🎉🎉🎉🎉🎉🎉🎉🎉🎉

Release 0.13.1

19 Nov 09:36
afc2d0a

Choose a tag to compare

  • fix hime.Route return wrong type