|
1 |
| -# 0.1.29 (October 5th, 2021 |
| 1 | +# 0.1.30 (February 3rd, 2021) |
| 2 | + |
| 3 | +This release adds *experimental* support for recording structured field |
| 4 | +values using the [`valuable`] crate. See [this blog post][post] for |
| 5 | +details on `valuable`. |
| 6 | + |
| 7 | +Note that `valuable` support currently requires `--cfg tracing_unstable`. See |
| 8 | +the documentation for details. |
| 9 | + |
| 10 | +This release also adds a new `enabled!` macro for testing if a span or event |
| 11 | +would be enabled. |
| 12 | + |
| 13 | +### Added |
| 14 | + |
| 15 | +- **field**: Experimental support for recording field values using the |
| 16 | + [`valuable`] crate ([#1608], [#1888], [#1887]) |
| 17 | +- `enabled!` macro for testing if a span or event is enabled ([#1882]) |
| 18 | + |
| 19 | +### Changed |
| 20 | + |
| 21 | +- `tracing-core`: updated to [0.1.22][core-0.1.22] |
| 22 | +- `tracing-attributes`: updated to [0.1.19][attributes-0.1.19] |
| 23 | + |
| 24 | +### Fixed |
| 25 | + |
| 26 | +- **log**: Fixed "use of moved value" compiler error when the "log" feature is |
| 27 | + enabled ([#1823]) |
| 28 | +- Fixed macro hygiene issues when used in a crate that defines its own `concat!` |
| 29 | + macro ([#1842]) |
| 30 | +- A very large number of documentation fixes and improvements. |
| 31 | + |
| 32 | +Thanks to @@Vlad-Scherbina, @Skepfyr, @Swatinem, @guswynn, @teohhanhui, |
| 33 | +@xd009642, @tobz, @d-e-s-o@0b01, and @nickelc for contributing to this release! |
| 34 | + |
| 35 | +[`valuable`]: https://crates.io/crates/valuable |
| 36 | +[post]: https://tokio.rs/blog/2021-05-valuable |
| 37 | +[core-0.1.22]: https://github.com/tokio-rs/tracing/releases/tag/tracing-core-0.1.22 |
| 38 | +[attributes-0.1.19]: https://github.com/tokio-rs/tracing/releases/tag/tracing-attributes-0.1.19 |
| 39 | +[#1608]: https://github.com/tokio-rs/tracing/pull/1608 |
| 40 | +[#1888]: https://github.com/tokio-rs/tracing/pull/1888 |
| 41 | +[#1887]: https://github.com/tokio-rs/tracing/pull/1887 |
| 42 | +[#1882]: https://github.com/tokio-rs/tracing/pull/1882 |
| 43 | +[#1823]: https://github.com/tokio-rs/tracing/pull/1823 |
| 44 | +[#1842]: https://github.com/tokio-rs/tracing/pull/1842 |
| 45 | + |
| 46 | +# 0.1.29 (October 5th, 2021) |
2 | 47 |
|
3 | 48 | This release adds support for recording `Option<T> where T: Value` as typed
|
4 | 49 | `tracing` field values. It also includes significant performance improvements
|
|
0 commit comments