| 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: | 5 * Update experimental Isolate API: |
| 12 - Make priority parameters of `Isolate.ping` and `Isolate.kill` methods | 6 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods |
| 13 a named parameter. | 7 a named parameter. |
| 14 - Remove the `Isolate.AS_EVENT` priority. | 8 - Remove the `Isolate.AS_EVENT` priority. |
| 15 - Add extra `response` parameter to `Isolate.ping` and | 9 - Add extra `response` parameter to `Isolate.ping` and |
| 16 `Isolate.addOnExitListener`. | 10 `Isolate.addOnExitListener`. |
| 17 [r45092](https://code.google.com/p/dart/source/detail?r=45092), | 11 [r45092](https://code.google.com/p/dart/source/detail?r=45092), |
| 18 | 12 |
| 19 ## 1.10.0 | 13 ## 1.10.0 |
| 20 | 14 |
| 21 ### Core library changes | 15 ### Core library changes |
| 22 | 16 |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 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 |
| 267 handling of persistent connections. Previously, the client would shut down | 261 handling of persistent connections. Previously, the client would shut down |
| 268 immediately after a request. | 262 immediately after a request. |
| 269 | 263 |
| 270 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 264 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 271 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 |
| 272 compression. | 266 compression. |
| 273 | 267 |
| 274 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 268 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 275 which controls how it resolves `package:` URIs. | 269 which controls how it resolves `package:` URIs. |
| OLD | NEW |