-
Notifications
You must be signed in to change notification settings - Fork 727
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
subscriber: prepare to release 0.2.0 stable #567
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0.2.0 (February 4, 2020) Breaking Changes: - **fmt**: Renamed `Context` to `FmtContext` (#420, #425) - **fmt**: Renamed `Builder` to `SubscriberBuilder` (#420) - **filter**: Removed `Filter`. Use `EnvFilter` instead (#434) Added: - **registry**: `Registry`, a reusable span store that `Layer`s can use a high-performance, in-memory store. (#420, #425, #432, #433, #435) - **registry**: Added `LookupSpan` trait, implemented by `Subscriber`s to expose stored span data to `Layer`s (#420) - **fmt**: Added `fmt::Layer`, to allow composing log formatting with other `Layer`s (#420) - **fmt**: Added support for JSON field and event formatting (#377, #415) - **filter**: Documentation for filtering directives (#554) Changed: - **fmt**: Renamed `Context` to `FmtContext` (#420, #425) (BREAKING) - **fmt**: Renamed `Builder` to `SubscriberBuilder` (#420) (BREAKING) - **fmt**: Reimplemented `fmt::Subscriber` in terms of the `Registry` and `Layer`s (#420) Removed: - **filter**: Removed `Filter`. Use `EnvFilter` instead (#434) (BREAKING) Fixed: - **fmt**: Fixed memory leaks in the slab used to store per-span data (3c35048) - **fmt**: `fmt::SubscriberBuilder::init` not setting up `log` compatibility (#489) - **fmt**: Spans closed by a child span closing not also closing _their_ parents (#514) - **Layer**: Fixed `Layered` subscribers failing to downcast to their own type (#549) - **Layer**: Fixed `Layer::downcast_ref` returning invalid references (#454) Signed-off-by: Eliza Weisman <[email protected]>
hawkw
added
crate/subscriber
Related to the `tracing-subscriber` crate
kind/maintenance
labels
Feb 4, 2020
LucioFranco
approved these changes
Feb 4, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚢 it
You might want to update the
Not blocking. |
davidbarsky
approved these changes
Feb 4, 2020
@davidbarsky we'll do that in a follow-up when the crate is published; otherwise we'd be breaking the examples. |
@hawkw Merge away! |
hawkw
added a commit
to hawkw/tracing-gelf
that referenced
this pull request
Feb 5, 2020
`tracing-subscriber` 0.2.0-stable is a major release with several bug fixes, including fixes for a memory leak in the `Registry` span storage. Since Cargo cannot automatically update versions ending with `-alpha.X`, crates depending on earlier `tracing-subscriber` 0.2.0 alpha releases should update to stable. See tokio-rs/tracing#567 for the complete changelog.
hawkw
added a commit
to hawkw/tracing-opentelemetry
that referenced
this pull request
Feb 5, 2020
`tracing-subscriber` 0.2.0-stable is a major release with several bug fixes, including fixes for a memory leak in the `Registry` span storage. Since Cargo cannot automatically update versions ending with `-alpha.X`, crates depending on earlier `tracing-subscriber` 0.2.0 alpha releases should update to stable. See tokio-rs/tracing#567 for the complete changelog.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.0 (February 4, 2020)
Breaking Changes
Context
toFmtContext
(subscriber: Introduce Registry; Refactor fmt::Subscriber in terms of Registry + Layers #420, subscriber: exportFmtContext
#425)Builder
toSubscriberBuilder
(subscriber: Introduce Registry; Refactor fmt::Subscriber in terms of Registry + Layers #420)Filter
. UseEnvFilter
instead (subscriber: remove deprecated items and notices #434)Added
Registry
, aSubscriber
implementation thatLayer
s can useas a high-performance, in-memory span store. (subscriber: Introduce Registry; Refactor fmt::Subscriber in terms of Registry + Layers #420, subscriber: export
FmtContext
#425, subscriber: For registry-backed layers, delay deletion of span until all layers have processed the event #432, subscriber: Fix incorrect extensions lookup infmt::Layer::on_record
#433, subscriber: fix spans never being removed from the registry #435)LookupSpan
trait, implemented bySubscriber
s to exposestored span data to
Layer
s (subscriber: Introduce Registry; Refactor fmt::Subscriber in terms of Registry + Layers #420)fmt::Layer
, to allow composing log formatting with otherLayer
sChanged
Context
toFmtContext
(subscriber: Introduce Registry; Refactor fmt::Subscriber in terms of Registry + Layers #420, subscriber: exportFmtContext
#425) (BREAKING)Builder
toSubscriberBuilder
(subscriber: Introduce Registry; Refactor fmt::Subscriber in terms of Registry + Layers #420) (BREAKING)fmt::Subscriber
in terms of theRegistry
and
Layer
s (subscriber: Introduce Registry; Refactor fmt::Subscriber in terms of Registry + Layers #420)Removed
Filter
. UseEnvFilter
instead (subscriber: remove deprecated items and notices #434) (BREAKING)Fixed
fmt::SubscriberBuilder::init
not setting uplog
compatibility (tracing-subscriber: fmt::SubscriberBuilder::init() log compat doesn't work #489)parents (subscriber: fix issues when a span triggers its parents to close #514)
Layered
subscribers failing to downcast to their own type (subscriber: fixLayered
layers not downcasting to themselves #549)Layer::downcast_ref
returning invalid references (subscriber: fixLayer::downcast_ref
returning invalid references #454)