3.7 KiB
3.7 KiB
0.2.0 (October 24th, 2023)
This release contains two breaking changes: the removal of the env_logger
and trace_logger features. Below are the suggested migration paths:
env_logger: users should usetracing_subscriber::fmt::Subscriberortracing_subscriber::fmt::Layerwith theTargetsorEnvFilterfilters instead.trace_logger: users should use thetracingcrate's "log" feature flag instead.
Breaking Changes
- Remove deprecated
env_loggerfeature. This removes the dependency on the unmaintainedattycrate, resolving the security advisory GHSA-g98v-hv3f-hcfr/RUSTSEC-2021-0145. (#2771) - Remove deprecated
trace_loggerfeature. (#2771)
0.1.4 (October 23rd, 2023)
Changes
- Deprecated
env_loggerfeature in favor oftracing_subscriber::fmt::Subscriber([#2752])
#[2752]: https://github.com/tokio-rs/tracing/pull/2752
0.1.3 (April 21st, 2022)
Added
- log-tracer: Added
LogTracer::with_interest_cacheto enable a limited form of per-recordInterestcaching forlogrecords (#1636)
Changed
- Updated minimum supported Rust version (MSRV) to Rust 1.49.0 (#1913)
Fixed
- log-tracer: Fixed
LogTracernot honoringtracingmax level filters (#1543) - Broken links in documentation (#2068, #2077)
Thanks to @Millione, @teozkr, @koute, @Folyd, and @ben0x539 for contributing to this release!
0.1.2 (February 19th, 2020)
Added
- Re-export the
logcrate so that users can ensure consistent versions ([#602]) AsLogimplementation fortracing::LevelFilter(#1248)AsTraceimplementation forlog::LevelFilter(#1248)
Fixed
- log-tracer: Fixed
Log::enabledimplementation forLogTracernot callingSubscriber::enabled(#1254) - log-tracer: Fixed
Log::enabledimplementation forLogTracernot checking the max level hint (#1247) - Several documentation fixes (#483, #485, #537, #595, #941, [#981])
0.1.1 (October 29, 2019)
Deprecated
TraceLogger(usetracing's "log" and "log-always" feature flags instead)
Fixed
- Issues with
log/stdfeature flag (#406) - Minor documentation issues (#405, #408)
0.1.0 (September 3, 2019)
- Initial release