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

Unified Diff: CHANGELOG.md

Issue 1120653004: Changelog: More updates for 1.10 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 5 years, 8 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 | no next file » | 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 4ef99b3d892cd190a173026af208ce0dac44a778..d236bf7d4eb7c7bf6141aecb8df9ca46263e31f5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,7 +18,7 @@
### Core library changes
* `dart:convert`
- * Fix behavior of `HtmlEscape`. It no longer escapes
+ * **POTENTIALLY BREAKING** Fix behavior of `HtmlEscape`. It no longer escapes
no-break space (U+00A0) anywhere or forward slash (`/`, `U+002F`) in element
context. Slash is still escaped using `HtmlEscapeMode.UNKNOWN`.
[r45003](https://code.google.com/p/dart/source/detail?r=45003),
@@ -29,12 +29,28 @@
* `Uri.parse` added `start` and `end` positional arguments.
* `dart:html`
- * `CssClassSet` method arguments must now be 'tokens', i.e. non-empty
+ * **POTENTIALLY BREAKING** `CssClassSet` method arguments must now be 'tokens', i.e. non-empty
strings with no white-space characters. The implementation was incorrect for
class names containing spaces. The fix is to forbid spaces and provide a
faster implementation.
- [r44898](https://code.google.com/p/dart/source/detail?r=44898),
- [r45307](https://code.google.com/p/dart/source/detail?r=45307)
+ [Announcement](https://groups.google.com/a/dartlang.org/d/msg/announce/jmUI2XJHfC8/UZUCvJH3p2oJ)
+
+* `dart:io`
+
+ * `ProcessResult` now exposes a constructor.
+ * `import` and `Isolate.spawnUri` now supports the
+ [Data URI scheme](http://en.wikipedia.org/wiki/Data_URI_scheme) on the VM.
+
+## Tool Changes
+
+### pub
+
+ * Running `pub run foo` within a package now runs the `foo` executable defined
+ by the `foo` package. The previous behavior ran `bin/foo`. This makes it
+ easy to run binaries in dependencies, for instance `pub run test`.
+
+ * On Mac and Linux, signals sent to `pub run` and forwarded to the child
+ command.
## 1.9.3 – 2015-04-14
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698