Releases: go-playground/log
Releases · go-playground/log
Release 8.0.0 RC4
v8.0.0-rc4 cleanup + refactor (#42)
Release v8.0.0 RC3
v8.0.0-rc3 update errors dep (#41)
Release 8.0.0-rc2
v8.0.0-rc2 register default only when terminal (#40)
Release v8.0.0 RC1
v8.0.0-rc1 V8 RC1 (#39)
Release 8.0.0 RC 2 Go Style?
v8.0.0-rc.2 register default only when terminal (#40)
Release 7.0.2
What was fixed?
- Fixed Go Modules versioning + imports
- Updated deps to their Go Modules counterparts
Release v7.0.1
What was fixed?
Corrected terminal detection not compatible with windows.
Release v7.0.0
What's new?
NOTE: breaking change as now relying on go-playground/pkg/runtime
for stack information previously within go-playground/errors
and updated to the latest version of the errors package.
- Added default logger. If you register your own logger, of any kind,
the default logger is removed and so is backward compatible. It is only registered when attached to a terminal. - Added Close methods to handlers to allow resource cleanup & automatic
removal of the logger now that RemoveHandler and AddHandler can be made
on the fly. - Updated to use
go-playground/pkg/runtime.StackLevel(...)
previously found intgo-playground/errors
Release 6.4.0
What's new?
- Added the ability to add an remove
Handlers
andHandler Levels
at runtime with the following functions:RemoveHandler(Handler)
RemoveHandlerLevels(Handler, level)
- Tuned performance of the error parsing a bit
- Updated to use the newest
go-playground/errors
- Fixed some syslog tests
- Updated to using Go Modules
Release 6.3.0
What was added?
The ability to enable/disable the email handler; see PR #26 for details; thanks @Chiiruno for the PR