| OLD | NEW |
| 1 ## 1.2.2 | 1 ## 1.2.2 |
| 2 | 2 |
| 3 * Don't print the first folded frame of terse stack traces. This frame | 3 * Don't print the first folded frame of terse stack traces. This frame |
| 4 is always just an internal isolate message handler anyway. This | 4 is always just an internal isolate message handler anyway. This |
| 5 improves the readability of stack traces, especially in stack chains. | 5 improves the readability of stack traces, especially in stack chains. |
| 6 | 6 |
| 7 * Remove the line numbers and specific files in all terse folded frames, not |
| 8 just those from core libraries. |
| 9 |
| 7 ## 1.2.1 | 10 ## 1.2.1 |
| 8 | 11 |
| 9 * Add `terse` to `LazyTrace.foldFrames()`. | 12 * Add `terse` to `LazyTrace.foldFrames()`. |
| 10 | 13 |
| 11 * Further improve stack chains when using the VM's async/await implementation. | 14 * Further improve stack chains when using the VM's async/await implementation. |
| 12 | 15 |
| 13 ## 1.2.0 | 16 ## 1.2.0 |
| 14 | 17 |
| 15 * Add a `terse` argument to `Trace.foldFrames()` and `Chain.foldFrames()`. This | 18 * Add a `terse` argument to `Trace.foldFrames()` and `Chain.foldFrames()`. This |
| 16 allows them to inherit the behavior of `Trace.terse` and `Chain.terse` without | 19 allows them to inherit the behavior of `Trace.terse` and `Chain.terse` without |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 75 |
| 73 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 76 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
| 74 handled by the parent zone. This matches the behavior of `runZoned` in | 77 handled by the parent zone. This matches the behavior of `runZoned` in |
| 75 `dart:async`. | 78 `dart:async`. |
| 76 | 79 |
| 77 ## 0.9.3 | 80 ## 0.9.3 |
| 78 | 81 |
| 79 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 82 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
| 80 | 83 |
| 81 * Record anonymous method frames in IE10 as "<fn>". | 84 * Record anonymous method frames in IE10 as "<fn>". |
| OLD | NEW |