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. |
(...skipping 12 matching lines...) Expand all Loading... |
23 * Added 'timeout' parameter to 'Socket.connect', 'RawSocket.connect', | 23 * Added 'timeout' parameter to 'Socket.connect', 'RawSocket.connect', |
24 'SecureSocket.connect' and 'RawSecureSocket.connect. If a connection attempt | 24 'SecureSocket.connect' and 'RawSecureSocket.connect. If a connection attempt |
25 takes longer than the duration specified in 'timeout', a 'SocketException' | 25 takes longer than the duration specified in 'timeout', a 'SocketException' |
26 will be thrown. Note: if the duration specified in 'timeout' is greater than | 26 will be thrown. Note: if the duration specified in 'timeout' is greater than |
27 the system level timeout duration, a timeout may occur sooner than specified | 27 the system level timeout duration, a timeout may occur sooner than specified |
28 in 'timeout'. | 28 in 'timeout'. |
29 | 29 |
30 * `dart:core` | 30 * `dart:core` |
31 * The `Uri` class now correctly handles paths while running on Node.js on | 31 * The `Uri` class now correctly handles paths while running on Node.js on |
32 Windows. | 32 Windows. |
| 33 * Deprecated the `proxy` annotation. |
33 | 34 |
34 * `dart:developer` | 35 * `dart:developer` |
35 * `Timeline.startSync` and `Timeline.timeSync` now accept an optional | 36 * `Timeline.startSync` and `Timeline.timeSync` now accept an optional |
36 parameter `flow` of type `Flow`. The `flow` parameter is used to generate | 37 parameter `flow` of type `Flow`. The `flow` parameter is used to generate |
37 flow timeline events that are enclosed by the slice described by | 38 flow timeline events that are enclosed by the slice described by |
38 `Timeline.{start,finish}Sync` and `Timeline.timeSync`. | 39 `Timeline.{start,finish}Sync` and `Timeline.timeSync`. |
39 | 40 |
40 ### Dart VM | 41 ### Dart VM |
41 * Support for MIPS has been removed. | 42 * Support for MIPS has been removed. |
42 | 43 |
(...skipping 2139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2182 they will keep the Dart process alive until they time out. This fixes the | 2183 they will keep the Dart process alive until they time out. This fixes the |
2183 handling of persistent connections. Previously, the client would shut down | 2184 handling of persistent connections. Previously, the client would shut down |
2184 immediately after a request. | 2185 immediately after a request. |
2185 | 2186 |
2186 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 2187 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
2187 default. The new `autoCompress` property can be set to `true` to re-enable | 2188 default. The new `autoCompress` property can be set to `true` to re-enable |
2188 compression. | 2189 compression. |
2189 | 2190 |
2190 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 2191 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
2191 which controls how it resolves `package:` URIs. | 2192 which controls how it resolves `package:` URIs. |
OLD | NEW |