Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: CHANGELOG.md

Issue 2968213002: update pub to get --build-delay arg and remove require.js loading timeouts (Closed)
Patch Set: fix typo Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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.
52 54
53 * Fixed module config invalidation logic so modules are properly 55 * Added the `--build-delay` argument to `pub serve` which sets the amount of
54 recalculated when package layout changes. 56 time (in ms) to wait between file watcher events before scheduling a build.
55 * Fixed exception when handling require.js errors that aren't script load 57 Defaults to 50.
56 errors. 58
57 * Fixed an issue where requesting the bootstrap.js file before the dart.js 59 * Removed require.js module loading timeout for dartdevc, which resolves an
58 file would result in a 404. 60 issue where the initial load of an app might give a timeout error.
59 * Fixed a Safari issue during bootstrapping (note that Safari is still not
60 officially supported but does work for trivial examples).
61 61
62 ## 1.24.2 - 22-06-2017 62 ## 1.24.2 - 22-06-2017
63 63
64 * Fixes for debugging in Dartium. 64 * Fixes for debugging in Dartium.
65 * Fix DevConsole crash with JS 65 * Fix DevConsole crash with JS
66 (https://github.com/dart-lang/sdk/issues/29873). 66 (https://github.com/dart-lang/sdk/issues/29873).
67 * Fix debugging in WebStorm, NULL returned for JS objects 67 * Fix debugging in WebStorm, NULL returned for JS objects
68 (https://github.com/dart-lang/sdk/issues/29854). 68 (https://github.com/dart-lang/sdk/issues/29854).
69 69
70 ## 1.24.1 - 14-06-2017 70 ## 1.24.1 - 14-06-2017
(...skipping 2081 matching lines...) Expand 10 before | Expand all | Expand 10 after
2152 they will keep the Dart process alive until they time out. This fixes the 2152 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 2153 handling of persistent connections. Previously, the client would shut down
2154 immediately after a request. 2154 immediately after a request.
2155 2155
2156 * **Breaking change:** `HttpServer` no longer compresses all traffic by 2156 * **Breaking change:** `HttpServer` no longer compresses all traffic by
2157 default. The new `autoCompress` property can be set to `true` to re-enable 2157 default. The new `autoCompress` property can be set to `true` to re-enable
2158 compression. 2158 compression.
2159 2159
2160 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 2160 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
2161 which controls how it resolves `package:` URIs. 2161 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698