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

Side by Side Diff: CHANGELOG.md

Issue 1307183002: Add access to the isolate package-root/package-map in Platform. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: replace packageRoot getter, remove C++ imp. Created 5 years, 3 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/bin/io_natives.cc » ('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 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy, 5 * `String.allMatches` (implementing `Pattern.allMatches`) is now lazy,
6 as all `allMatches` implementations are intended to be. 6 as all `allMatches` implementations are intended to be.
7 7
8 * `dart:io` 8 * `dart:io`
9 * `HttpClient` no longer sends URI fragments in the requeust. This is not 9 * `HttpClient` no longer sends URI fragments in the requeust. This is not
10 allowed by the HTTP protocol. 10 allowed by the HTTP protocol.
11 The `HttpServer` still gracefully receives fragments, but discards them 11 The `HttpServer` still gracefully receives fragments, but discards them
12 before delivering the request. 12 before delivering the request.
13 * `Platform.packageRoot` changed to return a `Uri` for the package root
14 of the current isolate, not a `String` representing the command line
15 parameter. Also added `Platform.packageMap` getter.
13 16
14 ## 1.12.0 17 ## 1.12.0
15 18
16 ### Core library changes 19 ### Core library changes
17 20
18 * `dart:async` 21 * `dart:async`
19 * `StreamController` added setters for the `onListen`, `onPause`, `onResume` 22 * `StreamController` added setters for the `onListen`, `onPause`, `onResume`
20 and `onCancel` callbacks. 23 and `onCancel` callbacks.
21 24
22 * `dart:convert` 25 * `dart:convert`
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 they will keep the Dart process alive until they time out. This fixes the 529 they will keep the Dart process alive until they time out. This fixes the
527 handling of persistent connections. Previously, the client would shut down 530 handling of persistent connections. Previously, the client would shut down
528 immediately after a request. 531 immediately after a request.
529 532
530 * **Breaking change:** `HttpServer` no longer compresses all traffic by 533 * **Breaking change:** `HttpServer` no longer compresses all traffic by
531 default. The new `autoCompress` property can be set to `true` to re-enable 534 default. The new `autoCompress` property can be set to `true` to re-enable
532 compression. 535 compression.
533 536
534 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 537 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
535 which controls how it resolves `package:` URIs. 538 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698