Skip to content

Releases: edgurgel/httpoison

HTTPoison 0.7.1

28 Jul 10:06

Choose a tag to compare

  • Update hackney requirement to ~> 1.3.0

HTTPoison 0.7.0

06 Jun 03:54

Choose a tag to compare

  • 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

17 Feb 09:23

Choose a tag to compare

Add documentation for public functions on HTTPoison.Base. Thanks to @whatyouhide

HTTPoison 0.6.1

11 Feb 08:45

Choose a tag to compare

  • Add support to proxy option. Thanks to @povilas
  • Add support to params option. Thanks to @whatyouhide

HTTPoison 0.6.0

26 Jan 08:50

Choose a tag to compare

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

14 Oct 08:33

Choose a tag to compare

  • 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

09 Oct 09:01

Choose a tag to compare

  • Update hackney to ~> 0.14.1
  • Fix error raising (#26)

HTTPoison 0.4.2

03 Sep 09:43

Choose a tag to compare

  • Ensure support to 1.0.0-rc1

HTTPoison 0.4.1

21 Aug 12:38

Choose a tag to compare

  • Do not fetch the body on 204, 304 responses. (Thanks to @d0rc)
  • Catch body fetching errors and raise proper HTTPError. (Thanks to @Sch1zo)
  • Use meck hex package on test environment.

HTTPoison 0.4.0

17 Aug 10:19

Choose a tag to compare

  • Turn process_* functions to private functions so you don't need to expose them when overriding;
  • Add typespecs.