Skip to content

Tags: derekperkins/panicparse

Tags

v1.5.1

Toggle v1.5.1's commit message
internal: Nudge to ugprade to v2

If you are reading this, you have three choices:

- Upgrade to v2. Seriously, do this. It's so much better!
- Disable the nudge with the environment variable PANICPARSE_V1_NO_WARN=1
- Stick to v1.5.0.
I

v2.0.1

Toggle v2.0.1's commit message
Fix go get path in README.md and panic help

Using:
  go get github.com/maruel/panicparse/cmd/pp

will retrieve 1.5.0. But now that 2.0.0 is in the sumdb, I can't remove
it anymore, hence a new 2.0.1 release that fix the path in the README
and panic's help.

v2.0.0

Toggle v2.0.0's commit message
README.md: add link to v2.0.0 blog post

v2.0.0-rc1

Toggle v2.0.0-rc1's commit message
stack: fix race ToHTML address format to hex

A pointer in decimal isn't particularly useful.

v2.0.0-alpha1

Toggle v2.0.0-alpha1's commit message
stack: speed up pass through by 1.9x

Use lower level bufio functionality, work in []byte instead of string,
saving a ton of memory copy and making the pass through much faster.

Interestingly parsing became a tad slower with more memory allocation.
It is unclear to me where they occurs.

v1.5.0

Toggle v1.5.0's commit message
stack: check go module after GOPATH

This is an hard call. Normally localgomod should never be inside GOPATH.

Minor forward looking v2 fixes.

v1.4.1

Toggle v1.4.1's commit message
stack: Lower IsPtr() floor from 8MiB to to 4MiB

That's frequent to have pointer lower in the address space. This was not
well tested but will be well tested in v2. This will modify stack
bucketing, generally helping in AnyPointer mode.

v1.4.0

Toggle v1.4.0's commit message
README: update for 1.4.0, add screencast

v1.3.0

Toggle v1.3.0's commit message
stack: add support for Go 1.13beta1

It now prints 'pc' in addition to 'fp' and 'sp'.

Include unit test.

v1.2.1

Toggle v1.2.1's commit message
panic: make it work on go1.7.6

Replace sort.Slice() with strings.FieldsFunc().

sort.Slice() was introduced in go1.8.

I need panic to work on go1.7 to diagnose an issue with
'additional frames elided' not being printed anymore.