From 91c76ca54cc49ba4c85eea381d3be50b467c4fb9 Mon Sep 17 00:00:00 2001 From: Francesco Vigliaturo Date: Wed, 1 Jun 2022 20:46:33 +0200 Subject: [PATCH 1/2] Export UnresolvedReport This let the user the option to get an unsymbolicated report. Useful when the user is not interested in symbolication on the client. Signed-off-by: Francesco Vigliaturo --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 2024f654..ed87e566 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,7 +60,7 @@ pub use self::collector::{Collector, HashCounter}; pub use self::error::{Error, Result}; pub use self::frames::{Frames, Symbol}; pub use self::profiler::{ProfilerGuard, ProfilerGuardBuilder}; -pub use self::report::{Report, ReportBuilder}; +pub use self::report::{Report, ReportBuilder, UnresolvedReport}; #[cfg(feature = "flamegraph")] pub use inferno::flamegraph; From 298be237ecaebcbe5aa8fe379f3a9e3d56009219 Mon Sep 17 00:00:00 2001 From: Francesco Vigliaturo Date: Thu, 9 Jun 2022 10:37:19 +0200 Subject: [PATCH 2/2] Updates the CHANGELOG.md Signed-off-by: Francesco Vigliaturo --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10b68860..b3519d0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Remove `backtrace-rs` feature, as the default choice when not specified (#130) +### Fixed +- Export `UnresolvedReport` type to allow developers to get the unresolved report (#132) + ## [0.9.1] - 2022-05-19 ### Fixed