Releases: natefinch/lumberjack
Releases · natefinch/lumberjack
v2.2.1 Module Name Fix
What's Changed
- fix module declaration and remove toml dependency by @natefinch in #178
Full Changelog: v2.2.0...v2.2.1
Fix CVE in test deps and lots of small things
What's Changed
- switch to travis by @natefinch in #44
- Update docs, adding
Compress
setting details by @tbutts in #49 - Fix test timing by @natefinch in #64
- Make default file permissions more restrictive by @JAORMX in #83
- fix a typo by @kangxiaoning in #62
- use 0755 to create new dir by @caibirdme in #68
- cleanup and module support by @glaslos in #77
- Remove dependency on gopkg.in/yaml.v2 by @nikhita in #175
New Contributors
- @tbutts made their first contribution in #49
- @JAORMX made their first contribution in #83
- @kangxiaoning made their first contribution in #62
- @caibirdme made their first contribution in #68
- @glaslos made their first contribution in #77
- @nikhita made their first contribution in #175
Full Changelog: v2.1...v2.2.0
v2.1 - Introducing compression of rotated files
Thanks to the hard work of the devs on Juju, lumberjack now supports compression of backup files.
The one very minor change in behavior is that if you call Rotate(), the rotation will occur in the background, where previously it would rotate on that thread. But since the rotation process now includes compression of log files, we didn't want all that time to be spent inside the mutex.
v2.0
Lumberjack v1.0
Lumberjack is now production-ready!
From now on, only backwards-compatible changes will be made in v1.x. If I need to change the API in any non-backwards compatible way, it will be done on a separate branch so that existing clients can continue to use 1.0 without breakage.
Happy logging!