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 `nodeValidator` |
| 6 and treeSanitizer parameters, and the inputs are consistently sanitized. | 6 and `treeSanitizer` parameters, and the inputs are consistently |
| 7 sanitized. See [45818 announcement] | |
| 8 [r45818](https://code.google.com/p/dart/source/detail?r=45818) | |
|
kevmoo
2015/05/26 20:55:57
Just link to the announcement. Linking to the chan
Alan Knight
2015/05/26 21:03:40
Done.
| |
| 9 [45818 announcement](https://groups.google.com/a/dartlang.org/forum/#!topic/an nounce/GVO7EAcPi6A) | |
| 7 * List iterators may not throw ConcurrentModificationError as eagerly in | 10 * List iterators may not throw ConcurrentModificationError as eagerly in |
| 8 release mode. In checked mode, the modification check is still as eager | 11 release mode. In checked mode, the modification check is still as eager |
| 9 as possible. | 12 as possible. |
| 10 [r45198](https://code.google.com/p/dart/source/detail?r=45198), | 13 [r45198](https://code.google.com/p/dart/source/detail?r=45198) |
| 11 * `dart:core` | 14 * `dart:core` |
| 12 * Add `unmodifiable` constructor to `List` - | 15 * Add `unmodifiable` constructor to `List` - |
| 13 [r45334](https://code.google.com/p/dart/source/detail?r=45334) | 16 [r45334](https://code.google.com/p/dart/source/detail?r=45334) |
| 14 * Add `unmodifiable` constructor to `Map` - | 17 * Add `unmodifiable` constructor to `Map` - |
| 15 [r45733](https://code.google.com/p/dart/source/detail?r=45733) | 18 [r45733](https://code.google.com/p/dart/source/detail?r=45733) |
| 16 * Add `empty` constructor to `Iterable` - | 19 * Add `empty` constructor to `Iterable` - |
| 17 [dcf0286f](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e663 18d3bf19abf454b) | 20 [dcf0286f](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e663 18d3bf19abf454b) |
| 18 * `dart:isolate`: | 21 * `dart:isolate`: |
| 19 * Make the priority parameter of `Isolate.ping` and `Isolate.kill` methods | 22 * Make the priority parameter of `Isolate.ping` and `Isolate.kill` methods |
| 20 a named parameter named `priority`. | 23 a named parameter named `priority`. |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 301 they will keep the Dart process alive until they time out. This fixes the | 304 they will keep the Dart process alive until they time out. This fixes the |
| 302 handling of persistent connections. Previously, the client would shut down | 305 handling of persistent connections. Previously, the client would shut down |
| 303 immediately after a request. | 306 immediately after a request. |
| 304 | 307 |
| 305 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 308 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 306 default. The new `autoCompress` property can be set to `true` to re-enable | 309 default. The new `autoCompress` property can be set to `true` to re-enable |
| 307 compression. | 310 compression. |
| 308 | 311 |
| 309 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 312 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 310 which controls how it resolves `package:` URIs. | 313 which controls how it resolves `package:` URIs. |
| OLD | NEW |