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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8f44d60e4aec1a9238324dc2a8c0734cf25c422d..c192bd88760071c6ce017a2791e5a59048c17642 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,41 @@
+## 1.19.0
+
+### Tool Changes
+
+* Pub
+ * Added the ability for packages to declare a constraint on the [Flutter][]
+ SDK:
+
+ environment:
+ flutter: ^0.1.2
+ sdk: >=1.19.0 <2.0.0
+
+ A Flutter constraint will only be satisfiable when pub is running in the
+ context of the `flutter` executable, and when the Flutter SDK version
+ matches the constraint.
+
+ * Added `sdk` as a new package source that fetches packages from a hard-coded
+ SDK. Currently only the `flutter` SDK is supported:
+
+ dependencies:
+ flutter_driver:
+ sdk: flutter
+ version: ^0.0.1
+
+ A Flutter `sdk` dependency will only be satisfiable when pub is running in
+ the context of the `flutter` executable, and when the Flutter SDK contains a
+ package with the given name whose version matches the constraint.
+
+ * Fixed a bug where packages from a hosted HTTP URL were considered the same
+ as packages from an otherwise-identical HTTPS URL.
+
+ * Fixed timer formatting for timers that lasted longer than a minute.
+
+ * Eliminate some false negatives when determining whether global executables
+ are on the user's executable path.
+
+[Flutter]: https://flutter.io/
+
## 1.18.0
### Core library changes
« no previous file with comments | « no previous file | DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698