| OLD | NEW |
| 1 ## 1.13.0 | 1 ## 1.13.0 |
| 2 | 2 |
| 3 * `dart:core` | 3 * `dart:core` |
| 4 * `Uri` added `removeFragment` method. | 4 * `Uri` added `removeFragment` method. |
| 5 | 5 |
| 6 * `dart:io` | 6 * `dart:io` |
| 7 * `HttpClient` no longer sends URI fragments in the requeust. This is not | 7 * `HttpClient` no longer sends URI fragments in the requeust. This is not |
| 8 allowed by the HTTP protocol. | 8 allowed by the HTTP protocol. |
| 9 The `HttpServer` still gracefully receives fragments, but discards them | 9 The `HttpServer` still gracefully receives fragments, but discards them |
| 10 before delivering the request. | 10 before delivering the request. |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 * `Isolate.spawnUri` added a named argument `checked`. | 181 * `Isolate.spawnUri` added a named argument `checked`. |
| 182 * Remove the experimental state of the API. | 182 * Remove the experimental state of the API. |
| 183 | 183 |
| 184 * `dart:profiler` - **DEPRECATED** | 184 * `dart:profiler` - **DEPRECATED** |
| 185 * This library will be removed in 1.12. Use `dart:developer` instead. | 185 * This library will be removed in 1.12. Use `dart:developer` instead. |
| 186 | 186 |
| 187 ### Tool changes | 187 ### Tool changes |
| 188 | 188 |
| 189 * This is the first release that does not include the Eclipse-based | 189 * This is the first release that does not include the Eclipse-based |
| 190 **Dart Editor**. | 190 **Dart Editor**. |
| 191 See [dartlang.org/tools](https://www.dartlang.org/tools/]) for alternatives. | 191 See [dartlang.org/tools](https://www.dartlang.org/tools/) for alternatives. |
| 192 * This is the last release that ships the (unsupported) | 192 * This is the last release that ships the (unsupported) |
| 193 dart2dart (aka `dart2js --output-type=dart`) utility as part | 193 dart2dart (aka `dart2js --output-type=dart`) utility as part |
| 194 of dart2js | 194 of dart2js |
| 195 | 195 |
| 196 ## 1.10.0 – 2015-04-29 | 196 ## 1.10.0 – 2015-04-29 |
| 197 | 197 |
| 198 ### Core library changes | 198 ### Core library changes |
| 199 | 199 |
| 200 * `dart:convert` | 200 * `dart:convert` |
| 201 * **POTENTIALLY BREAKING** Fix behavior of `HtmlEscape`. It no longer escapes | 201 * **POTENTIALLY BREAKING** Fix behavior of `HtmlEscape`. It no longer escapes |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 they will keep the Dart process alive until they time out. This fixes the | 464 they will keep the Dart process alive until they time out. This fixes the |
| 465 handling of persistent connections. Previously, the client would shut down | 465 handling of persistent connections. Previously, the client would shut down |
| 466 immediately after a request. | 466 immediately after a request. |
| 467 | 467 |
| 468 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 468 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 469 default. The new `autoCompress` property can be set to `true` to re-enable | 469 default. The new `autoCompress` property can be set to `true` to re-enable |
| 470 compression. | 470 compression. |
| 471 | 471 |
| 472 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 472 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 473 which controls how it resolves `package:` URIs. | 473 which controls how it resolves `package:` URIs. |
| OLD | NEW |