All Versions
107
Latest Version
Avg Release Cycle
40 days
Latest Release
774 days ago

Changelog History
Page 6

  • v4.7.0 Changes

    February 22, 2017

    Minor change only (correcting Moq version after semver violation) This version is the successor of 4.6.62-alpha.

  • v4.6.62-alpha Changes

    February 21, 2017

    ๐Ÿ”€ This version is the predecessor of 4.7.0 and essentially a cleaned up merge of both 4.5.30 and 4.6.39-alpha.


    Note: The release notes for some Moq versions 4.6.*-alpha are still missing. They need to be reconstructed from the commit history and the GitHub issue archive. If you would like to help make this changelog more complete, any pull requests towards that goal are appreciated!


  • v4.5.30 Changes

    January 09, 2017
    ๐Ÿ›  Fixed
    • ๐Ÿ›  Fix issue in ExpressionKey that caused identical setups to no longer be considered the same (@MatKubicki, #313)
  • v4.5.29 Changes

    December 10, 2016
    ๐Ÿ›  Fixed
    • ๐Ÿ‘‰ Make the recently added setup.ReturnsAsync(Func<TResult> result) evaluate its argument lazily, like setup.Returns would (@SaroTasciyan, #309)
  • v4.5.28 Changes

    November 11, 2016
    โž• Added
    • ๐Ÿ†• New method setup.ReturnsAsync(Func<TResult> result) (@joeenzminger, @tlycken, #297)
  • v4.5.23 Changes

    October 11, 2016
    ๐Ÿ›  Fixed
    • ๐Ÿ‘Œ Improves comparison of call arguments in ExpressionKey so that setups for the same method but with differing arguments don't override each other (@MatKubicki, #291)
  • v4.5.22 Changes

    September 20, 2016
    ๐Ÿ›  Fixed
    • ๐Ÿคก Properly raise events when mocked type implements multiple interfaces (@bradreimer, #288)
  • v4.5.21 Changes

    August 12, 2016
    ๐Ÿ›  Fixed
    • ๐Ÿ›  Fix mock.Reset() which so far forgot to also clear all existing calls in the interceptor (@anilkamath87, #277)
  • v4.5.20 Changes

    August 12, 2016
    ๐Ÿ›  Fixed
    • ๐Ÿคก Ensure that mocking of System.Object methods always works, even in strict mode (again) (@kolomanschaft, #280)
  • v4.5.19 Changes

    August 10, 2016
    ๐Ÿ›  Fixed
    • ๐Ÿคก Make SetupAllProperties work with DefaultValue.Mock in the presence of object graph loops (i.e. when a type contains a property having the same type) (@vladonemo, #245)
    • ๐Ÿคก Prevent invalid implementations of ISerializable from being mocked (as DynamicProxy cannot handle these) via the new SerializableTypesValueProvider decorator (@vladonemo, #245)