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

Side by Side Diff: CHANGELOG.md

Issue 2902163002: Add a changelog entry for the new part-of syntax. (Closed)
Patch Set: Rebase. Created 3 years, 6 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1.25.0 1 ## 1.25.0
2 2
3 ### Language 3 ### Language
4 * A string in a `part of` declaration may now be used to refer to the library
5 this file is part of.
6 A library part can now declare its library either as:
7 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`.
8 This allows libraries with no library declarations (and therefore no name)
9 to have parts, and it allows tools to easily find the library of a part
10 file.
4 11
5 #### Strong Mode 12 #### Strong Mode
6 13
7 ### Core library changes 14 ### Core library changes
8 15
9 * `dart:io` 16 * `dart:io`
10 * Unified backends for `SecureSocket`, `SecurityContext`, and 17 * Unified backends for `SecureSocket`, `SecurityContext`, and
11 `X509Certificate` to be consistent across all platforms. All 18 `X509Certificate` to be consistent across all platforms. All
12 `SecureSocket`, `SecurityContext`, and `X509Certificate` properties and 19 `SecureSocket`, `SecurityContext`, and `X509Certificate` properties and
13 methods are now supported on iOS and OSX. 20 methods are now supported on iOS and OSX.
(...skipping 2074 matching lines...) Expand 10 before | Expand all | Expand 10 after
2088 they will keep the Dart process alive until they time out. This fixes the 2095 they will keep the Dart process alive until they time out. This fixes the
2089 handling of persistent connections. Previously, the client would shut down 2096 handling of persistent connections. Previously, the client would shut down
2090 immediately after a request. 2097 immediately after a request.
2091 2098
2092 * **Breaking change:** `HttpServer` no longer compresses all traffic by 2099 * **Breaking change:** `HttpServer` no longer compresses all traffic by
2093 default. The new `autoCompress` property can be set to `true` to re-enable 2100 default. The new `autoCompress` property can be set to `true` to re-enable
2094 compression. 2101 compression.
2095 2102
2096 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 2103 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
2097 which controls how it resolves `package:` URIs. 2104 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698