Skip to content

Releases: parroty/exvcr

v0.5.2

09 Nov 13:50
Compare
Choose a tag to compare

Enhancements

  • Make the return value from use_cassette block available (#17).

Changes

  • Exclude :custom mode from applying match_requests_on: [:request_body] by default.
    • Make it only applies to :stub mode, as it breaks existing custom cassettes.
  • Avoid throwing Argument Error when option contains tuple (#30).

v0.5.1

02 Oct 14:04
Compare
Choose a tag to compare

Enhancements

  • Support matching on request body (#22, #29).
    • match_requests_on: [:request_body]

v0.5.0

04 Aug 14:19
Compare
Choose a tag to compare

Changes

  • Update HTTPotion and HTTPoison dependencies (#27).
  • Put :optional option to HTTPoison dependency.

v0.4.1

01 Aug 01:27
Compare
Choose a tag to compare

Enhancements

  • Support for POST requests with form-encoded data in the hackney adapter (#25).
  • Support for filter_sensitive_data for request url (#26).

v0.4.0

21 Jul 13:54
Compare
Choose a tag to compare

Enhancements

  • The use_cassette with custom: true or :stub option can now have either string or regexp format (#13).
    • This item involves json format change. In order to use regexp matching, please wrap the string with "/" prefix and "/" suffix (ex. "/regexpstring/")