| OLD | NEW |
| 1 ## 1.25.0 | 1 ## 1.25.0 |
| 2 | 2 |
| 3 ### Language | 3 ### Language |
| 4 * A string in a `part of` declaration may now be used to refer to the library | 4 * A string in a `part of` declaration may now be used to refer to the library |
| 5 this file is part of. | 5 this file is part of. |
| 6 A library part can now declare its library either as: | 6 A library part can now declare its library either as: |
| 7 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. | 7 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. |
| 8 This allows libraries with no library declarations (and therefore no name) | 8 This allows libraries with no library declarations (and therefore no name) |
| 9 to have parts, and it allows tools to easily find the library of a part | 9 to have parts, and it allows tools to easily find the library of a part |
| 10 file. | 10 file. |
| 11 | 11 |
| 12 #### Strong Mode | 12 #### Strong Mode |
| 13 | 13 |
| 14 ### Core library changes | 14 ### Core library changes |
| 15 | 15 |
| 16 * `dart:io` | 16 * `dart:io` |
| 17 * Unified backends for `SecureSocket`, `SecurityContext`, and | 17 * Unified backends for `SecureSocket`, `SecurityContext`, and |
| 18 `X509Certificate` to be consistent across all platforms. All | 18 `X509Certificate` to be consistent across all platforms. All |
| 19 `SecureSocket`, `SecurityContext`, and `X509Certificate` properties and | 19 `SecureSocket`, `SecurityContext`, and `X509Certificate` properties and |
| 20 methods are now supported on iOS and OSX. | 20 methods are now supported on iOS and OSX. |
| 21 * Deprecated `SecurityContext.alpnSupported` as ALPN is now supported on all | 21 * Deprecated `SecurityContext.alpnSupported` as ALPN is now supported on all |
| 22 platforms. | 22 platforms. |
| 23 * Added 'timeout' parameter to 'Socket.connect' and 'RawSocket.connect'. If a |
| 24 connection attempt takes longer than the duration specified in 'timeout', a |
| 25 'SocketException' will be thrown. Note: if the duration specified in |
| 26 'timeout' is greater than the system level timeout duration, a timeout may |
| 27 occur sooner than specified in 'timeout'. |
| 23 | 28 |
| 24 ### Dart VM | 29 ### Dart VM |
| 25 | 30 |
| 26 ### Tool Changes | 31 ### Tool Changes |
| 27 | 32 |
| 28 * Pub | 33 * Pub |
| 29 | 34 |
| 30 * `pub get` and `pub upgrade` properly produce an error message and exit code | 35 * `pub get` and `pub upgrade` properly produce an error message and exit code |
| 31 when no network is present. | 36 when no network is present. |
| 32 * Bug fixes for dartdevc support in `pub serve`. | 37 * Bug fixes for dartdevc support in `pub serve`. |
| (...skipping 2062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2095 they will keep the Dart process alive until they time out. This fixes the | 2100 they will keep the Dart process alive until they time out. This fixes the |
| 2096 handling of persistent connections. Previously, the client would shut down | 2101 handling of persistent connections. Previously, the client would shut down |
| 2097 immediately after a request. | 2102 immediately after a request. |
| 2098 | 2103 |
| 2099 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 2104 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 2100 default. The new `autoCompress` property can be set to `true` to re-enable | 2105 default. The new `autoCompress` property can be set to `true` to re-enable |
| 2101 compression. | 2106 compression. |
| 2102 | 2107 |
| 2103 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 2108 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 2104 which controls how it resolves `package:` URIs. | 2109 which controls how it resolves `package:` URIs. |
| OLD | NEW |