Releases: edgurgel/httpoison
Releases · edgurgel/httpoison
HTTPoison 0.7.1
- Update hackney requirement to
~> 1.3.0
HTTPoison 0.7.0
- Add missing docs. Thanks to @whatyouhide
- [Breaking change] Use list of tuples of strings instead of a dict for headers. Thanks to @tyrchen
HTTPoison 0.6.2
Add documentation for public functions on HTTPoison.Base. Thanks to @whatyouhide
HTTPoison 0.6.1
- Add support to proxy option. Thanks to @povilas
- Add support to params option. Thanks to @whatyouhide
HTTPoison 0.6.0
This version does not include any feature. It specifies a newer version to hackney: "~> 1.0" as it brought lots of bugfixes and more stability.
HTTPoison 0.5.0
- API breaking changes:
- HTTPoison.HTTPError was renamed to HTTPoison.Error;
- Requests will now return
{:ok, response}or{:error, error} - The old behaviour will be followed by new functions with bang, example:
HTTPoison.get! will follow the old behaviour of HTTPoison.get
Related discussion: #27
HTTPoison 0.4.3
- Update hackney to ~> 0.14.1
- Fix error raising (#26)
HTTPoison 0.4.2
- Ensure support to 1.0.0-rc1
HTTPoison 0.4.1
HTTPoison 0.4.0
- Turn
process_*functions to private functions so you don't need to expose them when overriding; - Add typespecs.