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

Side by Side Diff: CHANGELOG.md

Issue 1235643004: Changelog: document dart:core Iterable can be extended as of Dart 1.11 (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 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 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 * `NodeTreeSanitizer` added the `const trusted` field. It 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
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was 47 * Pub will always load Dart SDK assets from the SDK whose `pub` executable was
48 run, even if a `DART_SDK` environment variable is set. 48 run, even if a `DART_SDK` environment variable is set.
49 49
50 ## 1.11.0 - 2015-06-25 50 ## 1.11.0 - 2015-06-25
51 51
52 ### Core library changes 52 ### Core library changes
53 53
54 * `dart:core` 54 * `dart:core`
55 * `Iterable` added an `empty` constructor. 55 * `Iterable` added an `empty` constructor.
56 [dcf0286](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e6631 8d3bf19abf454b) 56 [dcf0286](https://github.com/dart-lang/sdk/commit/dcf0286f5385187a68ce9e6631 8d3bf19abf454b)
57 * `Iterable` can now be extended directly. An alternative to extending
58 `IterableBase` from `dart:collection`.
57 * `List` added an `unmodifiable` constructor. 59 * `List` added an `unmodifiable` constructor.
58 [r45334](https://code.google.com/p/dart/source/detail?r=45334) 60 [r45334](https://code.google.com/p/dart/source/detail?r=45334)
59 * `Map` added an `unmodifiable` constructor. 61 * `Map` added an `unmodifiable` constructor.
60 [r45733](https://code.google.com/p/dart/source/detail?r=45733) 62 [r45733](https://code.google.com/p/dart/source/detail?r=45733)
61 * `int` added a `gcd` method. 63 * `int` added a `gcd` method.
62 [a192ef4](https://github.com/dart-lang/sdk/commit/a192ef4acb95fad1aad1887f59 eed071eb5e8201) 64 [a192ef4](https://github.com/dart-lang/sdk/commit/a192ef4acb95fad1aad1887f59 eed071eb5e8201)
63 * `int` added a `modInverse` method. 65 * `int` added a `modInverse` method.
64 [f6f338c](https://github.com/dart-lang/sdk/commit/f6f338ce67eb8801b350417baa cf6d3681b26002) 66 [f6f338c](https://github.com/dart-lang/sdk/commit/f6f338ce67eb8801b350417baa cf6d3681b26002)
65 * `StackTrace` added a `fromString` constructor. 67 * `StackTrace` added a `fromString` constructor.
66 [68dd6f6](https://github.com/dart-lang/sdk/commit/68dd6f6338e63d0465041d662e 778369c02c2ce6) 68 [68dd6f6](https://github.com/dart-lang/sdk/commit/68dd6f6338e63d0465041d662e 778369c02c2ce6)
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 they will keep the Dart process alive until they time out. This fixes the 383 they will keep the Dart process alive until they time out. This fixes the
382 handling of persistent connections. Previously, the client would shut down 384 handling of persistent connections. Previously, the client would shut down
383 immediately after a request. 385 immediately after a request.
384 386
385 * **Breaking change:** `HttpServer` no longer compresses all traffic by 387 * **Breaking change:** `HttpServer` no longer compresses all traffic by
386 default. The new `autoCompress` property can be set to `true` to re-enable 388 default. The new `autoCompress` property can be set to `true` to re-enable
387 compression. 389 compression.
388 390
389 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 391 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
390 which controls how it resolves `package:` URIs. 392 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