From fe428b998e05f59d6cd4dc8e7de0877f7ea878b7 Mon Sep 17 00:00:00 2001 From: Dominique Schuppli Date: Sat, 30 Jan 2021 21:00:34 +0100 Subject: [PATCH] Update the changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a34e7bd401..dd48524fed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,13 @@ 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) Bugfixes: +- Not proxied methods on class proxy with target should forward to the target (DYNPROXY-183) (@jonorossi, #67) - Proxying certain `[Serializable]` classes produces proxy types that fail PEVerify test (@stakx, #367) - `private protected` methods are not intercepted (@CrispyDrone, #535) +- Virtual property is not proxied if `IProxyGenerationHook.ShouldInterceptMethod` returns false (@xumix, #536) - `System.UIntPtr` unsupported (@stakx, #546) - DynamicProxy generates two modules when proceeding from a class proxy's protected method to the target, causing an `InvalidOperationException` when saving the generated assembly to disk (@stakx, #569)