| OLD | NEW |
| 1 ## 1.11.0 | 1 ## 1.11.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 | 4 |
| 5 * List iterators may not throw ConcurrentModificationError as eagerly in |
| 6 release mode. In checked mode, the modification check is still as eager |
| 7 as possible. |
| 8 [r45198](https://code.google.com/p/dart/source/detail?r=45198), |
| 5 * Update experimental Isolate API: | 9 * Update experimental Isolate API: |
| 6 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods | 10 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods |
| 7 a named parameter. | 11 a named parameter. |
| 8 - Remove the `Isolate.AS_EVENT` priority. | 12 - Remove the `Isolate.AS_EVENT` priority. |
| 9 - Add extra `response` parameter to `Isolate.ping` and | 13 - Add extra `response` parameter to `Isolate.ping` and |
| 10 `Isolate.addOnExitListener`. | 14 `Isolate.addOnExitListener`. |
| 11 [r45092](https://code.google.com/p/dart/source/detail?r=45092), | 15 [r45092](https://code.google.com/p/dart/source/detail?r=45092), |
| 12 | 16 |
| 13 ## 1.10.0 | 17 ## 1.10.0 |
| 14 | 18 |
| (...skipping 238 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 | 257 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 | 258 handling of persistent connections. Previously, the client would shut down |
| 255 immediately after a request. | 259 immediately after a request. |
| 256 | 260 |
| 257 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 261 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 258 default. The new `autoCompress` property can be set to `true` to re-enable | 262 default. The new `autoCompress` property can be set to `true` to re-enable |
| 259 compression. | 263 compression. |
| 260 | 264 |
| 261 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 265 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 262 which controls how it resolves `package:` URIs. | 266 which controls how it resolves `package:` URIs. |
| OLD | NEW |