| OLD | NEW |
| 1 ## 1.12.0 | 1 ## 1.12.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 | 4 |
| 5 * `dart:async` | 5 * `dart:async` |
| 6 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` | 6 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` |
| 7 and `onCancel` callbacks. | 7 and `onCancel` callbacks. |
| 8 | 8 |
| 9 * `dart:convert` | 9 * `dart:convert` |
| 10 * `LineSplitter` added a `split` static method returning an `Iterable`. | 10 * `LineSplitter` added a `split` static method returning an `Iterable`. |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 publishing. | 61 publishing. |
| 62 | 62 |
| 63 * `.gitignore` files will be respected even if the package isn't at the top | 63 * `.gitignore` files will be respected even if the package isn't at the top |
| 64 level of the Git repository. | 64 level of the Git repository. |
| 65 | 65 |
| 66 * Barback integration | 66 * Barback integration |
| 67 | 67 |
| 68 * A crashing bug involving transformers that only apply to non-public code | 68 * A crashing bug involving transformers that only apply to non-public code |
| 69 has been fixed. | 69 has been fixed. |
| 70 | 70 |
| 71 * A deadlock caused by declaring transformer followed by a lazy transformer |
| 72 (such as the built-in `$dart2js` transformer) has been fixed. |
| 73 |
| 71 * A stack overflow caused by a transformer being run multiple times on the | 74 * A stack overflow caused by a transformer being run multiple times on the |
| 72 package that defines it has been fixed. | 75 package that defines it has been fixed. |
| 73 | 76 |
| 74 * A transformer that tries to read a non-existent asset in another package | 77 * A transformer that tries to read a non-existent asset in another package |
| 75 will now be re-run if that asset is later created. | 78 will now be re-run if that asset is later created. |
| 76 | 79 |
| 77 [package spec proposal]: https://github.com/lrhn/dep-pkgspec | 80 [package spec proposal]: https://github.com/lrhn/dep-pkgspec |
| 78 | 81 |
| 79 ### VM Service Protocol Changes | 82 ### VM Service Protocol Changes |
| 80 | 83 |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 they will keep the Dart process alive until they time out. This fixes the | 434 they will keep the Dart process alive until they time out. This fixes the |
| 432 handling of persistent connections. Previously, the client would shut down | 435 handling of persistent connections. Previously, the client would shut down |
| 433 immediately after a request. | 436 immediately after a request. |
| 434 | 437 |
| 435 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 438 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 436 default. The new `autoCompress` property can be set to `true` to re-enable | 439 default. The new `autoCompress` property can be set to `true` to re-enable |
| 437 compression. | 440 compression. |
| 438 | 441 |
| 439 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 442 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 440 which controls how it resolves `package:` URIs. | 443 which controls how it resolves `package:` URIs. |
| OLD | NEW |