diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
commit | dc0db358abe19481e475e10c32149b53370f1a1c (patch) | |
tree | ab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/tracing-error/CHANGELOG.md | |
parent | Releasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff) | |
download | rustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip |
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/tracing-error/CHANGELOG.md')
-rw-r--r-- | vendor/tracing-error/CHANGELOG.md | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/vendor/tracing-error/CHANGELOG.md b/vendor/tracing-error/CHANGELOG.md new file mode 100644 index 000000000..7cd565dcf --- /dev/null +++ b/vendor/tracing-error/CHANGELOG.md @@ -0,0 +1,57 @@ +# 0.2.0 (October 23, 2021) + +This is a breaking change release in order to update the `tracing-subscriber` +dependency version to [the v0.3.x release series][v03]. + +### Changed + +- Updated `tracing-subscriber` dependency to [v0.3.0][v03] ([#1677]) + +### Fixed + +- Disabled default features of the `tracing` dependency so that proc-macro + dependencies are not enabled ([#1144]) +- Documentation fixes and improvements ([#635], [#695]) + +### Added + +- **SpanTrace**: Added `SpanTrace::new` constructor for constructing a + `SpanTrace` from a `Span` passed as an argument (rather than capturing the + current span) ([#1492]) + +Thanks to @CAD97 for contributing to this release! + +[v03]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.0 +[#635]: https://github.com/tokio-rs/tracing/pull/635 +[#695]: https://github.com/tokio-rs/tracing/pull/695 +[#1144]: https://github.com/tokio-rs/tracing/pull/1144 +[#1492]: https://github.com/tokio-rs/tracing/pull/1492 +[#1677]: https://github.com/tokio-rs/tracing/pull/1677 + +# 0.1.2 (March 3, 2020) + +### Added + +- **TracedError**: `TracedError`, an error type wrapper that annotates an error + with the current span. +- **SpanTrace**:`SpanTrace::status` method and `SpanTraceStatus` type for + determing whether a `SpanTrace` was successfully captured (#614) + +### Changed + +- **SpanTrace**: Made backtrace formatting more consistent with upstream changes + to `std::backtrace` (#584) + +# 0.1.1 (February 5, 2020) + +### Fixed + +- Fixed a typo in the crate description + +### Changed + +- the maintenance badge from active to experimental + +# 0.1.0 (February 5, 2020) + +- Initial release |