All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased - ReleaseDate
0.6.2 - 2022-07-11
- Option to disable display of location section in error reports
0.6.1 - 2022-02-24
- Collapsed backtrace help text into fewer lines
0.6.0 - 2022-01-12
- Updated dependencies to match newest tracing versions
0.5.11 - 2021-04-13
0.5.10 - 2020-12-02
- Support custom themes
0.5.9 - 2020-12-02
- Bumped color-spantrace dependency version to fix a panic
0.5.8 - 2020-11-23
- Exposed internal interfaces for the panic handler so that it can be wrapped by consumers to customize the behaviour of the panic hook.
0.5.7 - 2020-11-05
- Added missing
cfg
s that caused compiler errors when only enabling theissue-url
feature
0.5.6 - 2020-10-02
- Add support for track caller added in eyre 0.6.1 and print original
callsites of errors in all
eyre::Reports
by default
0.5.5 - 2020-09-21
- add
issue_filter
method toHookBuilder
for disabling issue generation based on the error encountered.
0.5.4 - 2020-09-17
- Add new "issue-url" feature for generating issue creation links in error reports pre-populated with information about the error
0.5.3 - 2020-09-14
- add
panic_section
method toHookBuilder
for overriding the printer for the panic message at the start of panic reports
0.5.2 - 2020-08-31
- make it so all
Section
trait methods can be called onReport
in addition to the already supported usage onResult<T, E: Into<Report>>
- panic_section to
HookBuilder
to add custom sections to panic reports - display_env_section to
HookBuilder
to disable the output indicating what environment variables can be set to manipulate the error reports
- switched from ansi_term to owo-colors for colorizing output, allowing for better compatibility with the Display trait