main
 1================================================================================================
 2change - Removed WebLogger and WebLoggerFactory
 3
 4impact - low
 5fixability - medium
 6revision - 
 7
 8description - To minimize management overhead the classes were removed so that only single 
 9	Client Profile version of Castle.Core can be distributed.
10
11fix - You can use NLog or Log4Net web logger integration, or reuse implementation of existing
12	web logger and use it as a custom logger.
13
14================================================================================================
15change - Removed obsolete overload of ProxyGenerator.CreateClassProxy
16
17impact - low
18fixability - trivial
19revision - 
20
21description - Deprecated overload of ProxyGenerator.CreateClassProxy was removed to keep the
22	method consistent with other methods and to remove confusion
23
24fix - whenever removed overload was used, use one of the other overloads.
25
26================================================================================================
27change - IProxyGenerationHook.NonVirtualMemberNotification method was renamed
28
29impact - high
30fixability - easy
31revision - 
32
33description - to accommodate class proxies with target method NonVirtualMemberNotification on
34	IProxyGenerationHook type was renamed to more accurate NonProxyableMemberNotification
35	since for class proxies with target not just methods but also fields and other member that
36	break the abstraction will be passed to this method.
37
38fix - whenever NonVirtualMemberNotification is used/implemented change the method name to
39	NonProxyableMemberNotification. Implementors should also accommodate possibility that not
40	only MethodInfos will be passed as method's second parameter.
41	
42================================================================================================
43change - DynamicProxy will now allow to intercept members of System.Object
44
45impact - very low
46fixability - easy
47revision - 
48
49description - to allow scenarios like mocking of System.Object members, DynamicProxy will not
50	disallow proxying of these methods anymore. AllMethodsHook (default IProxyGenerationHook)
51	will still filter them out though.
52
53fix - whenever custom IProxyGenerationHook is used, user should account for System.Object's
54	members being now passed to ShouldInterceptMethod and NonVirtualMemberNotification methods
55	and if neccessary update the code to handle them appropriately.