All Versions
11
Latest Version
Avg Release Cycle
27 days
Latest Release
1261 days ago

Changelog History
Page 1

  • v0.28.0 Changes

    November 04, 2020
    • 🤡 Introduced the Matcher::Binary variant for matching binary content.

    Thanks to @torrefatto

  • v0.27.0 Changes

    July 25, 2020
    • 🤡 Added a Mock#matched() as a soft way of checking that a Mock, as opposed to the Mock#assert() method, which panics.

    Thanks @max-b

  • v0.26.0 Changes

    June 28, 2020
    • [Breaking] Increased the minimum supported Rust version to 1.36.0.
  • v0.25.3 Changes

    June 28, 2020
    • 🤡 Fixed and issue where spaces encoded as + wouldn't be interpreted properly by Matcher::UrlEncoded.

    Thanks to @cakekindel

  • v0.25.2 Changes

    May 30, 2020
    • 🤡 Improve error messages and the String representation of mocks, especially when it comes to their AllOf and AnyOf parts.

    Thanks to @max-b

  • v0.25.1 Changes

    April 08, 2020
    • 👀 When creating multiple mocks that match the same request, the last defined mock should be the one matched forever, once the all other mocks have reached their expected amount of hits. See #99 and 96f3e30
  • v0.25.0 Changes

    April 05, 2020
    • 👀 You can provide different mocks (and especially mock responses) for subsequent requests to the same endpoint. See #99 and b0966f8
    • 🤡 The 501 Mock Not Implemented response now comes with a content-length: 0 header, to prevent some clients from hanging.

    Thanks to @xneomac

  • v0.24.0 Changes

    March 15, 2020
    • 🤡 Added #[must_use] to Mock.create() calls.
    • 🤡 A warning was introduced to remind about calling Mock.create() whenever a mock is initialized without it.

    Thanks to @dbr

  • v0.23.3 Changes

    February 21, 2020
    • 🤡 Fix compatibility with the assert-json-diff library (version 1.0.3)
  • v0.23.2 Changes

    February 19, 2020
    • 🤡 Fix a problem regarding the assert-json-diff library.

    Thanks to @vldm