Skip to content

Commit a9eeed7

Browse files
authored
chore: prepare tracing-subscriber 0.3.21 (#3419)
# 0.3.21 (November 26, 2025) ### Fixed - Change registry exit to decrement local span ref only ([#3331]) - Make Layered propagate `on_register_dispatch` ([#3379]) ### Changed - `tracing`: updated to 0.1.42 ([#3418]) ### Performance - Remove `clone_span` on enter ([#3289]) ### Documented - Fix a few small things in the format module ([#3339]) - Fix extra closing brace in layer docs ([#3350]) - Fix link in `FmtSpan` docs ([#3411]) [#3289]: https://github.com/tokio-rs/tracing/pull/#3289 [#3331]: https://github.com/tokio-rs/tracing/pull/#3331 [#3339]: https://github.com/tokio-rs/tracing/pull/#3339 [#3350]: https://github.com/tokio-rs/tracing/pull/#3350 [#3379]: https://github.com/tokio-rs/tracing/pull/#3379 [#3411]: https://github.com/tokio-rs/tracing/pull/#3411 [#3418]: https://github.com/tokio-rs/tracing/pull/#3418
1 parent 5bd5505 commit a9eeed7

File tree

3 files changed

+42
-4
lines changed

3 files changed

+42
-4
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,48 @@
1+
# 0.3.21 (November 26, 2025)
2+
3+
### Fixed
4+
5+
- Change registry exit to decrement local span ref only ([#3331])
6+
- Make Layered propagate `on_register_dispatch` ([#3379])
7+
8+
### Changed
9+
10+
- `tracing`: updated to 0.1.42 ([#3418])
11+
12+
### Performance
13+
14+
- Remove `clone_span` on enter ([#3289])
15+
16+
### Documented
17+
18+
- Fix a few small things in the format module ([#3339])
19+
- Fix extra closing brace in layer docs ([#3350])
20+
- Fix link in `FmtSpan` docs ([#3411])
21+
22+
[#3289]: https://github.com/tokio-rs/tracing/pull/#3289
23+
[#3331]: https://github.com/tokio-rs/tracing/pull/#3331
24+
[#3339]: https://github.com/tokio-rs/tracing/pull/#3339
25+
[#3350]: https://github.com/tokio-rs/tracing/pull/#3350
26+
[#3379]: https://github.com/tokio-rs/tracing/pull/#3379
27+
[#3411]: https://github.com/tokio-rs/tracing/pull/#3411
28+
[#3418]: https://github.com/tokio-rs/tracing/pull/#3418
29+
130
# 0.3.20 (August 29, 2025)
231

332
[ [crates.io][crate-0.3.20] ] | [ [docs.rs][docs-0.3.20] ]
433

534
### Fixed
635

7-
- Escape ANSI escape sequences in logs
36+
- Escape ANSI escape sequences in logs ([#3368])
37+
38+
### Added
39+
40+
- Implement `Clone` for `EnvFilter` ([#3360])
41+
42+
[#3360]: https://github.com/tokio-rs/tracing/pull/#3360
43+
[#3368]: https://github.com/tokio-rs/tracing/pull/#3368
44+
[docs-0.3.20]: https://docs.rs/tracing-subscriber/0.3.20/tracing_subscriber/
45+
[crate-0.3.20]: https://crates.io/crates/tracing-subscriber/0.3.20
846

947
# 0.3.19 (November 29, 2024)
1048

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.20"
3+
version = "0.3.21"
44
authors = [
55
"Eliza Weisman <[email protected]>",
66
"David Barsky <[email protected]>",

tracing-subscriber/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ application authors using `tracing` to instrument their applications.
2929
[tracing]: https://github.com/tokio-rs/tracing/tree/main/tracing
3030
[tracing-fmt]: https://github.com/tokio-rs/tracing/tree/main/tracing-subscriber
3131
[crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg
32-
[crates-url]: https://crates.io/crates/tracing-subscriber
32+
[crates-url]: https://crates.io/crates/tracing-subscriber/0.3.21
3333
[docs-badge]: https://docs.rs/tracing-subscriber/badge.svg
34-
[docs-url]: https://docs.rs/tracing-subscriber/latest
34+
[docs-url]: https://docs.rs/tracing-subscriber/0.3.21
3535
[docs-v0.2.x-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
3636
[docs-v0.2.x-url]: https://tracing.rs/tracing_subscriber
3737
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

0 commit comments

Comments
 (0)