| OLD | NEW |
| 1 ## 1.16.0 | 1 ## 1.16.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 | 4 |
| 5 * `dart:io` | 5 * `dart:io` |
| 6 * Added `SecurityContext.alpnSupported`, which is true if a platform | 6 * Added `SecurityContext.alpnSupported`, which is true if a platform |
| 7 supports ALPN, and false otherwise. | 7 supports ALPN, and false otherwise. |
| 8 | 8 |
| 9 ### Analyzer | 9 ### Analyzer |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * Pub | 24 * Pub |
| 25 * `pub serve` now provides caching headers that should improve the performance | 25 * `pub serve` now provides caching headers that should improve the performance |
| 26 of requesting large files multiple times. | 26 of requesting large files multiple times. |
| 27 | 27 |
| 28 * Both `pub get` and `pub upgrade` now have a `--no-precompile` flag that | 28 * Both `pub get` and `pub upgrade` now have a `--no-precompile` flag that |
| 29 disables precompilation of executables and transformed dependencies. | 29 disables precompilation of executables and transformed dependencies. |
| 30 | 30 |
| 31 * Dart Dev Compiler | 31 * Dart Dev Compiler |
| 32 * The **experimental** `dartdevc` executable has been added to the SDK. | 32 * The **experimental** `dartdevc` executable has been added to the SDK. |
| 33 | 33 |
| 34 * It will help early adopters validate the implementation provide feedback. | 34 * It will help early adopters validate the implementation and provide |
| 35 It **should not** be used for production code. | 35 feedback. `dartdevc` **is not** yet ready for production usage. |
| 36 | 36 |
| 37 * Read more about the Dart Dev Compiler [here][dartdevc]. | 37 * Read more about the Dart Dev Compiler [here][dartdevc]. |
| 38 | 38 |
| 39 [dartdevc]: https://github.com/dart-lang/dev_compiler | 39 [dartdevc]: https://github.com/dart-lang/dev_compiler |
| 40 | 40 |
| 41 ## 1.15.0 - 2016-03-09 | 41 ## 1.15.0 - 2016-03-09 |
| 42 | 42 |
| 43 ### Core library changes | 43 ### Core library changes |
| 44 | 44 |
| 45 * `dart:async` | 45 * `dart:async` |
| (...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 they will keep the Dart process alive until they time out. This fixes the | 882 they will keep the Dart process alive until they time out. This fixes the |
| 883 handling of persistent connections. Previously, the client would shut down | 883 handling of persistent connections. Previously, the client would shut down |
| 884 immediately after a request. | 884 immediately after a request. |
| 885 | 885 |
| 886 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 886 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 887 default. The new `autoCompress` property can be set to `true` to re-enable | 887 default. The new `autoCompress` property can be set to `true` to re-enable |
| 888 compression. | 888 compression. |
| 889 | 889 |
| 890 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 890 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 891 which controls how it resolves `package:` URIs. | 891 which controls how it resolves `package:` URIs. |
| OLD | NEW |