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