| 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 | 
|  | 6   and treeSanitizer parameters, and the inputs are consistently sanitized. | 
|  | 7 * List iterators may not throw ConcurrentModificationError as eagerly in | 
|  | 8   release mode. In checked mode, the modification check is still as eager | 
|  | 9   as possible. | 
|  | 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 | 
| 5 * `dart:core` | 13 * `dart:core` | 
| 6   * Add `unmodifiable` constructor to `List` - | 14   * Add `unmodifiable` constructor to `List` - | 
| 7     [r45334](https://code.google.com/p/dart/source/detail?r=45334) | 15     [r45334](https://code.google.com/p/dart/source/detail?r=45334) | 
| 8 * `dart:isolate` *Experimental* | 16 * `dart:isolate` *Experimental* | 
| 9   * Make the `priority` parameter of `Isolate.ping` and `Isolate.kill` methods | 17   * Make the `priority` parameter of `Isolate.ping` and `Isolate.kill` methods | 
| 10     a named parameter. | 18     a named parameter. | 
| 11   * Remove the `Isolate.AS_EVENT` priority. | 19   * Remove the `Isolate.AS_EVENT` priority. | 
| 12   * Add extra `response` parameter to `Isolate.ping` and | 20   * Add extra `response` parameter to `Isolate.ping` and | 
| 13     `Isolate.addOnExitListener` - | 21     `Isolate.addOnExitListener` - | 
| 14     [r45092](https://code.google.com/p/dart/source/detail?r=45092) | 22     [r45092](https://code.google.com/p/dart/source/detail?r=45092) | 
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 284     they will keep the Dart process alive until they time out. This fixes the | 292     they will keep the Dart process alive until they time out. This fixes the | 
| 285     handling of persistent connections. Previously, the client would shut down | 293     handling of persistent connections. Previously, the client would shut down | 
| 286     immediately after a request. | 294     immediately after a request. | 
| 287 | 295 | 
| 288   * **Breaking change:** `HttpServer` no longer compresses all traffic by | 296   * **Breaking change:** `HttpServer` no longer compresses all traffic by | 
| 289     default. The new `autoCompress` property can be set to `true` to re-enable | 297     default. The new `autoCompress` property can be set to `true` to re-enable | 
| 290     compression. | 298     compression. | 
| 291 | 299 | 
| 292 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 300 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 
| 293   which controls how it resolves `package:` URIs. | 301   which controls how it resolves `package:` URIs. | 
| OLD | NEW | 
|---|