Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 1.9.2 (2015-04) | |
| 2 | |
| 3 This is a bug fix release which merges a number of commits from `bleeding_edge`. | |
| 4 | |
| 5 * [r44453](https://code.google.com/p/dart/source/detail?r=44453) - | |
| 6 dart2js: Addresses as issue with minified Javascript output with CSP enabled. | |
|
nweiz
2015/04/09 21:32:52
I don't think linking the revisions here is partic
kevmoo
2015/04/10 19:19:37
Moved the revisions last. It's nice to see where t
| |
| 7 | |
| 8 * [r44677](https://code.google.com/p/dart/source/detail?r=44677) - | |
| 9 Editor: Fixes accidental updating of files in the pub cache during rename | |
| 10 refactoring. | |
| 11 | |
| 12 * [r44824](https://code.google.com/p/dart/source/detail?r=44824) - | |
| 13 Editor: Resolves | |
| 14 [issue 23032](https://code.google.com/p/dart/issues/detail?id=23032) | |
| 15 regarding skipped breakpoints on Windows | |
| 16 | |
| 17 * [r44957](https://code.google.com/p/dart/source/detail?r=44957), | |
| 18 [r44976](https://code.google.com/p/dart/source/detail?r=44976) - | |
| 19 Fix MethodMirror.source when the method is on the first line in a script. | |
| 20 | |
| 21 * [r44876](https://code.google.com/p/dart/source/detail?r=44876) - | |
| 22 Resolves [issue 23084](https://code.google.com/p/dart/issues/detail?id=23084): | |
| 23 Pub can fail to load transformers necessary for local development | |
| 24 | |
| 1 ## 1.9.1 (2015-03-25) | 25 ## 1.9.1 (2015-03-25) |
| 2 | 26 |
| 3 ### Language changes | 27 ### Language changes |
| 4 | 28 |
| 5 * Support for `async`, `await`, `sync*`, `async*`, `yield`, `yield*`, and `await | 29 * Support for `async`, `await`, `sync*`, `async*`, `yield`, `yield*`, and `await |
| 6 for`. See the [the language tour][async] for more details. | 30 for`. See the [the language tour][async] for more details. |
| 7 | 31 |
| 8 * Enum support is fully enabled. See [the language tour][enum] for more details. | 32 * Enum support is fully enabled. See [the language tour][enum] for more details. |
| 9 | 33 |
| 10 [async]: https://www.dartlang.org/docs/dart-up-and-running/ch02.html#asynchrony | 34 [async]: https://www.dartlang.org/docs/dart-up-and-running/ch02.html#asynchrony |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 205 they will keep the Dart process alive until they time out. This fixes the | 229 they will keep the Dart process alive until they time out. This fixes the |
| 206 handling of persistent connections. Previously, the client would shut down | 230 handling of persistent connections. Previously, the client would shut down |
| 207 immediately after a request. | 231 immediately after a request. |
| 208 | 232 |
| 209 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 233 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 210 default. The new `autoCompress` property can be set to `true` to re-enable | 234 default. The new `autoCompress` property can be set to `true` to re-enable |
| 211 compression. | 235 compression. |
| 212 | 236 |
| 213 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 237 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 214 which controls how it resolves `package:` URIs. | 238 which controls how it resolves `package:` URIs. |
| OLD | NEW |