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

Side by Side Diff: CHANGELOG.md

Issue 2950413002: Added timeout parameter to RawSecureSocket and SecureSocket connect methods. Also updated CHANGELOG… (Closed)
Patch Set: 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 | sdk/lib/io/secure_socket.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.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.
11 11
12 #### Strong Mode 12 #### Strong Mode
13 13
14 ### Core library changes 14 ### Core library changes
15 15
16 * `dart:io` 16 * `dart:io`
17 * Unified backends for `SecureSocket`, `SecurityContext`, and 17 * Unified backends for `SecureSocket`, `SecurityContext`, and
18 `X509Certificate` to be consistent across all platforms. All 18 `X509Certificate` to be consistent across all platforms. All
19 `SecureSocket`, `SecurityContext`, and `X509Certificate` properties and 19 `SecureSocket`, `SecurityContext`, and `X509Certificate` properties and
20 methods are now supported on iOS and OSX. 20 methods are now supported on iOS and OSX.
21 * Deprecated `SecurityContext.alpnSupported` as ALPN is now supported on all 21 * Deprecated `SecurityContext.alpnSupported` as ALPN is now supported on all
22 platforms. 22 platforms.
23 * Added 'timeout' parameter to 'Socket.connect' and 'RawSocket.connect'. If a 23 * Added 'timeout' parameter to 'Socket.connect', 'RawSocket.connect',
24 connection attempt takes longer than the duration specified in 'timeout', a 24 'SecureSocket.connect' and 'RawSecureSocket.connect. If a connection attempt
25 'SocketException' will be thrown. Note: if the duration specified in 25 takes longer than the duration specified in 'timeout', a 'SocketException'
26 'timeout' is greater than the system level timeout duration, a timeout may 26 will be thrown. Note: if the duration specified in 'timeout' is greater than
27 occur sooner than specified in 'timeout'. 27 the system level timeout duration, a timeout may occur sooner than specified
28 in 'timeout'.
28 29
29 ### Dart VM 30 ### Dart VM
30 * Support for MIPS has been remvoed. 31 * Support for MIPS has been remvoed.
31 32
32 ### Tool Changes 33 ### Tool Changes
33 34
34 * Pub 35 * Pub
35 36
36 * `pub get` and `pub upgrade` properly produce an error message and exit code 37 * `pub get` and `pub upgrade` properly produce an error message and exit code
37 when no network is present. 38 when no network is present.
(...skipping 2063 matching lines...) Expand 10 before | Expand all | Expand 10 after
2101 they will keep the Dart process alive until they time out. This fixes the 2102 they will keep the Dart process alive until they time out. This fixes the
2102 handling of persistent connections. Previously, the client would shut down 2103 handling of persistent connections. Previously, the client would shut down
2103 immediately after a request. 2104 immediately after a request.
2104 2105
2105 * **Breaking change:** `HttpServer` no longer compresses all traffic by 2106 * **Breaking change:** `HttpServer` no longer compresses all traffic by
2106 default. The new `autoCompress` property can be set to `true` to re-enable 2107 default. The new `autoCompress` property can be set to `true` to re-enable
2107 compression. 2108 compression.
2108 2109
2109 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, 2110 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument,
2110 which controls how it resolves `package:` URIs. 2111 which controls how it resolves `package:` URIs.
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/io/secure_socket.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698