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