All Versions
10
Latest Version
Avg Release Cycle
128 days
Latest Release
1458 days ago

Changelog History

  • v0.4.3 Changes

    April 29, 2020
    • โšก๏ธ Update OkHttp and MockWebServer version to 4.6.0
  • v0.4.2 Changes

    March 26, 2020
    • โšก๏ธ Update OkHttp and MockWebServer version to 4.4.1.

    NOTE: OkHttp dropped support for older android versions and since this library heavily relies on it, we had to upgrade aswell. Now the minSdk is 21 and java 8+

  • v0.4.1 Changes

    October 29, 2019
    • ๐Ÿ‘ Allow for delaying response headers in addition to response body (as per #109)
  • v0.4.0 Changes

    July 23, 2019
    • โฌ†๏ธ Upgraded OkHttp version to 4.0.1
    • ๐Ÿ‘Œ improved thread-safety (#103)
  • v0.3.3 Changes

    February 12, 2019
    • โšก๏ธ Updated OkHttp version to 3.13.1 (this should solve #93 #97)
    • โž• add pathMatchesRegex request matcher that will match against specified regex pattern
  • v0.3.2 Changes

    October 10, 2018
    • Add HTTPS support ๐ŸŽ‰ (reffer to"HTTPS" for more info)
  • v0.3.1 Changes

    February 07, 2018
    • ๐Ÿคก Made MockAnswer interface public to allow non-lambda usage
  • v0.3.0 Changes

    January 20, 2018
    • โšก๏ธ Update OkHttp's version to 3.9.1,
    • โž• Add new request matcher:hasHeaderNames,
    • โž• Add new request matcher:pathEndsWithIgnoringQueryParams (credits to @kkocel),
    • โž• Add new request matcher:hasQueryParameterNames (credits to @kkocel),
    • ๐Ÿคก Add convenient method thenAnswer to allow build responses based on the request's data dynamically. See more in "MockAnswer",
    • โœ‚ Remove robolectric samples.
    • โฌ†๏ธ Upgrade to Android Studio 3.1
  • v0.2.2 Changes

    June 24, 2017
    • โšก๏ธ Update OkHttp's MockWebServer version to 3.8.0
    • ๐Ÿ‘Œ Improve logging for situations where NOT MOCKED error appears
    • โž• Add pure JVM-based RESTMockFileParser for mocking in JVM-based unit test (thanks to @alapshin )
  • v0.2.1 Changes

    February 28, 2017
    • โž• Add takeLast, takeFirst, take and takeAllMatching methods to RequestVerifier, which return RecordedRequest to be able to verify requests manualy.