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 * In dart:html, appendHtml and insertAdjacentHtml now take validator | 5 * In dart:html, appendHtml and insertAdjacentHtml now take validator |
| 6 and treeSanitizer parameters, and the inputs are consistently sanitized. | 6 and treeSanitizer parameters, and the inputs are consistently sanitized. |
| 7 * List iterators may not throw ConcurrentModificationError as eagerly in | 7 * List iterators may not throw ConcurrentModificationError as eagerly in |
| 8 release mode. In checked mode, the modification check is still as eager | 8 release mode. In checked mode, the modification check is still as eager |
| 9 as possible. | 9 as possible. |
| 10 [r45198](https://code.google.com/p/dart/source/detail?r=45198), | 10 [r45198](https://code.google.com/p/dart/source/detail?r=45198), |
| 11 * Update experimental Isolate API: | |
| 12 - Make priority parameters of `Isolate.ping` and `Isolate.kill` methods | |
| 13 * `dart:core` | 11 * `dart:core` |
| 14 * Add `unmodifiable` constructor to `List` - | 12 * Add `unmodifiable` constructor to `List` - |
| 15 [r45334](https://code.google.com/p/dart/source/detail?r=45334) | 13 [r45334](https://code.google.com/p/dart/source/detail?r=45334) |
| 16 * `dart:isolate` *Experimental* | 14 * Add `unmodifiable` constructor to `Map` - |
| 17 * Make the `priority` parameter of `Isolate.ping` and `Isolate.kill` methods | 15 [r45733](https://code.google.com/p/dart/source/detail?r=45733) |
| 18 a named parameter. | 16 * Add `empty` constructor to `Iterable` - |
| 17 [dcf0286f](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e663 18d3bf19abf454b) | |
| 18 * Update experimental Isolate API in `dart:isolate`: | |
|
kevmoo
2015/05/26 11:59:56
Reword this to keep `dart:isolate` at the front. W
| |
| 19 * Make the priority parameter of `Isolate.ping` and `Isolate.kill` methods | |
| 20 a named parameter named `priority`. | |
| 19 * Remove the `Isolate.AS_EVENT` priority. | 21 * Remove the `Isolate.AS_EVENT` priority. |
| 20 * Add extra `response` parameter to `Isolate.ping` and | 22 * Add extra `response` parameter to `Isolate.ping` and |
| 21 `Isolate.addOnExitListener` - | 23 `Isolate.addOnExitListener` - |
| 22 [r45092](https://code.google.com/p/dart/source/detail?r=45092) | 24 [r45092](https://code.google.com/p/dart/source/detail?r=45092) |
| 25 * Remove the experimental state of the API. | |
| 23 | 26 |
| 24 ### Tool changes | 27 ### Tool changes |
| 25 | 28 |
| 26 * This is the last release that ships the (unsupported) | 29 * This is the last release that ships the (unsupported) |
| 27 dart2dart (aka `dart2js --output-type=dart`) utility as part | 30 dart2dart (aka `dart2js --output-type=dart`) utility as part |
| 28 of dart2js | 31 of dart2js |
| 29 | 32 |
| 30 ## 1.10.0 – 2015-04-29 | 33 ## 1.10.0 – 2015-04-29 |
| 31 | 34 |
| 32 ### Core library changes | 35 ### Core library changes |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 298 they will keep the Dart process alive until they time out. This fixes the | 301 they will keep the Dart process alive until they time out. This fixes the |
| 299 handling of persistent connections. Previously, the client would shut down | 302 handling of persistent connections. Previously, the client would shut down |
| 300 immediately after a request. | 303 immediately after a request. |
| 301 | 304 |
| 302 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 305 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 303 default. The new `autoCompress` property can be set to `true` to re-enable | 306 default. The new `autoCompress` property can be set to `true` to re-enable |
| 304 compression. | 307 compression. |
| 305 | 308 |
| 306 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 309 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 307 which controls how it resolves `package:` URIs. | 310 which controls how it resolves `package:` URIs. |
| OLD | NEW |