| OLD | NEW |
| 1 ## 1.14.0 | 1 ## 1.14.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 * `dart:async` | 4 * `dart:async` |
| 5 * Added `Future.any` static method. | 5 * Added `Future.any` static method. |
| 6 * Added `Stream.fromFutures` constructor. | 6 * Added `Stream.fromFutures` constructor. |
| 7 | 7 |
| 8 * `dart:convert` | 8 * `dart:convert` |
| 9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. | 9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. |
| 10 | 10 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 ensure that the current SDK version is compatible with all dependencies. | 63 ensure that the current SDK version is compatible with all dependencies. |
| 64 | 64 |
| 65 * Fixed a crashing bug when using `pub global run` on a global script that | 65 * Fixed a crashing bug when using `pub global run` on a global script that |
| 66 didn't exist. | 66 didn't exist. |
| 67 | 67 |
| 68 * Fixed a crashing bug when a pubspec contains a dependency without a source | 68 * Fixed a crashing bug when a pubspec contains a dependency without a source |
| 69 declared. | 69 declared. |
| 70 | 70 |
| 71 ## 1.13.2 - 2016-01-06 | 71 ## 1.13.2 - 2016-01-06 |
| 72 | 72 |
| 73 Patch release, resolves one issues: | 73 Patch release, resolves one issue: |
| 74 | 74 |
| 75 * dart2js: Stack traces are not captured correctly (SDK issue [25235] | 75 * dart2js: Stack traces are not captured correctly (SDK issue [25235] |
| 76 (https://github.com/dart-lang/sdk/issues/25235)) | 76 (https://github.com/dart-lang/sdk/issues/25235)) |
| 77 | 77 |
| 78 ## 1.13.1 - 2015-12-17 | 78 ## 1.13.1 - 2015-12-17 |
| 79 | 79 |
| 80 Patch release, resolves three issues: | 80 Patch release, resolves three issues: |
| 81 | 81 |
| 82 * VM type propagation fix: Resolves a potential crash in the Dart VM (SDK commit | 82 * VM type propagation fix: Resolves a potential crash in the Dart VM (SDK commit |
| 83 [dff13be] | 83 [dff13be] |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 they will keep the Dart process alive until they time out. This fixes the | 735 they will keep the Dart process alive until they time out. This fixes the |
| 736 handling of persistent connections. Previously, the client would shut down | 736 handling of persistent connections. Previously, the client would shut down |
| 737 immediately after a request. | 737 immediately after a request. |
| 738 | 738 |
| 739 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 739 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 740 default. The new `autoCompress` property can be set to `true` to re-enable | 740 default. The new `autoCompress` property can be set to `true` to re-enable |
| 741 compression. | 741 compression. |
| 742 | 742 |
| 743 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 743 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 744 which controls how it resolves `package:` URIs. | 744 which controls how it resolves `package:` URIs. |
| OLD | NEW |