| OLD | NEW |
| 1 ## 0.11.1 |
| 2 |
| 3 * Add support for automatically logging the stack trace on error messages. Note |
| 4 this can be expensive, so it is off by default. |
| 5 |
| 1 ## 0.11.0 | 6 ## 0.11.0 |
| 2 | 7 |
| 3 * Revert change in `0.10.0`. `stackTrace` must be an instance of `StackTrace`. | 8 * Revert change in `0.10.0`. `stackTrace` must be an instance of `StackTrace`. |
| 4 Use the `Trace` class from the [stack_trace package][] to convert strings. | 9 Use the `Trace` class from the [stack_trace package][] to convert strings. |
| 5 | 10 |
| 6 [stack_trace package]: https://pub.dartlang.org/packages/stack_trace | 11 [stack_trace package]: https://pub.dartlang.org/packages/stack_trace |
| 7 | 12 |
| 8 ## 0.10.0 | 13 ## 0.10.0 |
| 9 | 14 |
| 10 * Change type of `stackTrace` from `StackTrace` to `Object`. | 15 * Change type of `stackTrace` from `StackTrace` to `Object`. |
| 11 | 16 |
| 12 ## 0.9.3 | 17 ## 0.9.3 |
| 13 | 18 |
| 14 * Added optional `LogRecord.zone` field. | 19 * Added optional `LogRecord.zone` field. |
| 15 | 20 |
| 16 * Record current zone (or user specified zone) when creating new `LogRecord`s. | 21 * Record current zone (or user specified zone) when creating new `LogRecord`s. |
| 17 | 22 |
| OLD | NEW |