Skip to content

Commit 2393d67

Browse files
committed
chore: prepare tracing-subscriber 0.3.19
# 0.3.19 (November 29, 2024) [ [crates.io][crate-0.3.19] ] | [ [docs.rs][docs-0.3.19] ] This release updates the `tracing` dependency to [v0.1.41][tracing-0.1.41] and the `tracing-serde` dependency to [v0.2.0][tracing-serde-0.2.0]. ### Added - Add `set_span_events` to `fmt::Subscriber` ([#2962]) - **tracing**: Allow `&[u8]` to be recorded as event/span field ([#2954]) ### Changed - Set `log` max level when reloading ([#1270]) - Bump MSRV to 1.63 ([#2793]) - Use const `thread_local`s when possible ([#2838]) - Don't gate `with_ansi()` on the "ansi" feature ([#3020]) - Updated tracing-serde to 0.2.0 ([#3160]) [#1270]: #1270 [#2793]: #2793 [#2838]: #2838 [#2954]: #2954 [#2962]: #2962 [#3020]: #3020 [#3160]: #3160 [tracing-0.1.41]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.41 [tracing-serde-0.2.0]: https://github.com/tokio-rs/tracing/releases/tag/tracing-serde-0.2.0 [docs-0.3.19]: https://docs.rs/tracing-subscriber/0.3.19/tracing_subscriber/ [crate-0.3.19]: https://crates.io/crates/tracing-subscriber/0.3.19
1 parent 35f360a commit 2393d67

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
# 0.3.19 (November 29, 2024)
2+
3+
[ [crates.io][crate-0.3.19] ] | [ [docs.rs][docs-0.3.19] ]
4+
5+
This release updates the `tracing` dependency to [v0.1.41][tracing-0.1.41] and
6+
the `tracing-serde` dependency to [v0.2.0][tracing-serde-0.2.0].
7+
8+
### Added
9+
10+
- Add `set_span_events` to `fmt::Subscriber` ([#2962])
11+
- **tracing**: Allow `&[u8]` to be recorded as event/span field ([#2954])
12+
13+
### Changed
14+
15+
- Set `log` max level when reloading ([#1270])
16+
- Bump MSRV to 1.63 ([#2793])
17+
- Use const `thread_local`s when possible ([#2838])
18+
- Don't gate `with_ansi()` on the "ansi" feature ([#3020])
19+
- Updated tracing-serde to 0.2.0 ([#3160])
20+
21+
[#1270]: https://github.com/tokio-rs/tracing/pull/1270
22+
[#2793]: https://github.com/tokio-rs/tracing/pull/2793
23+
[#2838]: https://github.com/tokio-rs/tracing/pull/2838
24+
[#2954]: https://github.com/tokio-rs/tracing/pull/2954
25+
[#2962]: https://github.com/tokio-rs/tracing/pull/2962
26+
[#3020]: https://github.com/tokio-rs/tracing/pull/3020
27+
[#3160]: https://github.com/tokio-rs/tracing/pull/3160
28+
[tracing-0.1.41]:
29+
https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.41
30+
[tracing-serde-0.2.0]:
31+
https://github.com/tokio-rs/tracing/releases/tag/tracing-serde-0.2.0
32+
[docs-0.3.19]: https://docs.rs/tracing-subscriber/0.3.19/tracing_subscriber/
33+
[crate-0.3.19]: https://crates.io/crates/tracing-subscriber/0.3.19
34+
135
# 0.3.18 (November 13, 2023)
236

337
This release of `tracing-subscriber` adds support for the [`NO_COLOR`] environment

tracing-subscriber/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-subscriber"
3-
version = "0.3.18"
3+
version = "0.3.19"
44
authors = [
55
"Eliza Weisman <[email protected]>",
66
"David Barsky <[email protected]>",

tracing-subscriber/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66

77
Utilities for implementing and composing [`tracing`][tracing] subscribers.
88

9+
[`tracing`] is a framework for instrumenting Rust programs to collect
10+
scoped, structured, and async-aware diagnostics. The `Subscriber` trait
11+
represents the functionality necessary to collect this trace data. This
12+
crate contains tools for composing subscribers out of smaller units of
13+
behaviour, and batteries-included implementations of common subscriber
14+
functionality.
15+
16+
`tracing-subscriber` is intended for use by both `Subscriber` authors and
17+
application authors using `tracing` to instrument their applications.
18+
919
[![Crates.io][crates-badge]][crates-url]
1020
[![Documentation][docs-badge]][docs-url]
1121
[![Documentation (master)][docs-master-badge]][docs-master-url]

0 commit comments

Comments
 (0)