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

Side by Side Diff: CHANGELOG.md

Issue 1273713003: Make String.allMatches lazy. (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 | runtime/lib/string_patch.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 1 ## 1.13.0
2 2
3 * `dart:core` 3 * `dart:core`
4 * `Uri` added `removeFragment` method. 4 * `Uri` added `removeFragment` method.
5 5 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy,
6 as all `allMatches` implementations are intended to be.
6 * `dart:io` 7 * `dart:io`
7 * `HttpClient` no longer sends URI fragments in the requeust. This is not 8 * `HttpClient` no longer sends URI fragments in the requeust. This is not
8 allowed by the HTTP protocol. 9 allowed by the HTTP protocol.
9 The `HttpServer` still gracefully receives fragments, but discards them 10 The `HttpServer` still gracefully receives fragments, but discards them
10 before delivering the request. 11 before delivering the request.
11 12
12 ## 1.12.0 13 ## 1.12.0
13 14
14 ### Core library changes 15 ### Core library changes
15 16
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 they will keep the Dart process alive until they time out. This fixes the 465 they will keep the Dart process alive until they time out. This fixes the
465 handling of persistent connections. Previously, the client would shut down 466 handling of persistent connections. Previously, the client would shut down
466 immediately after a request. 467 immediately after a request.
467 468
468 * **Breaking change:** `HttpServer` no longer compresses all traffic by 469 * **Breaking change:** `HttpServer` no longer compresses all traffic by
469 default. The new `autoCompress` property can be set to `true` to re-enable 470 default. The new `autoCompress` property can be set to `true` to re-enable
470 compression. 471 compression.
471 472
472 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 473 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
473 which controls how it resolves `package:` URIs. 474 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/lib/string_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698