| OLD | NEW |
| 1 ## 1.25.0 | 1 ## 1.25.0 |
| 2 | 2 |
| 3 ### Language | 3 ### Language |
| 4 | 4 |
| 5 #### Strong Mode | 5 #### Strong Mode |
| 6 | 6 |
| 7 ### Core library changes | 7 ### Core library changes |
| 8 | 8 |
| 9 * `dart:io` |
| 10 * Unified backends for `SecureSocket`, `SecurityContext`, and |
| 11 `X509Certificate` to be consistent across all platforms. All |
| 12 `SecureSocket`, `SecurityContext`, and `X509Certificate` properties and |
| 13 methods are now supported on iOS and OSX. |
| 14 |
| 9 ### Dart VM | 15 ### Dart VM |
| 10 | 16 |
| 11 ### Tool Changes | 17 ### Tool Changes |
| 12 | 18 |
| 13 ## 1.24.0 | 19 ## 1.24.0 |
| 14 | 20 |
| 15 ### Language | 21 ### Language |
| 16 * During a dynamic type check, `void` is not required to be `null` anymore. | 22 * During a dynamic type check, `void` is not required to be `null` anymore. |
| 17 In practice, this makes overriding `void` functions with non-`void` functions | 23 In practice, this makes overriding `void` functions with non-`void` functions |
| 18 safer. | 24 safer. |
| (...skipping 1977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1996 they will keep the Dart process alive until they time out. This fixes the | 2002 they will keep the Dart process alive until they time out. This fixes the |
| 1997 handling of persistent connections. Previously, the client would shut down | 2003 handling of persistent connections. Previously, the client would shut down |
| 1998 immediately after a request. | 2004 immediately after a request. |
| 1999 | 2005 |
| 2000 * **Breaking change:** `HttpServer` no longer compresses all traffic by | 2006 * **Breaking change:** `HttpServer` no longer compresses all traffic by |
| 2001 default. The new `autoCompress` property can be set to `true` to re-enable | 2007 default. The new `autoCompress` property can be set to `true` to re-enable |
| 2002 compression. | 2008 compression. |
| 2003 | 2009 |
| 2004 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, | 2010 * `dart:isolate`: `Isolate.spawnUri` added the optional `packageRoot` argument, |
| 2005 which controls how it resolves `package:` URIs. | 2011 which controls how it resolves `package:` URIs. |
| OLD | NEW |