subscriber: prepare to release 0.2.4 #666
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
0.2.4 (April 6, 2020)
This release includes several API ergonomics improvements, including shorthand
constructors for many types, and an extension trait for initializing subscribers
using method-chaining style. Additionally, several bugs in less commonly used
fmt
APIs were fixed.Added
fmt
(including
tracing_subscriber::fmt()
to return aSubscriberBuilder
,tracing_subscriber::fmt::layer()
to return a formatLayer
, etc) (subscriber: add more ergonomic subscriber configuration APIs #660)tracing_subscriber::registry()
toconstruct a new registry (subscriber: add more ergonomic subscriber configuration APIs #660)
SubscriberInitExt
extension trait for more ergonomic subscriberinitialization (subscriber: add more ergonomic subscriber configuration APIs #660)
Changed
LayerBuilder
methods toLayer
(subscriber: movefmt::LayerBuilder
methods tofmt::Layer
#655)Deprecated
LayerBuilder
, asLayer
now implements all builder methods (subscriber: movefmt::LayerBuilder
methods tofmt::Layer
#655)Fixed
Compact
formatter not omitting levels withwith_level(false)
(subscriber: fix Compact formatter not honoringwith_level
#657)fmt::Layer
duplicating the fields for a new span if anotherlayer has already formatted its fields (Fix but in new_span for fmt layer #634)
record
to add new fields to a spanthat already has fields (subscriber: add space when recording new values on an existing span #659)