Skip to content

Latest commit

 

History

History
67 lines (52 loc) · 3.17 KB

CHANGELOG.md

File metadata and controls

67 lines (52 loc) · 3.17 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.3.5 - 2024-08-05

Added

  • Add support for disabling ansi color when the feature is enabled (#16)

0.3.4 - 2024-03-01

Added

  • Add formatter options for location (file + line number) and module_path (#13)

0.3.3 - 2023-08-22

Added

  • Added feature ansi_logs that when enabled will colorize the output (#11)
  • Reduce tracing-subscriber features that are enabled by default (#12)

0.3.2 - 2023-04-24

Fixed

  • Make Builder public (#10)

0.3.1 - 2023-03-13

Changed

  • Builder::layer now returns the concrete tracing_subscriber::fmt::Layer instead of a impl Layer. So that the methods from that type can be accessed.

0.3.0 - 2022-11-28

Added

  • Make extra fields configurable (#8) This is a breaking change, as it changes EventsFormatter and FieldsFormatter from being unit-like structs to regular structs.

Changed

  • Improve performance and reduce allocations (#5)

0.2.0 - 2022-09-27

Added

  • Add fields span and span_path. span contains the current/leaf span name, and span_path contains all the nested span names. (#4)

0.1.2 - 2022-07-11

Fixed

  • Remove unnecessary heap allocation (#2)

0.1.1 - 2022-06-15

Fixed

  • Fix dependency status link in README.md (#1)

0.1.0 - 2022-06-15

Added

  • Initial implementation of a logfmt formatter for tracing-subscriber