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

Side by Side Diff: CHANGELOG.md

Issue 1520943002: Support the same parameter key more than once in Uri query parameters. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Address comments. Created 4 years, 11 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 | sdk/lib/core/uri.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.14.0 1 ## 1.14.0
2 2
3 ### Core library changes 3 ### Core library changes
4 * `dart:async` 4 * `dart:async`
5 * Added `Future.any` static method. 5 * Added `Future.any` static method.
6 * Added `Stream.fromFutures` constructor. 6 * Added `Stream.fromFutures` constructor.
7 7
8 * `dart:convert` 8 * `dart:convert`
9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters. 9 * `Base64Decoder.convert` now takes optional `start` and `end` parameters.
10 10
11 * `dart:core` 11 * `dart:core`
12 * Added `current` getter to `StackTrace` class. 12 * Added `current` getter to `StackTrace` class.
13 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the 13 * Added `Uri.data` getter for `data:` URIs, and `UriData` class for the
14 return type. 14 return type.
15 * Addad `Uri.queryParametersAll` to handle multiple query parameters with
Bill Hesse 2016/01/18 09:22:23 This should go in a 1.15.0 section, since the chan
16 the same name.
15 * Added `growable` parameter to `List.filled` constructor. 17 * Added `growable` parameter to `List.filled` constructor.
16 * Added microsecond support to `DateTime`: `DateTime.microsecond`, 18 * Added microsecond support to `DateTime`: `DateTime.microsecond`,
17 `DateTime.microsecondsSinceEpoch`, and 19 `DateTime.microsecondsSinceEpoch`, and
18 `new DateTime.fromMicrosecondsSinceEpoch`. 20 `new DateTime.fromMicrosecondsSinceEpoch`.
19 21
20 * `dart:math` 22 * `dart:math`
21 * `Random` added a `secure` constructor returning a cryptographically secure 23 * `Random` added a `secure` constructor returning a cryptographically secure
22 random generator which reads from the entropy source provided by the 24 random generator which reads from the entropy source provided by the
23 embedder for every generated random value. 25 embedder for every generated random value.
24 26
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 they will keep the Dart process alive until they time out. This fixes the 737 they will keep the Dart process alive until they time out. This fixes the
736 handling of persistent connections. Previously, the client would shut down 738 handling of persistent connections. Previously, the client would shut down
737 immediately after a request. 739 immediately after a request.
738 740
739 * **Breaking change:** `HttpServer` no longer compresses all traffic by 741 * **Breaking change:** `HttpServer` no longer compresses all traffic by
740 default. The new `autoCompress` property can be set to `true` to re-enable 742 default. The new `autoCompress` property can be set to `true` to re-enable
741 compression. 743 compression.
742 744
743 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 745 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
744 which controls how it resolves `package:` URIs. 746 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/core/uri.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698