Skip to content

Latest commit

 

History

History
105 lines (79 loc) · 3.96 KB

CHANGELOG.md

File metadata and controls

105 lines (79 loc) · 3.96 KB

Release Notes

Most recent version is listed first.

v0.0.25

  • Do not colorize stack traces by default: #78

v0.0.24

  • Add example: #77

v0.0.23

  • Make stacktrace colorization configurable: #76

v0.0.22

  • Bugfix

v0.0.21

  • Bugfix

v0.0.20

  • Support older Go versions: #71
  • Stackp can now write to any io.writer: #74
  • Display stacktrace when dumping variables: #73 #75

v0.0.19

v0.0.18

  • Add ability to diff items: #67
  • Add legend to stack trace: #68

v0.0.17

  • Add ability to dump items with circular references: #66

v0.0.16

  • Update Go version: #62
  • Add ability to dump private struct fields via config option: #64

v0.0.15

  • Retracts v0.0.14 which had a panic bug.

v0.0.14

  • Add config option for how many slices/maps to display: #58

v0.0.13

  • Update Go version: #56

v0.0.12

  • Pretty print errors: #54
  • Handle more interfaces: #55

v0.0.11

  • Fix formatting of custom string types: #52

v0.0.10

  • Implement better indentation for maps and slices: #51

v0.0.9

  • Use testdata in more testcases: #46
  • Implement better indentation: #47
  • Pretty print context.Context: #48
  • Fix Static analysis: #49

v0.0.8

  • Zero value struct should not indent: #44

v0.0.7

  • Update to Go 1.20: #34
  • Better formatting for zero-length slices and maps: #36
  • Zero value pointers should not panic: #37
  • Add tests for embedded structs with tags: #41

v0.0.6

  • Update dependencies: #32
  • Update to Go 1.19: #33

v0.0.5

  • Check if terminal supports color before printing stack traces: #31

v0.0.4

  • Add ability to print stack traces: #29 The stack traces are colorized with different colors for your code, third-party libs & the Go stdlib/runtime. Also code snippet for the most recent call is shown.
  • Stop compacting data structures: #28
  • Add errcheck to CI: #23

v0.0.3

  • Update CI: #17
  • Dump more information about variables/types: #18
    : #21
  • Implement own dump functionality: #22
    We used to use sanity-io/litter to do dumping.
    We however, decided to implement our own dump functionality.
    The main reason precipitating we are doing this is because sanity-io/litter has no way to compact
    arrays/slices/maps that are inside structs.

v0.0.2

  • Add test example: #13
  • Add types to the fields of a struct: #16

v0.0.1

  • Pretty print variables and packages: #10
  • Add cli: #11
  • Add pretty printing for data structures: #12