OLD | NEW |
1 ## 1.14.0 | 1 ## 1.14.0 |
2 | 2 |
3 ### Core library changes | 3 ### Core library changes |
4 * `dart:math` | 4 * `dart:math` |
5 * `Random` added a `secure` constructor returning a cryptographically secure | 5 * `Random` added a `secure` constructor returning a cryptographically secure |
6 random generator which reads from the entropy source provided by the | 6 random generator which reads from the entropy source provided by the |
7 embedder for every generated random value. | 7 embedder for every generated random value. |
8 | 8 |
9 ## 1.13.0 | 9 ## 1.13.0 |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 * `dart:core` | 26 * `dart:core` |
27 * `Uri` added `removeFragment` method. | 27 * `Uri` added `removeFragment` method. |
28 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, | 28 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, |
29 as all `allMatches` implementations are intended to be. | 29 as all `allMatches` implementations are intended to be. |
30 * `Resource` is deprecated, and will be removed in a future release. | 30 * `Resource` is deprecated, and will be removed in a future release. |
31 | 31 |
32 * `dart:developer` | 32 * `dart:developer` |
33 * Added `Timeline` class for interacting with Observatory's timeline feature. | 33 * Added `Timeline` class for interacting with Observatory's timeline feature. |
34 * Added `ServiceExtensionHandler`, `ServiceExtensionResponse`, and `registerEx
tension` which enable developers to provide their own VM service protocol extens
ions. | 34 * Added `ServiceExtensionHandler`, `ServiceExtensionResponse`, and `registerEx
tension` which enable developers to provide their own VM service protocol extens
ions. |
35 | 35 |
36 * `dart:io` | 36 * `dart:io` |
37 * **Breaking:** Secure networking has changed, replacing the NSS library | 37 * **Breaking:** Secure networking has changed, replacing the NSS library |
38 with the BoringSSL library. `SecureSocket`, `SecureServerSocket`, | 38 with the BoringSSL library. `SecureSocket`, `SecureServerSocket`, |
39 `RawSecureSocket`,`RawSecureServerSocket`, `HttpClient`, and `HttpServer` | 39 `RawSecureSocket`,`RawSecureServerSocket`, `HttpClient`, and `HttpServer` |
40 now all use a `SecurityContext` object which contains the certificates | 40 now all use a `SecurityContext` object which contains the certificates |
41 and keys used for secure TLS (SSL) networking. | 41 and keys used for secure TLS (SSL) networking. |
42 | 42 |
43 This is a breaking change for server applications and for some client | 43 This is a breaking change for server applications and for some client |
44 applications. Certificates and keys are loaded into the `SecurityContext` | 44 applications. Certificates and keys are loaded into the `SecurityContext` |
45 from PEM files, instead of from an NSS certificate database. Information | 45 from PEM files, instead of from an NSS certificate database. Information |
(...skipping 10 matching lines...) Expand all Loading... |
56 * The deprecated `ServerSocketReference` and `RawServerSocketReference` | 56 * The deprecated `ServerSocketReference` and `RawServerSocketReference` |
57 classes have been removed. | 57 classes have been removed. |
58 * The corresponding `reference` properties on `ServerSocket` and | 58 * The corresponding `reference` properties on `ServerSocket` and |
59 `RawServerSocket` have been removed. | 59 `RawServerSocket` have been removed. |
60 | 60 |
61 * `dart:isolate` | 61 * `dart:isolate` |
62 * `spawnUri` added an `environment` named argument. | 62 * `spawnUri` added an `environment` named argument. |
63 | 63 |
64 ### Tool changes | 64 ### Tool changes |
65 | 65 |
66 * `docgen` and 'dartdocgen' no longer ship in the sdk. The `docgen` sources have | 66 * `dart2js` and Dartium now support improved Javascript Interoperability via the |
| 67 [js package](https://pub.dartlang.org/packages/js). |
| 68 |
| 69 * `docgen` and `dartdocgen` no longer ship in the SDK. The `docgen` sources have |
67 been removed from the repository. | 70 been removed from the repository. |
68 | 71 |
69 * This is the last release to ship the VM's "legacy debug protocol". | 72 * This is the last release to ship the VM's "legacy debug protocol". |
70 We intend to remove the legacy debug protocol in Dart VM 1.14. | 73 We intend to remove the legacy debug protocol in Dart VM 1.14. |
71 | 74 |
72 * The VM's Service Protocol has been updated to version 3.0 to take care | 75 * The VM's Service Protocol has been updated to version 3.0 to take care |
73 of a number of issues uncovered by the first few non-observatory | 76 of a number of issues uncovered by the first few non-observatory |
74 clients. This is a potentially breaking change for clients. | 77 clients. This is a potentially breaking change for clients. |
75 | 78 |
76 ## 1.12.2 - 2015-10-21 | 79 ## 1.12.2 - 2015-10-21 |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 they will keep the Dart process alive until they time out. This fixes the | 625 they will keep the Dart process alive until they time out. This fixes the |
623 handling of persistent connections. Previously, the client would shut down | 626 handling of persistent connections. Previously, the client would shut down |
624 immediately after a request. | 627 immediately after a request. |
625 | 628 |
626 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 629 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
627 default. The new `autoCompress` property can be set to `true` to re-enable | 630 default. The new `autoCompress` property can be set to `true` to re-enable |
628 compression. | 631 compression. |
629 | 632 |
630 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 633 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
631 which controls how it resolves `package:` URIs. | 634 which controls how it resolves `package:` URIs. |
OLD | NEW |