OLD | NEW |
| 1 ## 1.1.0 |
| 2 |
| 3 * Unify the parsing of Safari and Firefox stack traces. This fixes an error in |
| 4 Firefox trace parsing. |
| 5 |
| 6 * Deprecate `Trace.parseSafari6_0`, `Trace.parseSafari6_1`, |
| 7 `Frame.parseSafari6_0`, and `Frame.parseSafari6_1`. |
| 8 |
| 9 * Add `Frame.parseSafari`. |
| 10 |
1 ## 1.0.3 | 11 ## 1.0.3 |
2 | 12 |
3 * Use `Zone.errorCallback` to attach stack chains to all errors without the need | 13 * Use `Zone.errorCallback` to attach stack chains to all errors without the need |
4 for `Chain.track`, which is now deprecated. | 14 for `Chain.track`, which is now deprecated. |
5 | 15 |
6 ## 1.0.2 | 16 ## 1.0.2 |
7 | 17 |
8 * Remove a workaround for [issue 17083][]. | 18 * Remove a workaround for [issue 17083][]. |
9 | 19 |
10 [issue 17083]: http://code.google.com/p/dart/issues/detail?id=17083 | 20 [issue 17083]: http://code.google.com/p/dart/issues/detail?id=17083 |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 37 |
28 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 38 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
29 handled by the parent zone. This matches the behavior of `runZoned` in | 39 handled by the parent zone. This matches the behavior of `runZoned` in |
30 `dart:async`. | 40 `dart:async`. |
31 | 41 |
32 ## 0.9.3 | 42 ## 0.9.3 |
33 | 43 |
34 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 44 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
35 | 45 |
36 * Record anonymous method frames in IE10 as "<fn>". | 46 * Record anonymous method frames in IE10 as "<fn>". |
OLD | NEW |