From 9432f65897fb1cd852e6851674c377aa45d18890 Mon Sep 17 00:00:00 2001 From: stakx Date: Sun, 1 Nov 2020 13:48:24 +0100 Subject: [PATCH] Update the changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 213992a9e..0fb32c319 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ The format is loosely based on [Keep a Changelog](http://keepachangelog.com/en/1 * New method overloads for `It.Is`, `It.IsIn`, and `It.IsNotIn` that compare values using a custom `IEqualityComparer` (@weitzhandler, #1064) * New properties `ReturnValue` and `Exception` on `IInvocation` to query recorded invocations return values or exceptions (@MaStr11, #921, #1077) +* Support for "nested" type matchers, i.e. type matchers that appear as part of a composite type (such as `It.IsAnyType[]` or `Func`). Argument match expressions like `It.IsAny>()` should now work as expected, whereas they previously didn't. In this particular example, you should no longer need a workaround like `(Func)It.IsAny()` as originally suggested in #918. (@stakx, #1092) #### Changed