1 - Applied Chris Bilson's patch fixing CORE-15
\r
2 "WebLogger Throws When Logging Outside of an HttpContext"
\r
7 - Added IServiceProviderEx which extends IServiceProvider
\r
9 - Added Pair<T,S> class.
\r
11 - Applied Bill Pierce's patch fixing CORE-9
\r
12 "Allow CastleComponent Attribute to Specify Lifestyle in Constructor"
\r
14 - Added UseSingleInterfaceProxy to CompomentModel to control the proxying
\r
15 behavior while maintaining backward compatibility.
\r
16 Added the corresponding ComponentProxyBehaviorAttribute.
\r
18 - Made NullLogger and IExtnededLogger
\r
20 - Enabled a new format on ILogger interface, with 6 overloads for each method:
\r
22 Debug(string, Exception)
\r
23 Debug(string, params object[])
\r
24 DebugFormat(string, params object[])
\r
25 DebugFormat(Exception, string, params object[])
\r
26 DebugFormat(IFormatProvider, string, params object[])
\r
27 DebugFormat(IFormatProvider, Exception, string, params object[])
\r
29 The "FatalError" overloads where marked as [Obsolete], replaced by "Fatal" and "FatalFormat".
\r
34 - Included IProxyTargetAccessor
\r
36 - Removed IMethodInterceptor and IMethodInvocation, that have been replaced
\r
37 by IInterceptor and IInvocation
\r
39 - Added FindByPropertyInfo to PropertySetCollection
\r
41 - Made the DependencyModel.IsOptional property writable
\r
43 - Applied Curtis Schlak's patch fixing IOC-27
\r
44 "assembly resource format only works for resources where the assemblies name and default namespace are the same."
\r
48 "I chose to preserve backwards compatibility by implementing the code in the
\r
49 reverse order as suggested by the reporter. Given the following URI for a resource:
\r
51 assembly://my.cool.assembly/context/moo/file.xml
\r
53 It will initially look for an embedded resource with the manifest name of
\r
54 "my.cool.assembly.context.moo.file.xml" in the loaded assembly my.cool.assembly.dll.
\r
55 If it does not find it, then it looks for the embedded resource with the manifest name
\r
56 of "context.moo.file.xml".
\r
58 - IServiceEnabledComponent Introduced to be used across the project as
\r
59 a standard way to have access to common services, for example, logger factories
\r
61 - Added missing log factories
\r
63 - Refactor StreamLogger and DiagnosticLogger to be more consistent behavior-wise
\r
65 - Refactored WebLogger to extend LevelFilteredLogger (removed duplication)
\r
67 - Refactored LoggerLevel order
\r