OLD | NEW |
| 1 ## 1.0.3 |
| 2 |
| 3 * Use `Zone.errorCallback` to attach stack chains to all errors without the need |
| 4 for `Chain.track`, which is now deprecated. |
| 5 |
1 ## 1.0.2 | 6 ## 1.0.2 |
2 | 7 |
3 * Remove a workaround for [issue 17083][]. | 8 * Remove a workaround for [issue 17083][]. |
4 | 9 |
5 [issue 17083]: http://code.google.com/p/dart/issues/detail?id=17083 | 10 [issue 17083]: http://code.google.com/p/dart/issues/detail?id=17083 |
6 | 11 |
7 ## 1.0.1 | 12 ## 1.0.1 |
8 | 13 |
9 * Synchronous errors in the [Chain.capture] callback are now handled correctly. | 14 * Synchronous errors in the [Chain.capture] callback are now handled correctly. |
10 | 15 |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 27 |
23 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 28 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
24 handled by the parent zone. This matches the behavior of `runZoned` in | 29 handled by the parent zone. This matches the behavior of `runZoned` in |
25 `dart:async`. | 30 `dart:async`. |
26 | 31 |
27 ## 0.9.3 | 32 ## 0.9.3 |
28 | 33 |
29 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 34 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
30 | 35 |
31 * Record anonymous method frames in IE10 as "<fn>". | 36 * Record anonymous method frames in IE10 as "<fn>". |
OLD | NEW |