From e3de07e6729039f1706eb470d7094e6eb5f78a1b Mon Sep 17 00:00:00 2001 From: Dominique Schuppli Date: Wed, 3 Feb 2021 20:04:14 +0100 Subject: [PATCH] Update the changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94d0a7ab15..37f52d171d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Enhancements: - .NET Standard 2.0 and 2.1 support (@lg2de, #485) - Non-intercepted methods on a class proxy with target are now forwarded to the target (@stakx, #571) +- Significant performance improvements with proxy type generation for interface proxies without target. (Up until now, DynamicProxy generated a separate `IInvocation` implementation type for every single proxied method – it is now able to reuse a single predefined type in many cases, thereby reducing the total amount of dynamic type generation.) (@stakx, #573) Bugfixes: - Proxying certain `[Serializable]` classes produces proxy types that fail PEVerify test (@stakx, #367)