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

Side by Side Diff: CHANGELOG.md

Issue 2201943002: Bring in the latest pub. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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.19.0
2
3 ### Tool Changes
4
5 * Pub
6 * Added the ability for packages to declare a constraint on the [Flutter][]
7 SDK:
8
9 environment:
10 flutter: ^0.1.2
11 sdk: >=1.19.0 <2.0.0
12
13 A Flutter constraint will only be satisfiable when pub is running in the
14 context of the `flutter` executable, and when the Flutter SDK version
15 matches the constraint.
16
17 * Added `sdk` as a new package source that fetches packages from a hard-coded
18 SDK. Currently only the `flutter` SDK is supported:
19
20 dependencies:
21 flutter_driver:
22 sdk: flutter
23 version: ^0.0.1
24
25 A Flutter `sdk` dependency will only be satisfiable when pub is running in
26 the context of the `flutter` executable, and when the Flutter SDK contains a
27 package with the given name whose version matches the constraint.
28
29 * Fixed a bug where packages from a hosted HTTP URL were considered the same
30 as packages from an otherwise-identical HTTPS URL.
31
32 * Fixed timer formatting for timers that lasted longer than a minute.
33
34 * Eliminate some false negatives when determining whether global executables
35 are on the user's executable path.
36
37 [Flutter]: https://flutter.io/
38
1 ## 1.18.0 39 ## 1.18.0
2 40
3 ### Core library changes 41 ### Core library changes
4 42
5 * `dart:io` 43 * `dart:io`
6 * Adds file locking modes `FileLock.BLOCKING_SHARED` and 44 * Adds file locking modes `FileLock.BLOCKING_SHARED` and
7 `FileLock.BLOCKING_EXCLUSIVE`. 45 `FileLock.BLOCKING_EXCLUSIVE`.
8 46
9 ## 1.17.1 - 2016-06-10 47 ## 1.17.1 - 2016-06-10
10 48
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 they will keep the Dart process alive until they time out. This fixes the 1072 they will keep the Dart process alive until they time out. This fixes the
1035 handling of persistent connections. Previously, the client would shut down 1073 handling of persistent connections. Previously, the client would shut down
1036 immediately after a request. 1074 immediately after a request.
1037 1075
1038 * **Breaking change:** `HttpServer` no longer compresses all traffic by 1076 * **Breaking change:** `HttpServer` no longer compresses all traffic by
1039 default. The new `autoCompress` property can be set to `true` to re-enable 1077 default. The new `autoCompress` property can be set to `true` to re-enable
1040 compression. 1078 compression.
1041 1079
1042 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 1080 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
1043 which controls how it resolves `package:` URIs. 1081 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