| OLD | NEW |
| 1 ## 2.0.1 |
| 2 |
| 3 * Fix most strong mode errors and warnings. |
| 4 |
| 1 ## 2.0.0 | 5 ## 2.0.0 |
| 2 | 6 |
| 3 * **Breaking:** Change the signature of `HttpMultiServer.loopbackSecure()` to | 7 * **Breaking:** Change the signature of `HttpMultiServer.loopbackSecure()` to |
| 4 match the new Dart 1.13 `HttpServer.bindSecure()` signature. This removes the | 8 match the new Dart 1.13 `HttpServer.bindSecure()` signature. This removes the |
| 5 `certificateName` named parameter and adds the required `context` parameter | 9 `certificateName` named parameter and adds the required `context` parameter |
| 6 and the named `v6Only` and `shared` parameters. | 10 and the named `v6Only` and `shared` parameters. |
| 7 | 11 |
| 8 * Added `v6Only` and `shared` parameters to `HttpMultiServer.loopback()` to | 12 * Added `v6Only` and `shared` parameters to `HttpMultiServer.loopback()` to |
| 9 match `HttpServer.bind()`. | 13 match `HttpServer.bind()`. |
| 10 | 14 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 41 |
| 38 * Remove the workaround for [issue 19815][]. | 42 * Remove the workaround for [issue 19815][]. |
| 39 | 43 |
| 40 ## 1.0.1 | 44 ## 1.0.1 |
| 41 | 45 |
| 42 * Ignore errors from one of the servers if others are still bound. In | 46 * Ignore errors from one of the servers if others are still bound. In |
| 43 particular, this works around [issue 19815][] on some Windows machines where | 47 particular, this works around [issue 19815][] on some Windows machines where |
| 44 IPv6 failure isn't discovered until we try to connect to the socket. | 48 IPv6 failure isn't discovered until we try to connect to the socket. |
| 45 | 49 |
| 46 [issue 19815]: http://code.google.com/p/dart/issues/detail?id=19815 | 50 [issue 19815]: http://code.google.com/p/dart/issues/detail?id=19815 |
| OLD | NEW |