|
7 | 7 | :mod:`cpp-netlib` 0.11
|
8 | 8 | ----------------------
|
9 | 9 |
|
| 10 | +v0.11.2 |
| 11 | +~~~~~~~ |
| 12 | +* Support a source_port setting for connections made by the client per-request. |
| 13 | +* Allow using cpp-netlib without OpenSSL. |
| 14 | +* Fix build breakage for Visual Studio 2015. |
| 15 | +* Add more options for HTTP client use of SSL/TLS options/ciphers. |
| 16 | +* Made client_get_timeout_test less flaky. |
| 17 | +* Fixes to URI encoding issues with multibyte strings. |
| 18 | +* Make cpp-netlib not crash on unstable networks. |
| 19 | +* Allow parsing empty query parameters (`#499`_). |
| 20 | +* CMake build changes to simplify dependencies on cppnetlib-client-connections. |
| 21 | +* Handle EOF correctly (`#496`_). |
| 22 | +* Fix fileserver example to chunk data correctly. |
| 23 | +* Copy hostname to avoid dangling reference to a temporary request object. (`#482`_) |
| 24 | +* Catch exceptions in parse_headers to avoid propagating issues in parsing upwards. |
| 25 | +* Fix some GCC warnings on signed/unsigned comparison. |
| 26 | +* Support environment variable-based peer verification (via OpenSSL). |
| 27 | +* Support IPv6 connections. |
| 28 | +* Support certificate-based verification, and option to always verify hosts. |
| 29 | + |
| 30 | +.. _`#499`:https://github.com/cpp-netlib/cpp-netlib/issues/499 |
| 31 | +.. _`#496`:https://github.com/cpp-netlib/cpp-netlib/issues/496 |
| 32 | +.. _`#482`:https://github.com/cpp-netlib/cpp-netlib/issues/482 |
| 33 | + |
| 34 | + |
10 | 35 | v0.11.1
|
11 | 36 | ~~~~~~~
|
12 | 37 | * Add support for request timeouts.
|
|