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

Side by Side Diff: CHANGELOG.md

Issue 1204883002: update CHANGELOG.md for gcd (Closed) Base URL: git@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 * `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
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 an `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 an `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 an `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. 22 * `int` added a `modInverse` method.
23 [f6f338c](https://github.com/dart-lang/sdk/commit/f6f338ce67eb8801b350417baa cf6d3681b26002) 23 [f6f338c](https://github.com/dart-lang/sdk/commit/f6f338ce67eb8801b350417baa cf6d3681b26002)
24 * `int` added a `gcd` method.
kevmoo 2015/06/23 21:40:35 Please move this before modInverse so we stay semi
regis 2015/06/23 21:44:38 Done.
25 [a192ef4](https://github.com/dart-lang/sdk/commit/a192ef4acb95fad1aad1887f59 eed071eb5e8201)
24 * `StackTrace` added a `fromString` constructor. 26 * `StackTrace` added a `fromString` constructor.
25 [68dd6f6](https://github.com/dart-lang/sdk/commit/68dd6f6338e63d0465041d662e 778369c02c2ce6) 27 [68dd6f6](https://github.com/dart-lang/sdk/commit/68dd6f6338e63d0465041d662e 778369c02c2ce6)
26 * `Uri` added a `directory` constructor. 28 * `Uri` added a `directory` constructor.
27 [d8dbb4a](https://github.com/dart-lang/sdk/commit/d8dbb4a60f5e8a7f874c2a4fbf 59eaf1a39f4776) 29 [d8dbb4a](https://github.com/dart-lang/sdk/commit/d8dbb4a60f5e8a7f874c2a4fbf 59eaf1a39f4776)
28 * List iterators may not throw `ConcurrentModificationError` as eagerly in 30 * List iterators may not throw `ConcurrentModificationError` as eagerly in
29 release mode. In checked mode, the modification check is still as eager 31 release mode. In checked mode, the modification check is still as eager
30 as possible. 32 as possible.
31 [r45198](https://code.google.com/p/dart/source/detail?r=45198) 33 [r45198](https://code.google.com/p/dart/source/detail?r=45198)
32 * `dart:io` 34 * `dart:io`
33 * `FileSystemEntity` added a `uri` property. 35 * `FileSystemEntity` added a `uri` property.
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 they will keep the Dart process alive until they time out. This fixes the 327 they will keep the Dart process alive until they time out. This fixes the
326 handling of persistent connections. Previously, the client would shut down 328 handling of persistent connections. Previously, the client would shut down
327 immediately after a request. 329 immediately after a request.
328 330
329 * **Breaking change:** `HttpServer` no longer compresses all traffic by 331 * **Breaking change:** `HttpServer` no longer compresses all traffic by
330 default. The new `autoCompress` property can be set to `true` to re-enable 332 default. The new `autoCompress` property can be set to `true` to re-enable
331 compression. 333 compression.
332 334
333 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 335 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
334 which controls how it resolves `package:` URIs. 336 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