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

Side by Side Diff: CHANGELOG.md

Issue 1281973004: Make HttpClient not send fragments as part of request. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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.13.0
2
3 * `dart:core`
4 * `Uri` added `removeFragment` method.
5
6 * `dart:io`
7 * `HttpClient` no longer sends URI fragments in the requeust. This is not
8 allowed by the HTTP protocol.
9 The `HttpServer` still gracefully receives fragments, but discards them
10 before delivering the request.
11
1 ## 1.12.0 12 ## 1.12.0
2 13
3 ### Core library changes 14 ### Core library changes
4 15
5 * `dart:async` 16 * `dart:async`
6 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` 17 * `StreamController` added setters for the `onListen`, `onPause`, `onResume`
7 and `onCancel` callbacks. 18 and `onCancel` callbacks.
8 19
9 * `dart:convert` 20 * `dart:convert`
10 * `LineSplitter` added a `split` static method returning an `Iterable`. 21 * `LineSplitter` added a `split` static method returning an `Iterable`.
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 they will keep the Dart process alive until they time out. This fixes the 464 they will keep the Dart process alive until they time out. This fixes the
454 handling of persistent connections. Previously, the client would shut down 465 handling of persistent connections. Previously, the client would shut down
455 immediately after a request. 466 immediately after a request.
456 467
457 * **Breaking change:** `HttpServer` no longer compresses all traffic by 468 * **Breaking change:** `HttpServer` no longer compresses all traffic by
458 default. The new `autoCompress` property can be set to `true` to re-enable 469 default. The new `autoCompress` property can be set to `true` to re-enable
459 compression. 470 compression.
460 471
461 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 472 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
462 which controls how it resolves `package:` URIs. 473 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