Skip to content

Latest commit

 

History

History
88 lines (71 loc) · 3.15 KB

CHANGELOG.md

File metadata and controls

88 lines (71 loc) · 3.15 KB

Changelog

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

Added

  • Option to disable display of location section in error reports

0.6.1 - 2022-02-24

Changed

  • Collapsed backtrace help text into fewer lines

0.6.0 - 2022-01-12

Changed

  • Updated dependencies to match newest tracing versions

0.5.11 - 2021-04-13

0.5.10 - 2020-12-02

Added

  • Support custom themes

0.5.9 - 2020-12-02

Fixed

  • Bumped color-spantrace dependency version to fix a panic

0.5.8 - 2020-11-23

Added

  • 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

Fixed

  • Added missing cfgs that caused compiler errors when only enabling the issue-url feature

0.5.6 - 2020-10-02

Added

  • 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

Added

  • add issue_filter method to HookBuilder for disabling issue generation based on the error encountered.

0.5.4 - 2020-09-17

Added

  • 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

Added

  • add panic_section method to HookBuilder for overriding the printer for the panic message at the start of panic reports

0.5.2 - 2020-08-31

Added

  • make it so all Section trait methods can be called on Report in addition to the already supported usage on Result<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

Changed

  • switched from ansi_term to owo-colors for colorizing output, allowing for better compatibility with the Display trait