OLD | NEW |
---|---|
1 ## 1.15.0 | 1 ## 1.15.0 |
2 | 2 |
3 ### Core library changes | 3 ### Core library changes |
4 * Added `Uri.queryParametersAll` to handle multiple query parameters with | 4 * Added `Uri.queryParametersAll` to handle multiple query parameters with |
5 the same name. | 5 the same name. |
6 | 6 |
7 * Added `SecurityContext.usePrivateKeyBytes`, | |
8 `SecurityContext.useCertificateChainBytes`, and | |
9 `SecurityContext.setTrustedCertificatesBytes`. | |
10 The non-`Bytes` methods now return a `Future`. | |
kevmoo
2016/02/04 19:14:53
Please group these under 'dart:io" – see previous
zra
2016/02/04 22:31:41
Done.
| |
11 `SecurityContext.setTrustedCertificatesBytes` now takes only one argument | |
12 for the PEM file name containing the new trusted certificates. | |
13 | |
7 ## 1.14.0 - 2016-01-28 | 14 ## 1.14.0 - 2016-01-28 |
8 | 15 |
9 ### Core library changes | 16 ### Core library changes |
10 * `dart:async` | 17 * `dart:async` |
11 * Added `Future.any` static method. | 18 * Added `Future.any` static method. |
12 * Added `Stream.fromFutures` constructor. | 19 * Added `Stream.fromFutures` constructor. |
13 | 20 |
14 * `dart:convert` | 21 * `dart:convert` |
15 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. | 22 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. |
16 | 23 |
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
760 they will keep the Dart process alive until they time out. This fixes the | 767 they will keep the Dart process alive until they time out. This fixes the |
761 handling of persistent connections. Previously, the client would shut down | 768 handling of persistent connections. Previously, the client would shut down |
762 immediately after a request. | 769 immediately after a request. |
763 | 770 |
764 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 771 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
765 default. The new `autoCompress` property can be set to `true` to re-enable | 772 default. The new `autoCompress` property can be set to `true` to re-enable |
766 compression. | 773 compression. |
767 | 774 |
768 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 775 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
769 which controls how it resolves `package:` URIs. | 776 which controls how it resolves `package:` URIs. |
OLD | NEW |