format and improve changelog

R=kathyw@google.com

Review URL: https://codereview.chromium.org//1112643008

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45453 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
kevmoo@google.com 2015-04-29 18:11:59 +00:00
parent 763fd171c9
commit 605fd81f2e

View file

@ -2,35 +2,41 @@
### Core library changes ### Core library changes
* Add `unmodifiable` constructor to `List` class - * `dart:core`
[r45334](https://code.google.com/p/dart/source/detail?r=45334), * Add `unmodifiable` constructor to `List` -
* Update experimental Isolate API: [r45334](https://code.google.com/p/dart/source/detail?r=45334)
- Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods * `dart:isolate` *Experimental*
* Make the `priority` parameter of `Isolate.ping` and `Isolate.kill` methods
a named parameter. a named parameter.
- Remove the `Isolate.AS_EVENT` priority. * Remove the `Isolate.AS_EVENT` priority.
- Add extra `response` parameter to `Isolate.ping` and * Add extra `response` parameter to `Isolate.ping` and
`Isolate.addOnExitListener`. `Isolate.addOnExitListener` -
[r45092](https://code.google.com/p/dart/source/detail?r=45092), [r45092](https://code.google.com/p/dart/source/detail?r=45092)
## 1.10.0 ## 1.10.0  2015-04-29
### Core library changes ### Core library changes
* Fix behavior of `HtmlEscape` in `dart:convert`. It no longer escapes * `dart:convert`
no-break space (U+00A0) anywhere or forward slash ('/', U+002F) in element * Fix behavior of `HtmlEscape`. It no longer escapes
context. Slash is still escaped in the "unknown" context. 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), [r45003](https://code.google.com/p/dart/source/detail?r=45003),
[r45153](https://code.google.com/p/dart/source/detail?r=45153), [r45153](https://code.google.com/p/dart/source/detail?r=45153),
[r45189](https://code.google.com/p/dart/source/detail?r=45189) [r45189](https://code.google.com/p/dart/source/detail?r=45189)
* dart:html: CssClassSet method arguments must now be 'tokens', i.e. non-empty * `dart:core`
* `Uri.parse` added `start` and `end` positional arguments.
* `dart:html`
* `CssClassSet` method arguments must now be 'tokens', i.e. non-empty
strings with no white-space characters. The implementation was incorrect for strings with no white-space characters. The implementation was incorrect for
class names containing spaces. The fix is to forbid spaces and provide a class names containing spaces. The fix is to forbid spaces and provide a
faster implementation. faster implementation.
[r44898](https://code.google.com/p/dart/source/detail?r=44898), [r44898](https://code.google.com/p/dart/source/detail?r=44898),
[r45307](https://code.google.com/p/dart/source/detail?r=45307) [r45307](https://code.google.com/p/dart/source/detail?r=45307)
## 1.9.3 (2015-04-14) ## 1.9.3 2015-04-14
This is a bug fix release which merges a number of commits from `bleeding_edge`. This is a bug fix release which merges a number of commits from `bleeding_edge`.
@ -55,7 +61,7 @@ This is a bug fix release which merges a number of commits from `bleeding_edge`.
Pub can fail to load transformers necessary for local development - Pub can fail to load transformers necessary for local development -
[r44876](https://code.google.com/p/dart/source/detail?r=44876) [r44876](https://code.google.com/p/dart/source/detail?r=44876)
## 1.9.1 (2015-03-25) ## 1.9.1  2015-03-25
### Language changes ### Language changes
@ -169,7 +175,7 @@ documentation on the [Dart API site](http://api.dartlang.org).
* Isolates spawned via `Isolate.spawn` now allow most objects, including * Isolates spawned via `Isolate.spawn` now allow most objects, including
top-level and static functions, to be sent between them. top-level and static functions, to be sent between them.
## 1.8.5 (2015-01-21) ## 1.8.5  2015-01-21
* Code generation for SIMD on ARM and ARM64 is fixed. * Code generation for SIMD on ARM and ARM64 is fixed.
@ -179,7 +185,7 @@ documentation on the [Dart API site](http://api.dartlang.org).
[issue 21795]: https://code.google.com/p/dart/issues/detail?id=21795 [issue 21795]: https://code.google.com/p/dart/issues/detail?id=21795
## 1.8.3 (2014-12-10) ## 1.8.3  2014-12-10
* Breakpoints can be set in the Editor using file suffixes ([issue 21280][]). * Breakpoints can be set in the Editor using file suffixes ([issue 21280][]).
@ -196,7 +202,7 @@ documentation on the [Dart API site](http://api.dartlang.org).
[issue 21280]: https://code.google.com/p/dart/issues/detail?id=21280 [issue 21280]: https://code.google.com/p/dart/issues/detail?id=21280
[issue 21698]: https://code.google.com/p/dart/issues/detail?id=21698 [issue 21698]: https://code.google.com/p/dart/issues/detail?id=21698
## 1.8.0 (2014-11-28) ## 1.8.0 2014-11-28
* `dart:collection`: `SplayTree` added the `toSet` function. * `dart:collection`: `SplayTree` added the `toSet` function.
@ -237,7 +243,7 @@ documentation on the [Dart API site](http://api.dartlang.org).
[alpn]: https://tools.ietf.org/html/rfc7301 [alpn]: https://tools.ietf.org/html/rfc7301
## 1.7.0 (2014-10-15) ## 1.7.0  2014-10-15
### Tool changes ### Tool changes