More working tests.
[castle.git] / InversionOfControl / Changes.txt
blobe493e0e61cfef279c0febdbac58fe6a14f1b7c52
1 RC 4\r
2 ====\r
3 \r
4 - Restructured the registration fluent interface to be a little more readable,\r
5   better support component registrations and prevent errors resulting from \r
6   forgetting to call ComponentRegistration.Register\r
7 \r
8 - Fixed Facilities-97\r
9   "EventWiring Facility fails to create some components"\r
10   \r
11 - Added support for non-generic usage of fluent-interface.  Needed for dynamic registrations scenarios (Binsor)\r
12   Automatically register the component between consecutive AddComponentEx (Saves a few strokes).\r
14 - Initial version of MicroKernel/Windsor fluent interface IOC-99\r
16 - Applied patch from Jacob Lewallen improving the locking performance in the DefaultNamingSubsystem under high load.\r
18 - Applied Philippe Tremblay's patch fixing IOC-94 \r
19   "Copy LifeStyle from generic interface"\r
21 - Added support for copying interceptors defined on the geneirc interface handler.\r
23 - Fixed IOC-80\r
24   "StartableFacility erroneously tries to start a component before\r
25   RegisterCustomDependency can be called"\r
27 - Added ComponentModelConverter to utilize System.ComponentModel TypeConverters\r
28   Very useful for converting things like Fonts and Colors\r
30 - Updated DefaultComplexConverter to support interfaces and derived types\r
32 - Fixed IOC-96\r
33   "FactorySupport fails to create components if the factory instance is a proxy"\r
35 - Fixed IOC-93\r
36   "GenericListConverter does not handle service overrides properly" \r
38 - Fixed IOC-91\r
39   "ContextBoundObject's context is not bound when object is created by MicroKernel"\r
41 - Fixed build from IContainerAccessor change\r
43 - Applied Ron Grabowski's patch fixing IOC-89\r
44   "Make DefaultKernel implement IServiceProvider"\r
46 - Check for required Properties before determining the Handlers initial state\r
48 - Fixed IoC-87\r
49   "DefaultComplextConverter does not properly handle nested components"\r
51 - Applied Lee Henson's patch fixing IOC-86\r
52   "Additional generic AddComponent overloads"\r
54 - Applied Ido Samuelson patch fixing IOC-85\r
55   "IKernel to support generics to add/resolve components."\r
57 - Refactored proxy options support. Now you can use the attribute 'marshalByRefProxy' \r
58   on the external configuration, or the ComponentProxyBehaviorAttribute\r
60 - Fixed IOC-79\r
61   "Kernel.GetHandlers(Type) does not consider generic handlers when satisfying the type"\r
63 - Updated StartableFacilityTestCase to correctly demonstrate the facility and\r
64   added a unit test to demonstrate IOC-80\r
65  \r
66 - Applied Alex Henderson's patch that makes the ComponentModel available\r
67   to the ILifestyleManager\r
69 - Applied Adam Mills's patch fixing IOC-74\r
70   "BinaryComponentName VisitNode null check"\r
72 - Fixed IOC-67\r
73   "RemoveComponent needs to unwire handlers and remove them"\r
75 - Fixed IOC-59\r
76   "Child component unable to correctly resolve parent service added after the component"\r
78 - Fixed IOC-47\r
79   "Components created by FactoryActivator have their dependencies checked"\r
81 - Applied Marcus Widerberg's patch fixing FACILITIES-84\r
82   "FactorySupport - Allow parameters to factory method to be set at resolvetime"\r
84 - Applied Marcus Widerberg's patch fixing FACILITIES-82\r
85   "Programmatic configuration for FactorySupport"\r
87 - Reverted by Henry -> Apply patch from Sam Camp that fixes problems with Remoting Facility Sample and RecoverableComponent. \r
89 - Updated TypedFactoryFacility to not require a target instance\r
90   when proxying.\r
92 - Added Windsor proxy support to create proxies without targets.\r
94 - Removed relationship between ProxyOptions and ProxyGeneration options\r
95   and moved ProxyOptions into the MicroKernel.  ProxyGeneration options\r
96   are created from the ProxyOptions and will probably need to be updated\r
97   as facilities demand more proxy generation customizations.\r
99 - Added ProxyOptions to allow facilities to easily add proxy interfaces\r
100   without having to create custom proxy factories.  The ProxyOptions\r
101   are obtained via the ProxyUtil.\r
103 - Fixed IOC-65\r
104   "DictionaryConverter should use the alternate overload of the \r
105    PerformConversion method in order to support dictionaries that contain \r
106    custom types"\r
108 - Moved ProxyComponentInspector from Castle.MicroKernel to here and added\r
109   support to supply ProxyGenerationOptions on a ComponentModel basis.  This\r
110   provides the needed ability to provide proxy options in facilities.\r
112 - Fixed IOC-69 - DefaultDependencyResolver issue with Service Overrides.\r
114 - Added ComponentProxyBehaviorAttribute and ComponentProxyInspector \r
115   to control the creation of component proxies.\r
117 - Added eval support to configuration. Currently it only supports \r
118   BaseDirectory as a content to evaluate\r
120   <?eval $BaseDirectory ?>\r
122 - Added IEnvironmentInfo in an attempt to solve complex \r
123   configuration/environment issues.\r
125 - Fixing IOC-63 - source order of constructors should not matter\r
127 - Fixed IOC-62\r
128   "Interceptors don't work properly on generic components"\r
130 - Applied Norbert Wagner's patch fixing IOC-55\r
131   "Generic Type Converters: Set default entry types to generic arguments of property type"\r
133 - Applied Jeff Brown's patch fixing IOC-54\r
134   "Empty component parameter values cause runtime exception during component resolution."\r
136 - Applied patch by Bill Pierce that\r
138 -- Introduces the WebUserControlComponentActivator\r
140 -- Introduces the KeySearchNamingSubSystem\r
142 -- Allows you to associate a custom component activator using\r
143     1. componentActivatorType on component node\r
144     2. ComponentActivatorAttribute\r
146 -- Allows you to create and configure child containers \r
147    through the configuration, using\r
149   <configuration>\r
150     <containers>\r
151         <container name="child1">\r
152           <configuration>\r
153                 <facilities>\r
154                                         ...\r
155                 </facilities>\r
156           \r
157                 <components>\r
158                                         ...\r
159                 </components>\r
160                 \r
161             </configuration>\r
162         </container>\r
163     </containers>\r
164   </configuration>\r
166 - Applied AndyD's patch fixing IOC-52\r
167   "Remote access to generic components"\r
169 - Fixed IOC-45\r
170   "Proxying a component that has an interface that is extended from another interface throws an exception"\r
172 - Applied patch by Ernst Naezer fixing IOC-37\r
173   "Resolving with arguments in Windsor"\r
175 - Fixed IOC-43 \r
176   "Creation of an Attribute in the Kernel that allows one property to be ignored by the dependency builder"\r
177   \r
178   Introduced DoNotWireAttribute that marks a property and prevents it\r
179   from being considered by the container\r
181 - Changed Windsor to use DynamicProxy 2\r
183 - Applied patch by Adam Mills fixing IOC-42\r
184   "ResolveServices", new method added to IKernel\r
186 - Applied patch by Adam Mills fixing IOC-41\r
187   "Bug Fix BinaryTreeComponentName - Assumed Lesser nodes went to left"\r
189 - Applied patch by Adam Mills fixing IOC-40\r
190   "Provided an Implementation for BinaryTreeComponentName.Remove"\r
192 - Applied patch by Adam Mills fixing IOC-39\r
193   "Fix for Null Reference when accessing empty BinaryTreeComponentName"\r
195 - Fixed IOC-35 \r
196   "Add bootstrap section to configuration file"\r
198 - Fixed issue where KeyAlreadyAdded exception would be throw for \r
199   components accepting two parameters of the same type, without overrides\r
201 - Fixed IOC-36 \r
202   "Transient components with multliple constructors throw \r
203    unresolved dependency exceptions."\r
205   Removed best candidate reference, as the kernel is dynamic it should\r
206   not cache best constructors as components can be added or removed\r
207   at any time\r
208   \r
209   Removed Points from candidates, as in a multithreaded scenario\r
210   this would lead to failures\r
211   \r
213 - Fixed IOC-34 \r
214   "Cannot use types having their own base type as constructor argument"\r
216   See revision r2787\r
218 - IOC-32, Support generic collections. \r
219   Supported collections are: ICollection<T>, IList<T>, List<T>, IDictionary<K,V>, Dictionary<K,V>, IEnumerable<T> \r
221 RC 3\r
222 ====\r
223  \r
224 - Applied patch by William C. Pierce <wcpierce@gmail.com> adding PerWebRequestAttribute\r
226 - Added setter to ReleasePolicy property\r
228 - Applied Curtis Schlak's patch fixing IOC-30\r
229   "Add overload to Windsor AddComponent to specify the Lifestyle"\r
231 - Refactored AbstractHandler to use IDependencyResolver\r
233 - Dependencies can be resolved now in three levels:\r
235   * CreationContext (which now implements ISubDependencyResolver)\r
236   * IHandler (which now implements ISubDependencyResolver)\r
237   * IKernel which is the normal flow\r
239 - Implemented IoC-29 using a different approach\r
241 - Renamed IKernel.AddComponentWithProperties to AddComponentExtendedProperties.\r
242   The old method name misled the programmer about its purpose.\r
244 - Added a PerWebRequestLifestyleManager which creates at most one instance of\r
245   an object per web request.  To use it you must add the following http module\r
247   <httpModules>\r
248       ...\r
249           <add name="PerWebRequest" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleManager , Castle.MicroKernel,Version=0.0.1.7, Culture=neutral, PublicKeyToken=407dd0808d44fbdc"/>\r
251   <httpModules>\r
253   The strong name could be omitted if not in the GAC\r
255 - Added checks to handle cycles in dependencies graphs and avoid deadly Stack Overflow Exceptions.\r
257 - Fixed IOC-24: "Allow user to provide an attribute which will customize how to inspect properties (PropertiesDependenciesModelInspector)"\r
258   Now users can add an 'inspectionBehavior' attribute to the component node that defines\r
259   the inspection strategy. Possible values are\r
260   \r
261   - None: No properties inspection should happen\r
262   - All: All properties will be inspected and collected (on the class and on the superclasses). \r
263          This is the default behavior\r
264   - DeclaredOnly: Only properties specified on type are checked (superclasses will be ignored) \r
266 - Added overload to ITypeConvertor that accept the current node configuration as well as the type in CanHandleType()\r
268 - Change: Better error message when there's an exception \r
269   setting up properties\r
271 - Fixed IOC-25: Overrides on the configuration should be considered a non-optional dependency\r
273   This fix changes a little the MicroKernel behavior. Now if you specify an service override\r
274   through external configuration, it will be considered a _non-optional_ dependency\r
276 - Uri usage replaced by CustomUri which, differently than MS' Uri class, has the same\r
277   behavior on net-1.1, net-2.0 and mono\r
279 - EventWiring Facility: now when a publisher is requested, the subscribers\r
280   are automatically started. \r
281   \r
282   The side effects are: \r
283   \r
284   - when a subscriber is requested it won't be wired automatically. \r
285   - There no much sense in having a subscriber with a lifestyle other than singleton\r
286   \r
287   I'm still evaluating this idea. Sometimes wiring only when the subscriber is requested\r
288   might make sense, but supporting both approaches is kinda hard.\r
289   \r
291 - Applied patch by Alex Henderson <webmaster@bittercoder.com> adding\r
292     IWindsorContainer.RemoveChildContainer(IWindsorContainer childContainer)\r
293     and IKernel.RemoveChildKernel(IKernel kernel)\r
295 - Applied fix by Ahmed. Now defines can be used on properties nodes like\r
297   <properties>\r
298    <?if DEBUG?>\r
299     <item>x</item>\r
300    <?end?>\r
301   </properties>\r
303 - Now with DictionaryConverter you can specify the keyType and valueType on each entry (kudos to Ahmed)\r
305 - xmlinterpreter will throw an exception if a property is not defined but referenced\r
306 using #{propertyName} syntax.(Patch from Ahmed)\r
308 - XmlProcessor refactored from XmlInterpreter (kudos to Ahmed)\r
309   Now PI are also supported (don't forget to document this on the wiki)\r
311 - Support for nested nodes on the properties. (kudos to Ahmed)\r
312   Example:\r
314   <configuration>\r
315     <properties>\r
316        <MyComponentParams>\r
317          <user>Joe</user>\r
318          <pwd>Doe</pwd>\r
319        </MyComponentParams>\r
320      </properties>\r
321      <components id=”MyComponent”>\r
322        <parameters>#{ MyComponentParams }</parameters>\r
323      </components>\r
324   </configuration>\r
325   \r
326   Will result in \r
328      <components id=”MyComponent”>\r
329        <parameters>\r
330          <user>Joe</user>\r
331          <pwd>Doe</pwd>\r
332        </parameters>\r
333      </components>\r
335 - Type converter for kernel components. This allows a usage like this:\r
337   <component id="mycomp">\r
338   \r
339     <parameters>\r
340       <servicelist>\r
341         <list type="IMyService, MyAssembly">\r
342           <item>${keytocomponent1}</item>\r
343           <item>${keytocomponent2}</item>\r
344         </list>\r
345       </servicelist>\r
346     </parameters>\r
348 - Removed support for MethodMeta on ComponentModel. The design decision here \r
349   is to make the facilities interested on it to extend MethodMetaInspector\r
350   reading from a specific node.\r
352 RC 2\r
353 ====\r
355 - AsyncInitializationContainer introduced. Special container flavor that installs the\r
356   facilities and components using a background thread.\r
358 - Support for evaluation of expressions within the xml configuration (kudos to Ahmed)\r
359   The following "statements" are supported:\r
360   \r
361         <define flag="DEBUG" />\r
362         <undef flag="DEBUG"/>\r
363         \r
364         <if defined="DEBUG">\r
365                 component/facility nodes\r
366         </if>\r
367         \r
368         <choose>\r
369                 <when defined="DEBUG">\r
370                         <component id="debug"/>\r
371                 </when>\r
372                 <when defined="Qa">\r
373                         <component id="qa"/>\r
374                 </when>\r
375                 <when defined="Prod">\r
376                         <component id="prod"/>\r
377                 </when>\r
378                 <otherwise>\r
379                         <component id="default"/>\r
380                 </otherwise>\r
381         </choose>\r
383 - Startable facility: support to specify the attribute startable=true on the configuration\r
385 - Better error messages: now the components waiting for dependencies will recursively \r
386   report what they are waiting for.\r
388 - Support for custom lifestyle through configuration (kudos to Bawer Dagdeviren):\r
390   <component id="my.component"\r
391                    type="MyLib.MyComponent, MyLib"\r
392                    lifestyle="custom"\r
393                    customLifestyleType="MyLib.MyCustomLifestyle, MyLib" />\r
395 - Added Type converter for enums\r
397 - Support to associate configuration nodes to methods. Usage:\r
399         <component>\r
400                 <methods>\r
401                         <save />\r
402                         <save signature="System.String, mscorlib" />\r
403                         <save signature="System.String, mscorlib;System.Int32, mscorlib" />\r
404                 </methods>\r
405         </component>\r
407   Which is equivalent to\r
409         <component>\r
410                 <methods>\r
411                         <method name="save" />\r
412                         <method name="save" signature="System.String, mscorlib" />\r
413                         <method name="save" signature="System.String, mscorlib;System.Int32, mscorlib" />\r
414                 </methods>\r
415         </component> \r
417 - IResource introduced (FileResource, AssemblyResource, ConfigResource and UncResource)\r
418   which are accessible through Uris:\r
420   - FileResource:  \r
421     file://pathtofile \r
422     (For example: file://c:\mydir\file.txt)\r
424   - AssemblyResource:  \r
425     assembly://AssemblyName/ExtendingNamespace/filename \r
426     (For example: assembly://Castle.Windsor.Tests/Configuration2/include1.xml)\r
428   - ConfigResource:  \r
429     config://sectioname \r
430     (For example: config://castle will fetch the \r
431     <configuration><castle> entry in the configuration)\r
433   - UncResource:  \r
434     \\server\file \r
435     (For example: \\mysharedplace\myconfig.xml)\r
437 - IResource, IResourceFactory and IResourceSubSystem introduced\r
439 - Ability to use <properties> in configuration files. Usage\r
441         <properties>    \r
442                 <prop1>prop1 value</prop1>\r
443                 <prop2>prop2 value</prop2>\r
444         </properties>\r
446         <facilities>\r
447         \r
448                 <facility id="testidengine" >\r
449                         <item>#{prop1}</item>\r
450                 </facility>\r
452                 <facility id="testidengine2" >\r
453                         <item value="#{prop2}"/>\r
454                 </facility>\r
455         \r
456         </facilities>\r
459 - Ability to use <include> in configuration files. Usage\r
461   Main file:\r
463         <configuration>\r
465                 <include uri="file://include1.xml"/>\r
467         </configuration>\r
469   include1.xml:\r
471         <configuration>\r
473                 <components>\r
475                         <component id="testidcomponent1">\r
476                         </component>\r
478                         <component id="testidcomponent2">\r
479                         </component>\r
481                 </components>\r
483         </configuration>\r
486 Beta 3\r
487 ======\r
489 - Bug in dependency resolution (when chained) fixed\r
490 - Better message description on exceptions related to unresolved dependencies.\r
491 - Fixed bug in AddComponentWithProperties\r
493 Beta 2  - 10/apr/2005\r
494 ======\r
496 - Bug fixes\r
498 - Configuration object model separated into interpreters and sources\r
500 - AbstractFacility added\r
503 Beta 1  - 21/jan/2005\r
504 ======\r
506 - Changed: from #{} to ${} - way of referencing to another component\r
507   on the configuration.\r
509 - Added: support for dictionaries, lists and arrays on the configuration file.\r
511   <component>\r
512     <parameters>\r
513       <properties>\r
514         <dictionary>\r
515           <item key="mykey">value</item>\r
516         </dictionary>\r
517       </properties>\r
518     </parameters>\r
519   </component>\r
521 - Added: Component Graph (used by the Remove method and to dispose the components)\r
523 - Fixed: Remove method\r
525 - Fixed: Windsor: Proxy for components with (service != impl)\r