| OLD | NEW |
| 1 ## 1.12.0 | 1 ## 1.12.0 |
| 2 | 2 |
| 3 ### Core library changes | 3 ### Core library changes |
| 4 | 4 |
| 5 * `dart:html` | 5 * `dart:html` |
| 6 * `NodeTreeSanitizer` added the `const trusted` field. It can be used | 6 * `NodeTreeSanitizer` added the `const trusted` field. It can be used |
| 7 instead of defining a `NullTreeSanitizer` class when calling | 7 instead of defining a `NullTreeSanitizer` class when calling |
| 8 `setInnerHtml` or other methods that create DOM from text. It is | 8 `setInnerHtml` or other methods that create DOM from text. It is |
| 9 also more efficient, skipping the creation of a `DocumentFragment`. | 9 also more efficient, skipping the creation of a `DocumentFragment`. |
| 10 | 10 |
| 11 * `dart:io` | 11 * `dart:io` |
| 12 * Added two new file modes, `WRITE_ONLY` and `WRITE_ONLY_APPEND` for | 12 * Added two new file modes, `WRITE_ONLY` and `WRITE_ONLY_APPEND` for |
| 13 opening a file write only. | 13 opening a file write only. |
| 14 [eaeecf2](https://github.com/dart-lang/sdk/commit/eaeecf2ed13ba6c7fbfd653c3c
592974a7120960) | 14 [eaeecf2](https://github.com/dart-lang/sdk/commit/eaeecf2ed13ba6c7fbfd653c3c
592974a7120960) |
| 15 | 15 |
| 16 ### Tool changes | 16 ### Tool changes |
| 17 | 17 |
| 18 * Pub | 18 * Pub |
| 19 | 19 |
| 20 * Pub will now generate a ".packages" file in addition to the "packages" | 20 * Pub will now generate a ".packages" file in addition to the "packages" |
| 21 directory when running `pub get` or similar operations, per the | 21 directory when running `pub get` or similar operations, per the |
| 22 [package spec proposal][]. Pub now has a `--no-package-symlinks` flag that | 22 [package spec proposal][]. Pub now has a `--no-package-symlinks` flag that |
| 23 will stop "packages" directories from being generated at all. | 23 will stop "packages" directories from being generated at all. |
| 24 | 24 |
| 25 * When `pub publish` finds a violation, it will emit a non-zero exit code. | 25 * When `pub publish` finds a violation, it will emit a non-zero exit code. |
| 26 | 26 |
| 27 * `pub run` starts up faster for executables that don't import transformed | 27 * `pub run` starts up faster for executables that don't import transformed |
| 28 code. | 28 code. |
| 29 | 29 |
| 30 * An issue where HTTP requests were sometimes made even though `--offline` was |
| 31 passed to `pub get` or `pub upgrade` has been fixed. |
| 32 |
| 33 * A bug with `--offline` that caused an unhelpful error message has been |
| 34 fixed. |
| 35 |
| 36 * A crashing bug involving transformers that only apply to non-public code has |
| 37 been fixed. |
| 38 |
| 30 [package spec proposal]: https://github.com/lrhn/dep-pkgspec | 39 [package spec proposal]: https://github.com/lrhn/dep-pkgspec |
| 31 | 40 |
| 32 ## 1.11.1 | 41 ## 1.11.1 |
| 33 | 42 |
| 34 ### Tool changes | 43 ### Tool changes |
| 35 | 44 |
| 36 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was | 45 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was |
| 37 run, even if a `DART_SDK` environment variable is set. | 46 run, even if a `DART_SDK` environment variable is set. |
| 38 | 47 |
| 39 ## 1.11.0 - 2015-06-25 | 48 ## 1.11.0 - 2015-06-25 |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 they will keep the Dart process alive until they time out. This fixes the | 379 they will keep the Dart process alive until they time out. This fixes the |
| 371 handling of persistent connections. Previously, the client would shut down | 380 handling of persistent connections. Previously, the client would shut down |
| 372 immediately after a request. | 381 immediately after a request. |
| 373 | 382 |
| 374 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 383 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 375 default. The new `autoCompress` property can be set to `true` to re-enable | 384 default. The new `autoCompress` property can be set to `true` to re-enable |
| 376 compression. | 385 compression. |
| 377 | 386 |
| 378 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 387 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 379 which controls how it resolves `package:` URIs. | 388 which controls how it resolves `package:` URIs. |
| OLD | NEW |