| 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 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 * Barback integration | 48 * Barback integration |
| 49 | 49 |
| 50 * A crashing bug involving transformers that only apply to non-public code | 50 * A crashing bug involving transformers that only apply to non-public code |
| 51 has been fixed. | 51 has been fixed. |
| 52 | 52 |
| 53 * A stack overflow caused by a transformer being run multiple times on the | 53 * A stack overflow caused by a transformer being run multiple times on the |
| 54 package that defines it has been fixed. | 54 package that defines it has been fixed. |
| 55 | 55 |
| 56 [package spec proposal]: https://github.com/lrhn/dep-pkgspec | 56 [package spec proposal]: https://github.com/lrhn/dep-pkgspec |
| 57 | 57 |
| 58 ## 1.11.2 |
| 59 |
| 60 ### Core library changes |
| 61 |
| 62 * Fix a bug where `WebSocket.close()` would crash if called after |
| 63 `WebSocket.cancel()`. |
| 64 |
| 58 ## 1.11.1 | 65 ## 1.11.1 |
| 59 | 66 |
| 60 ### Tool changes | 67 ### Tool changes |
| 61 | 68 |
| 62 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was | 69 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was |
| 63 run, even if a `DART_SDK` environment variable is set. | 70 run, even if a `DART_SDK` environment variable is set. |
| 64 | 71 |
| 65 ## 1.11.0 - 2015-06-25 | 72 ## 1.11.0 - 2015-06-25 |
| 66 | 73 |
| 67 ### Core library changes | 74 ### Core library changes |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 they will keep the Dart process alive until they time out. This fixes the | 405 they will keep the Dart process alive until they time out. This fixes the |
| 399 handling of persistent connections. Previously, the client would shut down | 406 handling of persistent connections. Previously, the client would shut down |
| 400 immediately after a request. | 407 immediately after a request. |
| 401 | 408 |
| 402 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 409 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 403 default. The new `autoCompress` property can be set to `true` to re-enable | 410 default. The new `autoCompress` property can be set to `true` to re-enable |
| 404 compression. | 411 compression. |
| 405 | 412 |
| 406 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 413 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 407 which controls how it resolves `package:` URIs. | 414 which controls how it resolves `package:` URIs. |
| OLD | NEW |