Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 1.11.0 | 1 ## 1.11.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 | 4 |
| 5 * Add `unmodifiable` constructor to `List` class - | |
| 6 [r45334](https://code.google.com/p/dart/source/detail?r=45334), | |
| 5 * Update experimental Isolate API: | 7 * Update experimental Isolate API: |
| 6 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods | 8 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods |
| 7 a named parameter. | 9 a named parameter. |
| 8 - Remove the `Isolate.AS_EVENT` priority. | 10 - Remove the `Isolate.AS_EVENT` priority. |
| 9 - Add extra `response` parameter to `Isolate.ping` and | 11 - Add extra `response` parameter to `Isolate.ping` and |
| 10 `Isolate.addOnExitListener`. | 12 `Isolate.addOnExitListener`. |
| 11 [r45092](https://code.google.com/p/dart/source/detail?r=45092), | 13 [r45092](https://code.google.com/p/dart/source/detail?r=45092), |
| 12 | 14 |
| 13 ## 1.10.0 | 15 ## 1.10.0 |
| 14 | 16 |
| 15 ### Core library changes | 17 ### Core library changes |
| 16 | 18 |
| 17 * Fix behavior of `HtmlEscape` in `dart:convert`. No longer escape | 19 * Fix behavior of `HtmlEscape` in `dart:convert`. No longer escape45334 |
|
Søren Gjesse
2015/04/23 09:04:19
Accidental change.
Lasse Reichstein Nielsen
2015/04/23 09:07:07
Good catch.
| |
| 18 no-break space (U+00A0) anywhere or forward slash ('/', U+002F) in element | 20 no-break space (U+00A0) anywhere or forward slash ('/', U+002F) in element |
| 19 context. Slash is still escaped in the "unknown" context. | 21 context. Slash is still escaped in the "unknown" context. |
| 20 [r45003](https://code.google.com/p/dart/source/detail?r=45003), | 22 [r45003](https://code.google.com/p/dart/source/detail?r=45003), |
| 21 [r45153](https://code.google.com/p/dart/source/detail?r=45153), | 23 [r45153](https://code.google.com/p/dart/source/detail?r=45153), |
| 22 [r45189](https://code.google.com/p/dart/source/detail?r=45189) | 24 [r45189](https://code.google.com/p/dart/source/detail?r=45189) |
| 23 | 25 |
| 24 * dart:html: CssClassSet method arguments must now be 'tokens', i.e. non-empty | 26 * dart:html: CssClassSet method arguments must now be 'tokens', i.e. non-empty |
| 25 strings with no white-space characters. The implementation was incorrect for | 27 strings with no white-space characters. The implementation was incorrect for |
| 26 class names containing spaces. The fix is to forbid spaces and provide a | 28 class names containing spaces. The fix is to forbid spaces and provide a |
| 27 faster implementation. | 29 faster implementation. |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 260 they will keep the Dart process alive until they time out. This fixes the | 262 they will keep the Dart process alive until they time out. This fixes the |
| 261 handling of persistent connections. Previously, the client would shut down | 263 handling of persistent connections. Previously, the client would shut down |
| 262 immediately after a request. | 264 immediately after a request. |
| 263 | 265 |
| 264 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 266 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 265 default. The new `autoCompress` property can be set to `true` to re-enable | 267 default. The new `autoCompress` property can be set to `true` to re-enable |
| 266 compression. | 268 compression. |
| 267 | 269 |
| 268 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 270 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 269 which controls how it resolves `package:` URIs. | 271 which controls how it resolves `package:` URIs. |
| OLD | NEW |