Releases: trikko/serverino
Releases · trikko/serverino
Release v0.7.20
Release v0.7.19
- Support for multiple daemon instances
- Minor improvements
Release v0.7.18
- Fixed a bug on websockets (thanks @ArthaTi)
- Force exit after shutdown if running on main thread.
Release v0.7.17
What's Changed
- add assertion to verify correct HTTP response status code by @m1dok in #25
- logging improvement
- now you can use
setMaxRequestTimefrom inside the endpoint - dynamic number of workers by default
- kqueue now is the default backend for macos
- on posix
kill -SIGUSR1 <server_pid>reload workers - config.enableWorkersAutoReload added
- new examples
- minor bug fixing
Full Changelog: v0.7.16...v0.7.17
Release v0.7.16
- Small fixes to better adhere to http standard
- Custom splitter to improve line parsing
- Now serverino could run in a docker
FROM: scratch(~1.6MB container)
Release v0.7.15
Full Changelog: v0.7.14...v0.7.15
Release v0.7.14
Added kqueue backend for linux and macOS. Still disabled, for now.
Full Changelog: v0.7.13...v0.7.14
Release v0.7.13
- Now you can run serverino on a secondary thread, just use
mixin ServerinoBackgroundinstead ofmixin ServerinoMainand provide your own main - Added enableLoggerOverride (default=true) on config
- Now you can pause and resume execution of serverino using Daemon.suspend() and Daemon.resume()
- Minor fixes
Release v0.7.12
- Simplified way to running daemon on secondary thread
- Minor fixes and improvements.