| OLD | NEW |
| 1 ## 1.4.2 |
| 2 |
| 3 * Improve the display of `data:` URIs in stack traces. |
| 4 |
| 1 ## 1.4.1 | 5 ## 1.4.1 |
| 2 | 6 |
| 3 * Fix a crashing bug in `UnparsedFrame.toString()`. | 7 * Fix a crashing bug in `UnparsedFrame.toString()`. |
| 4 | 8 |
| 5 ## 1.4.0 | 9 ## 1.4.0 |
| 6 | 10 |
| 7 * `new Trace.parse()` and related constructors will no longer throw an exception | 11 * `new Trace.parse()` and related constructors will no longer throw an exception |
| 8 if they encounter an unparseable stack frame. Instead, they will generate an | 12 if they encounter an unparseable stack frame. Instead, they will generate an |
| 9 `UnparsedFrame`, which exposes no metadata but preserves the frame's original | 13 `UnparsedFrame`, which exposes no metadata but preserves the frame's original |
| 10 text. | 14 text. |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 136 |
| 133 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 137 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
| 134 handled by the parent zone. This matches the behavior of `runZoned` in | 138 handled by the parent zone. This matches the behavior of `runZoned` in |
| 135 `dart:async`. | 139 `dart:async`. |
| 136 | 140 |
| 137 ## 0.9.3 | 141 ## 0.9.3 |
| 138 | 142 |
| 139 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 143 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
| 140 | 144 |
| 141 * Record anonymous method frames in IE10 as "<fn>". | 145 * Record anonymous method frames in IE10 as "<fn>". |
| OLD | NEW |