Chromium Code Reviews| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 49 sanitized. | 49 sanitized. |
| 50 [r45818 announcement](https://groups.google.com/a/dartlang.org/forum/#!topic /announce/GVO7EAcPi6A) | 50 [r45818 announcement](https://groups.google.com/a/dartlang.org/forum/#!topic /announce/GVO7EAcPi6A) |
| 51 | 51 |
| 52 * `dart:isolate` | 52 * `dart:isolate` |
| 53 * **BREAKING** The positional `priority` parameter of `Isolate.ping` and `Isol ate.kill` is | 53 * **BREAKING** The positional `priority` parameter of `Isolate.ping` and `Isol ate.kill` is |
| 54 now a named parameter named `priority`. | 54 now a named parameter named `priority`. |
| 55 * **BREAKING** Removed the `Isolate.AS_EVENT` priority. | 55 * **BREAKING** Removed the `Isolate.AS_EVENT` priority. |
| 56 * `Isolate` methods `ping` and `addOnExitListener` now have a named parameter | 56 * `Isolate` methods `ping` and `addOnExitListener` now have a named parameter |
| 57 `response`. | 57 `response`. |
| 58 [r45092](https://github.com/dart-lang/sdk/commit/1b208bd) | 58 [r45092](https://github.com/dart-lang/sdk/commit/1b208bd) |
| 59 * `Isolate.spawnUri` added a named argument `checked`. | |
| 59 * Remove the experimental state of the API. | 60 * Remove the experimental state of the API. |
| 60 | 61 |
| 61 * `dart:profiler` - **DEPRECATED** | 62 * `dart:profiler` - **DEPRECATED** |
| 62 * This library will be removed in 1.12. Use `dart:developer` instead. | 63 * This library will be removed in 1.12. Use `dart:developer` instead. |
| 63 | 64 |
| 64 ### Tool changes | 65 ### Tool changes |
| 65 | 66 |
| 66 * This is the first release that does not include the Eclipse-based | 67 * This is the first release that does not include the Eclipse-based |
| 67 **Dart Editor**. | 68 **Dart Editor**. |
| 68 See [dartlang.org/tools](https://www.dartlang.org/tools/]) for alternatives. | 69 See [dartlang.org/tools](https://www.dartlang.org/tools/]) for alternatives. |
|
Kathy Walrath
2015/06/25 16:39:48
tools/] -> tools/
| |
| 69 * This is the last release that ships the (unsupported) | 70 * This is the last release that ships the (unsupported) |
| 70 dart2dart (aka `dart2js --output-type=dart`) utility as part | 71 dart2dart (aka `dart2js --output-type=dart`) utility as part |
| 71 of dart2js | 72 of dart2js |
| 72 | 73 |
| 73 ## 1.10.0 – 2015-04-29 | 74 ## 1.10.0 – 2015-04-29 |
| 74 | 75 |
| 75 ### Core library changes | 76 ### Core library changes |
| 76 | 77 |
| 77 * `dart:convert` | 78 * `dart:convert` |
| 78 * **POTENTIALLY BREAKING** Fix behavior of `HtmlEscape`. It no longer escapes | 79 * **POTENTIALLY BREAKING** Fix behavior of `HtmlEscape`. It no longer escapes |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 341 they will keep the Dart process alive until they time out. This fixes the | 342 they will keep the Dart process alive until they time out. This fixes the |
| 342 handling of persistent connections. Previously, the client would shut down | 343 handling of persistent connections. Previously, the client would shut down |
| 343 immediately after a request. | 344 immediately after a request. |
| 344 | 345 |
| 345 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 346 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 346 default. The new `autoCompress` property can be set to `true` to re-enable | 347 default. The new `autoCompress` property can be set to `true` to re-enable |
| 347 compression. | 348 compression. |
| 348 | 349 |
| 349 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 350 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 350 which controls how it resolves `package:` URIs. | 351 which controls how it resolves `package:` URIs. |
| OLD | NEW |