Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 1.25.0 | 1 ## 1.25.0 |
| 2 | 2 |
| 3 ### Language | 3 ### Language |
| 4 * A string in a `part of` declaration may now be used to refer to the library | 4 * A string in a `part of` declaration may now be used to refer to the library |
| 5 this file is part of. | 5 this file is part of. |
| 6 A library part can now declare its library either as: | 6 A library part can now declare its library either as: |
| 7 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. | 7 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. |
| 8 This allows libraries with no library declarations (and therefore no name) | 8 This allows libraries with no library declarations (and therefore no name) |
| 9 to have parts, and it allows tools to easily find the library of a part | 9 to have parts, and it allows tools to easily find the library of a part |
| 10 file. | 10 file. |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 dependencies: | 41 dependencies: |
| 42 foobar: | 42 foobar: |
| 43 git: | 43 git: |
| 44 url: git://github.com/dart-lang/multi_package_repo | 44 url: git://github.com/dart-lang/multi_package_repo |
| 45 path: pkg/foobar | 45 path: pkg/foobar |
| 46 ``` | 46 ``` |
| 47 | 47 |
| 48 * `pub get` and `pub upgrade` properly produce an error message and exit code | 48 * `pub get` and `pub upgrade` properly produce an error message and exit code |
| 49 when no network is present. | 49 when no network is present. |
| 50 | 50 |
| 51 * Bug fixes for dartdevc support in `pub serve`. | 51 * `pub serve` now waits for file watcher events to stabilize before scheduling |
| 52 new builds. This helps specifically with `safe-write` features in editors, | |
| 53 as well as other situations such as `save all` which cause many fast edits. | |
| 54 * This is configurable with the `--build-delay` argument which defaults to | |
|
nweiz
2017/07/06 20:51:26
Nit: I'd just make this another paragraph in the e
jakemac
2017/07/06 21:14:08
Done.
| |
| 55 50 (milliseconds). | |
| 52 | 56 |
| 53 * Fixed module config invalidation logic so modules are properly | 57 * Removed require.js module loading timeout for dartdevc, which resolves an |
| 54 recalculated when package layout changes. | 58 issue where the initial load of an app might give a timeout error. |
| 55 * Fixed exception when handling require.js errors that aren't script load | |
| 56 errors. | |
| 57 * Fixed an issue where requesting the bootstrap.js file before the dart.js | |
| 58 file would result in a 404. | |
| 59 * Fixed a Safari issue during bootstrapping (note that Safari is still not | |
| 60 officially supported but does work for trivial examples). | |
| 61 | 59 |
| 62 ## 1.24.2 - 22-06-2017 | 60 ## 1.24.2 - 22-06-2017 |
| 63 | 61 |
| 64 * Fixes for debugging in Dartium. | 62 * Fixes for debugging in Dartium. |
| 65 * Fix DevConsole crash with JS | 63 * Fix DevConsole crash with JS |
| 66 (https://github.com/dart-lang/sdk/issues/29873). | 64 (https://github.com/dart-lang/sdk/issues/29873). |
| 67 * Fix debugging in WebStorm, NULL returned for JS objects | 65 * Fix debugging in WebStorm, NULL returned for JS objects |
| 68 (https://github.com/dart-lang/sdk/issues/29854). | 66 (https://github.com/dart-lang/sdk/issues/29854). |
| 69 | 67 |
| 70 ## 1.24.1 - 14-06-2017 | 68 ## 1.24.1 - 14-06-2017 |
| (...skipping 2081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2152 they will keep the Dart process alive until they time out. This fixes the | 2150 they will keep the Dart process alive until they time out. This fixes the |
| 2153 handling of persistent connections. Previously, the client would shut down | 2151 handling of persistent connections. Previously, the client would shut down |
| 2154 immediately after a request. | 2152 immediately after a request. |
| 2155 | 2153 |
| 2156 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 2154 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 2157 default. The new `autoCompress` property can be set to `true` to re-enable | 2155 default. The new `autoCompress` property can be set to `true` to re-enable |
| 2158 compression. | 2156 compression. |
| 2159 | 2157 |
| 2160 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 2158 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 2161 which controls how it resolves `package:` URIs. | 2159 which controls how it resolves `package:` URIs. |
| OLD | NEW |