| OLD | NEW |
| 1 ## 1.6.3 |
| 2 |
| 3 * Make `Chain.capture()` generic. Its signature is now `T Chain.capture<T>(T |
| 4 callback(), ...)`. |
| 5 |
| 1 ## 1.6.2 | 6 ## 1.6.2 |
| 2 | 7 |
| 3 * Fix all strong mode warnings. | 8 * Fix all strong mode warnings. |
| 4 | 9 |
| 5 ## 1.6.1 | 10 ## 1.6.1 |
| 6 | 11 |
| 7 * Use `StackTrace.current` in Dart SDK 1.14 to get the current stack trace. | 12 * Use `StackTrace.current` in Dart SDK 1.14 to get the current stack trace. |
| 8 | 13 |
| 9 ## 1.6.0 | 14 ## 1.6.0 |
| 10 | 15 |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 | 173 |
| 169 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 174 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
| 170 handled by the parent zone. This matches the behavior of `runZoned` in | 175 handled by the parent zone. This matches the behavior of `runZoned` in |
| 171 `dart:async`. | 176 `dart:async`. |
| 172 | 177 |
| 173 ## 0.9.3 | 178 ## 0.9.3 |
| 174 | 179 |
| 175 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 180 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
| 176 | 181 |
| 177 * Record anonymous method frames in IE10 as "<fn>". | 182 * Record anonymous method frames in IE10 as "<fn>". |
| OLD | NEW |