| OLD | NEW |
| 1 ## 1.11.1 |
| 2 |
| 3 ### Tool changes |
| 4 |
| 5 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was |
| 6 run, even if a `DART_SDK` environment variable is set. |
| 7 |
| 1 ## 1.11.0 | 8 ## 1.11.0 |
| 2 | 9 |
| 3 ### Core library changes | 10 ### Core library changes |
| 4 | 11 |
| 5 * In `dart:html`, `appendHtml` and `insertAdjacentHtml` now take `nodeValidator` | 12 * In `dart:html`, `appendHtml` and `insertAdjacentHtml` now take `nodeValidator` |
| 6 and `treeSanitizer` parameters, and the inputs are consistently | 13 and `treeSanitizer` parameters, and the inputs are consistently |
| 7 sanitized. See [45818 announcement] | 14 sanitized. See [45818 announcement] |
| 8 [45818 announcement](https://groups.google.com/a/dartlang.org/forum/#!topic/an
nounce/GVO7EAcPi6A) | 15 [45818 announcement](https://groups.google.com/a/dartlang.org/forum/#!topic/an
nounce/GVO7EAcPi6A) |
| 9 * List iterators may not throw ConcurrentModificationError as eagerly in | 16 * List iterators may not throw ConcurrentModificationError as eagerly in |
| 10 release mode. In checked mode, the modification check is still as eager | 17 release mode. In checked mode, the modification check is still as eager |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 they will keep the Dart process alive until they time out. This fixes the | 310 they will keep the Dart process alive until they time out. This fixes the |
| 304 handling of persistent connections. Previously, the client would shut down | 311 handling of persistent connections. Previously, the client would shut down |
| 305 immediately after a request. | 312 immediately after a request. |
| 306 | 313 |
| 307 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 314 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 308 default. The new `autoCompress` property can be set to `true` to re-enable | 315 default. The new `autoCompress` property can be set to `true` to re-enable |
| 309 compression. | 316 compression. |
| 310 | 317 |
| 311 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 318 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 312 which controls how it resolves `package:` URIs. | 319 which controls how it resolves `package:` URIs. |
| OLD | NEW |