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

Side by Side Diff: CHANGELOG.md

Issue 1076013006: Improve return type of markUnmodifiableList to JSArray instead of List. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix bad change. 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/js_lib/js_array.dart » ('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.11.0 1 ## 1.11.0
2 2
3 ### Core library changes 3 ### Core library changes
4 4
5 * Add `unmodifiable` constructor to `List` class -
6 [r45334](https://code.google.com/p/dart/source/detail?r=45334),
5 * Update experimental Isolate API: 7 * Update experimental Isolate API:
6 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods 8 - Make priorty parameters of `Isolate.ping` and `Isolate.kill` methods
7 a named parameter. 9 a named parameter.
8 - Remove the `Isolate.AS_EVENT` priority. 10 - Remove the `Isolate.AS_EVENT` priority.
9 - Add extra `response` parameter to `Isolate.ping` and 11 - Add extra `response` parameter to `Isolate.ping` and
10 `Isolate.addOnExitListener`. 12 `Isolate.addOnExitListener`.
11 [r45092](https://code.google.com/p/dart/source/detail?r=45092), 13 [r45092](https://code.google.com/p/dart/source/detail?r=45092),
12 14
13 ## 1.10.0 15 ## 1.10.0
14 16
15 ### Core library changes 17 ### Core library changes
16 18
17 * Fix behavior of `HtmlEscape` in `dart:convert`. No longer escape 19 * Fix behavior of `HtmlEscape` in `dart:convert`. It no longer escapes
18 no-break space (U+00A0) anywhere or forward slash ('/', U+002F) in element 20 no-break space (U+00A0) anywhere or forward slash ('/', U+002F) in element
19 context. Slash is still escaped in the "unknown" context. 21 context. Slash is still escaped in the "unknown" context.
20 [r45003](https://code.google.com/p/dart/source/detail?r=45003), 22 [r45003](https://code.google.com/p/dart/source/detail?r=45003),
21 [r45153](https://code.google.com/p/dart/source/detail?r=45153), 23 [r45153](https://code.google.com/p/dart/source/detail?r=45153),
22 [r45189](https://code.google.com/p/dart/source/detail?r=45189) 24 [r45189](https://code.google.com/p/dart/source/detail?r=45189)
23 25
24 * dart:html: CssClassSet method arguments must now be 'tokens', i.e. non-empty 26 * dart:html: CssClassSet method arguments must now be 'tokens', i.e. non-empty
25 strings with no white-space characters. The implementation was incorrect for 27 strings with no white-space characters. The implementation was incorrect for
26 class names containing spaces. The fix is to forbid spaces and provide a 28 class names containing spaces. The fix is to forbid spaces and provide a
27 faster implementation. 29 faster implementation.
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 they will keep the Dart process alive until they time out. This fixes the 262 they will keep the Dart process alive until they time out. This fixes the
261 handling of persistent connections. Previously, the client would shut down 263 handling of persistent connections. Previously, the client would shut down
262 immediately after a request. 264 immediately after a request.
263 265
264 * **Breaking change:** `HttpServer` no longer compresses all traffic by 266 * **Breaking change:** `HttpServer` no longer compresses all traffic by
265 default. The new `autoCompress` property can be set to `true` to re-enable 267 default. The new `autoCompress` property can be set to `true` to re-enable
266 compression. 268 compression.
267 269
268 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 270 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
269 which controls how it resolves `package:` URIs. 271 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/js_lib/js_array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698