| 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 20 matching lines...) Expand all Loading... |
| 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 | 33 |
| 34 * `dart:developer` | 34 * `dart:developer` |
| 35 * `Timeline.startSync` and `Timeline.timeSync` now accept an optional | 35 * `Timeline.startSync` and `Timeline.timeSync` now accept an optional |
| 36 parameter `flow` of type `Flow`. The `flow` parameter is used to generate | 36 parameter `flow` of type `Flow`. The `flow` parameter is used to generate |
| 37 flow timeline events that are enclosed by the slice described by | 37 flow timeline events that are enclosed by the slice described by |
| 38 `Timeline.{start,finish}Sync` and `Timeline.timeSync`. | 38 `Timeline.{start,finish}Sync` and `Timeline.timeSync`. |
| 39 | 39 |
| 40 ### Dart VM | 40 ### Dart VM |
| 41 * Support for MIPS has been remvoed. | 41 * Support for MIPS has been removed. |
| 42 | 42 |
| 43 ### Tool Changes | 43 ### Tool Changes |
| 44 | 44 |
| 45 * Pub | 45 * Pub |
| 46 | 46 |
| 47 * Git dependencies may now include a `path` parameter, indicating that the | 47 * Git dependencies may now include a `path` parameter, indicating that the |
| 48 package exists in a subdirectory of the Git repository. For example: | 48 package exists in a subdirectory of the Git repository. For example: |
| 49 | 49 |
| 50 ```yaml | 50 ```yaml |
| 51 dependencies: | 51 dependencies: |
| (...skipping 2130 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 | 2182 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 | 2183 handling of persistent connections. Previously, the client would shut down |
| 2184 immediately after a request. | 2184 immediately after a request. |
| 2185 | 2185 |
| 2186 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 2186 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 2187 default. The new `autoCompress` property can be set to `true` to re-enable | 2187 default. The new `autoCompress` property can be set to `true` to re-enable |
| 2188 compression. | 2188 compression. |
| 2189 | 2189 |
| 2190 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 2190 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 2191 which controls how it resolves `package:` URIs. | 2191 which controls how it resolves `package:` URIs. |
| OLD | NEW |