Skip to content

Releases: go-dawn/dawn

v0.4.3

04 Nov 07:35
30164bd
Compare
Choose a tag to compare

🍀 Updates

  • Wrap BodyParser error as BadRequest 30164bd

v0.4.2

03 Nov 08:21
Compare
Choose a tag to compare

🔥 New

  • Add fiberx Error struct and helper functions a32a08a

🧹 Updates

v0.4.1

03 Nov 04:51
c807a5e
Compare
Choose a tag to compare

🔥 New

  • config
    • New accept config file path with/without extension #10
  • fiberx
    • Add Messagef method #11

v0.4.0

31 Oct 08:39
Compare
Choose a tag to compare

🔥 New

  • Add gormx with Paginate to get pagination based on index query and transfer dao to domain object #1
  • Add log module 679d164

🍀 Update

  • Add test cases for daemon e70885d
  • Update examples for log module 182f0ea
  • Remove internal daemon run and update daemon example. User should call daemon.Run() explicitly. 4fa3e05
  • Improve test cases ec0949e

v0.3.8

28 Oct 08:59
Compare
Choose a tag to compare

🔥 New

  • Add daemon mode

🌶️ Notice

  • go run won't work in daemon mode
  • Please use go build to build a binary and run it

📔 Usage
Set daemon options in config.toml

[Daemon]
Enable = true
Tries = 10
StdoutLogFile = "./daemon.log"
StderrLogFile = "./daemon.err"

And reference example for more details.