| OLD | NEW |
| 1 ## 1.5.2 | 1 ## 1.6.0 |
| 2 | 2 |
| 3 * Add a `when` parameter to `Chain.capture()`. This allows capturing to be |
| 4 easily enabled and disabled based on whether the application is running in |
| 5 debug/development mode or not. |
| 6 |
| 3 * Deprecate the `ChainHandler` typedef. This didn't provide any value over | 7 * Deprecate the `ChainHandler` typedef. This didn't provide any value over |
| 4 directly annotating the function argument, and it made the documentation less | 8 directly annotating the function argument, and it made the documentation less |
| 5 clear. | 9 clear. |
| 6 | 10 |
| 7 ## 1.5.1 | 11 ## 1.5.1 |
| 8 | 12 |
| 9 * Fix a crash in `Chain.foldFrames()` and `Chain.terse` when one of the chain's | 13 * Fix a crash in `Chain.foldFrames()` and `Chain.terse` when one of the chain's |
| 10 traces has no frames. | 14 traces has no frames. |
| 11 | 15 |
| 12 ## 1.5.0 | 16 ## 1.5.0 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 | 160 |
| 157 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 161 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
| 158 handled by the parent zone. This matches the behavior of `runZoned` in | 162 handled by the parent zone. This matches the behavior of `runZoned` in |
| 159 `dart:async`. | 163 `dart:async`. |
| 160 | 164 |
| 161 ## 0.9.3 | 165 ## 0.9.3 |
| 162 | 166 |
| 163 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 167 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
| 164 | 168 |
| 165 * Record anonymous method frames in IE10 as "<fn>". | 169 * Record anonymous method frames in IE10 as "<fn>". |
| OLD | NEW |