Releases: scottoffen/fluenthttpclient
5.0.1
5.0.0-rc4
Release '5.0.0-rc4'
5.0.0
Release '5.0.0'
5.0.0-rc3
Release '5.0.0-rc3'
5.0.0-rc2
Release '5.0.0-rc2'
5.0.0-rc1
Release '5.0.0-rc1'
4.2.3
Fixes issue where an unnecessary question mark (?) was being added to the end of the url if there were no query parameters.
4.2.2
Update Default Version
The default Version on the HttpRequestMessage has been updated from 1.0 to 2.0.
Query Parameters
Updates how query parameters are added and stored in order to allow for multiple values for the same key. Previously, if a key was added twice, only the second value ended up in the query parameters.
Disable Chunked Transfer Encoding
When using the extension method WithJsonContent(), the Content-Length header gets set to -1. In most cases, this is not an issue. In most cases, this is the desired and correct behavior. Occasionally it is not. See this issue for more information.
In those rare cases where this causes issues with the server you are communicating with, this behavior can now be disabled using the new DisableChunkedTransferEncoding() extension method.
4.2.1
- Adds extensions for sending XML content