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

Side by Side Diff: CHANGELOG.md

Issue 3007853003: Remove @proxy from the specification. Deprecate the annotation. (Closed)
Patch Set: Created 3 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 | docs/language/dartLangSpec.tex » ('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.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 4 * A string in a `part of` declaration may now be used to refer to the library
5 this file is part of. 5 this file is part of.
6 A library part can now declare its library either as: 6 A library part can now declare its library either as:
7 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`. 7 `part of name.of.library;` or as `part of "uriReferenceOfLibrary.dart";`.
8 This allows libraries with no library declarations (and therefore no name) 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 9 to have parts, and it allows tools to easily find the library of a part
10 file. 10 file.
(...skipping 12 matching lines...) Expand all
23 * Added 'timeout' parameter to 'Socket.connect', 'RawSocket.connect', 23 * Added 'timeout' parameter to 'Socket.connect', 'RawSocket.connect',
24 'SecureSocket.connect' and 'RawSecureSocket.connect. If a connection attempt 24 'SecureSocket.connect' and 'RawSecureSocket.connect. If a connection attempt
25 takes longer than the duration specified in 'timeout', a 'SocketException' 25 takes longer than the duration specified in 'timeout', a 'SocketException'
26 will be thrown. Note: if the duration specified in 'timeout' is greater than 26 will be thrown. Note: if the duration specified in 'timeout' is greater than
27 the system level timeout duration, a timeout may occur sooner than specified 27 the system level timeout duration, a timeout may occur sooner than specified
28 in 'timeout'. 28 in 'timeout'.
29 29
30 * `dart:core` 30 * `dart:core`
31 * The `Uri` class now correctly handles paths while running on Node.js on 31 * The `Uri` class now correctly handles paths while running on Node.js on
32 Windows. 32 Windows.
33 * Deprecated the `proxy` annotation.
33 34
34 * `dart:developer` 35 * `dart:developer`
35 * `Timeline.startSync` and `Timeline.timeSync` now accept an optional 36 * `Timeline.startSync` and `Timeline.timeSync` now accept an optional
36 parameter `flow` of type `Flow`. The `flow` parameter is used to generate 37 parameter `flow` of type `Flow`. The `flow` parameter is used to generate
37 flow timeline events that are enclosed by the slice described by 38 flow timeline events that are enclosed by the slice described by
38 `Timeline.{start,finish}Sync` and `Timeline.timeSync`. 39 `Timeline.{start,finish}Sync` and `Timeline.timeSync`.
39 40
40 ### Dart VM 41 ### Dart VM
41 * Support for MIPS has been removed. 42 * Support for MIPS has been removed.
42 43
(...skipping 2139 matching lines...) Expand 10 before | Expand all | Expand 10 after
2182 they will keep the Dart process alive until they time out. This fixes the 2183 they will keep the Dart process alive until they time out. This fixes the
2183 handling of persistent connections. Previously, the client would shut down 2184 handling of persistent connections. Previously, the client would shut down
2184 immediately after a request. 2185 immediately after a request.
2185 2186
2186 * **Breaking change:** `HttpServer` no longer compresses all traffic by 2187 * **Breaking change:** `HttpServer` no longer compresses all traffic by
2187 default. The new `autoCompress` property can be set to `true` to re-enable 2188 default. The new `autoCompress` property can be set to `true` to re-enable
2188 compression. 2189 compression.
2189 2190
2190 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 2191 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
2191 which controls how it resolves `package:` URIs. 2192 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | docs/language/dartLangSpec.tex » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698