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

Side by Side Diff: CHANGELOG.md

Issue 1202853002: final changelog updates for 1.11 (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.12.0 1 ## 1.12.0
2 2
3 ### Core library changes 3 ### Core library changes
4 4
5 * `dart:html` 5 * `dart:html`
6 * Added `const NodeTreeSanitizer.trusted`. This can be used 6 * `NodeTreeSanitizer` added the `const trusted` field. It can be used
7 instead of defining a `NullTreeSanitizer` class when calling 7 instead of defining a `NullTreeSanitizer` class when calling
8 `setInnerHtml` or other methods that create DOM from text. It is 8 `setInnerHtml` or other methods that create DOM from text. It is
9 also more efficient, skipping the creation of a DocumentFragment. 9 also more efficient, skipping the creation of a `DocumentFragment`.
10 10
11 ## 1.11.0 11 ## 1.11.0
12 12
13 ### Core library changes 13 ### Core library changes
14 14
15 * `dart:core` 15 * `dart:core`
16 * `Iterable` added the `empty` constructor. 16 * `Iterable` added an `empty` constructor.
17 [dcf0286](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e6631 8d3bf19abf454b) 17 [dcf0286](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e6631 8d3bf19abf454b)
18 * `List` added the `unmodifiable` constructor. 18 * `List` added an `unmodifiable` constructor.
19 [r45334](https://code.google.com/p/dart/source/detail?r=45334) 19 [r45334](https://code.google.com/p/dart/source/detail?r=45334)
20 * `Map` added the `unmodifiable` constructor. 20 * `Map` added an `unmodifiable` constructor.
21 [r45733](https://code.google.com/p/dart/source/detail?r=45733) 21 [r45733](https://code.google.com/p/dart/source/detail?r=45733)
22 * `int` added a `modInverse` method.
23 [f6f338c](https://github.com/dart-lang/sdk/commit/f6f338ce67eb8801b350417baa cf6d3681b26002)
24 * `StackTrace` added a `fromString` constructor.
25 [68dd6f6](https://github.com/dart-lang/sdk/commit/68dd6f6338e63d0465041d662e 778369c02c2ce6)
26 * `Uri` added a `directory` constructor.
27 [d8dbb4a](https://github.com/dart-lang/sdk/commit/d8dbb4a60f5e8a7f874c2a4fbf 59eaf1a39f4776)
22 * List iterators may not throw `ConcurrentModificationError` as eagerly in 28 * List iterators may not throw `ConcurrentModificationError` as eagerly in
23 release mode. In checked mode, the modification check is still as eager 29 release mode. In checked mode, the modification check is still as eager
24 as possible. 30 as possible.
25 [r45198](https://code.google.com/p/dart/source/detail?r=45198) 31 [r45198](https://code.google.com/p/dart/source/detail?r=45198)
26 * `dart:io` 32 * `dart:io`
27 * `FileSystemEntity` added a `uri` property. 33 * `FileSystemEntity` added a `uri` property.
28 [8cf32dc](https://github.com/dart-lang/sdk/commit/8cf32dc1a1664b516e57f80452 4e46e55fae88b2) 34 [8cf32dc](https://github.com/dart-lang/sdk/commit/8cf32dc1a1664b516e57f80452 4e46e55fae88b2)
29 * `Platform` added a `static resolvedExecutable` property. 35 * `Platform` added a `static resolvedExecutable` property.
30 [c05c8c6](https://github.com/dart-lang/sdk/commit/c05c8c66069db91cc2fd48691d fc406c818d411d) 36 [c05c8c6](https://github.com/dart-lang/sdk/commit/c05c8c66069db91cc2fd48691d fc406c818d411d)
31 * `dart:html` 37 * `dart:html`
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 they will keep the Dart process alive until they time out. This fixes the 325 they will keep the Dart process alive until they time out. This fixes the
320 handling of persistent connections. Previously, the client would shut down 326 handling of persistent connections. Previously, the client would shut down
321 immediately after a request. 327 immediately after a request.
322 328
323 * **Breaking change:** `HttpServer` no longer compresses all traffic by 329 * **Breaking change:** `HttpServer` no longer compresses all traffic by
324 default. The new `autoCompress` property can be set to `true` to re-enable 330 default. The new `autoCompress` property can be set to `true` to re-enable
325 compression. 331 compression.
326 332
327 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 333 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
328 which controls how it resolves `package:` URIs. 334 which controls how it resolves `package:` URIs.
OLDNEW
« 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