Releases: estk/log4rs
Releases · estk/log4rs
v.1.3.0
See the changelog for more details.
New
- Add debug and release formatters
- Documentation on configuring the tool
- Code Coverage CI
- CVE Audit CI
- EditorConfig CI
- Code Owners
- NO_COLOR, CLICOLOR, CLICOLOR_FORCE controls
- Example of inline configuration with file rotation
- Time Based Trigger
Changed
- Update minimum supported rust to 1.69 for CVE-2020-26235
- Update
arc-swap
to1.6
- Update
log
to0.4.20
- Update
humantime
to2.1
- Update
serde_yaml
to0.9
- Update
toml
to0.8
- Update
derivative
to2.2
- Update
tempfile
to3.8
- Update
chrono
to0.2.23
- Moved
level
field beforemessage
in json format - Legacy test moved to examples
Fixed
- README typo regarding building for dev on windows
- Apply editorconfig
- Swap rustfmt configuration to
imports_granularity="Crate"
over deprecatedmerge_imports = true
v1.2.0
v1.1.1
v0.12.0
v0.11.0
A performance issue was discovered with gzip and rolling logs, the background_rotation
feature was
added to mitigate this by spawning a background thread to perform the rotation in. Shout out to @yakov-bakhmatov
for the PR!
New
background_rotation
feature which rotates and compresses log archives in a background thread.
Changed
- Deprecate xml feature in preparation for removal.
- Simplify and increase visibility of docs.
- Swap some synchronization primitives to use
parking_lot
implementations.
v0.10.0
This is a big release as we're moving to rust 2018 edition!
New
- More badges in the readme.
Changed
- Use rust 2018 edition.
- Minimum rust version is 1.38.0
- Update
arcswap
,serde-value
andserde-xml-rs
.
Fixed
- Deprecate len method on rolling_file.
- Windows build issue after 2018 edition.