| OLD | NEW |
| 1 ## 1.11.0 | 1 ## 1.11.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 | 4 |
| 5 * Update experimental Isolate API: | 5 * Update experimental Isolate API: |
| 6 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods | 6 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods |
| 7 a named parameter. | 7 a named parameter. |
| 8 - Remove the `Isolate.AS_EVENT` priority. | 8 - Remove the `Isolate.AS_EVENT` priority. |
| 9 - Add extra `response` parameter to `Isolate.ping` and | 9 - Add extra `response` parameter to `Isolate.ping` and |
| 10 `Isolate.addOnExitListener`. | 10 `Isolate.addOnExitListener`. |
| 11 [r45092](https://code.google.com/p/dart/source/detail?r=45092), | 11 [r45092](https://code.google.com/p/dart/source/detail?r=45092), |
| 12 | 12 |
| 13 ## 1.10.0 | 13 ## 1.10.0 |
| 14 | 14 |
| 15 ### Core library changes | 15 ### Core library changes |
| 16 | 16 |
| 17 * Fix behavior of `HtmlEscape` in `dart:convert`. No longer escape | 17 * Fix behavior of `HtmlEscape` in `dart:convert`. No longer escape |
| 18 no-break space (U+00A0) anywhere or forward slash ('/', U+002F) in element | 18 no-break space (U+00A0) anywhere or forward slash ('/', U+002F) in element |
| 19 context. Slash is still escaped in the "unknown" context. | 19 context. Slash is still escaped in the "unknown" context. |
| 20 [r45003](https://code.google.com/p/dart/source/detail?r=45003), | 20 [r45003](https://code.google.com/p/dart/source/detail?r=45003), |
| 21 [r45153](https://code.google.com/p/dart/source/detail?r=45153), | 21 [r45153](https://code.google.com/p/dart/source/detail?r=45153), |
| 22 [r45189](https://code.google.com/p/dart/source/detail?r=45189) | 22 [r45189](https://code.google.com/p/dart/source/detail?r=45189) |
| 23 | 23 |
| 24 * 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 |
| 26 class names containing spaces. The fix is to forbid spaces and provide a |
| 27 faster implementation. |
| 28 [r44898](https://code.google.com/p/dart/source/detail?r=44898), |
| 29 [r45307](https://code.google.com/p/dart/source/detail?r=45307) |
| 30 |
| 24 ## 1.9.3 (2015-04-14) | 31 ## 1.9.3 (2015-04-14) |
| 25 | 32 |
| 26 This is a bug fix release which merges a number of commits from `bleeding_edge`. | 33 This is a bug fix release which merges a number of commits from `bleeding_edge`. |
| 27 | 34 |
| 28 * dart2js: Addresses as issue with minified Javascript output with CSP enabled - | 35 * dart2js: Addresses as issue with minified Javascript output with CSP enabled - |
| 29 [r44453](https://code.google.com/p/dart/source/detail?r=44453) | 36 [r44453](https://code.google.com/p/dart/source/detail?r=44453) |
| 30 | 37 |
| 31 * Editor: Fixes accidental updating of files in the pub cache during rename | 38 * Editor: Fixes accidental updating of files in the pub cache during rename |
| 32 refactoring - [r44677](https://code.google.com/p/dart/source/detail?r=44677) | 39 refactoring - [r44677](https://code.google.com/p/dart/source/detail?r=44677) |
| 33 | 40 |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 they will keep the Dart process alive until they time out. This fixes the | 260 they will keep the Dart process alive until they time out. This fixes the |
| 254 handling of persistent connections. Previously, the client would shut down | 261 handling of persistent connections. Previously, the client would shut down |
| 255 immediately after a request. | 262 immediately after a request. |
| 256 | 263 |
| 257 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 264 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 258 default. The new `autoCompress` property can be set to `true` to re-enable | 265 default. The new `autoCompress` property can be set to `true` to re-enable |
| 259 compression. | 266 compression. |
| 260 | 267 |
| 261 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 268 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 262 which controls how it resolves `package:` URIs. | 269 which controls how it resolves `package:` URIs. |
| OLD | NEW |