Branch: refs/heads/2.5.x
Home:   https://github.com/castleproject/Castle.Windsor

Commit: 84819fcde3334833217a9e01dbfed06199f1b5cb
    
https://github.com/castleproject/Castle.Windsor/commit/84819fcde3334833217a9e01dbfed06199f1b5cb
Author: Roelof Blom <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M buildscripts/Build.proj
  M buildscripts/Castle.Common.Targets

Log Message:
-----------
Include ReleaseNotes folder again when packaging.
Removed unused stuff from build.


Commit: cf961d748ea2c31a3d70ed7d7c0f74338b4a09fc
    
https://github.com/castleproject/Castle.Windsor/commit/cf961d748ea2c31a3d70ed7d7c0f74338b4a09fc
Author: Krzysztof Kozmic <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M src/Castle.Windsor.Tests/Lifecycle/DisposeTestCase.cs
  M src/Castle.Windsor/MicroKernel/Releasers/AllComponentsReleasePolicy.cs

Log Message:
-----------
- added test NOT reproducing issue reported in google group thread Dispose of 
container does not call Dispose of singleton components.


Commit: 6ca4f1b91eca3fffc36224843f38a2e88b48ecfa
    
https://github.com/castleproject/Castle.Windsor/commit/6ca4f1b91eca3fffc36224843f38a2e88b48ecfa
Author: Krzysztof Kozmic <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M Changes.txt
  M src/Castle.Windsor.Tests/Castle.Windsor.Tests.csproj
  A src/Castle.Windsor.Tests/Components/DisposableGeneric.cs
  A src/Castle.Windsor.Tests/Components/DisposableGenericA.cs
  M src/Castle.Windsor.Tests/Lifecycle/DisposeTestCase.cs
  M src/Castle.Windsor/MicroKernel/Handlers/DefaultGenericHandler.cs

Log Message:
-----------
- fixed IOC-250 - Dispose not being called on open generic registrations


Commit: ea2724544abfe608439182631a668bd0338a356c
    
https://github.com/castleproject/Castle.Windsor/commit/ea2724544abfe608439182631a668bd0338a356c
Author: Krzysztof Kozmic <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M src/Castle.Windsor/MicroKernel/Context/DependencyTrackingScope.cs
  M src/Castle.Windsor/MicroKernel/DefaultKernel.cs
  M src/Castle.Windsor/MicroKernel/DefaultKernel_Events.cs

Log Message:
-----------
- changed IKernelEvents implementation to field like events They are 
implemented without locking in C# 4 compiler and hence give us better 
performance. And the trick with dictionary was not really needed anyway - we 
only have 9 events now, and usually just single instance of kernel per app.


Commit: 44c493008db6fe107127df0b15e40917874d8b24
    
https://github.com/castleproject/Castle.Windsor/commit/44c493008db6fe107127df0b15e40917874d8b24
Author: Krzysztof Kozmic <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M src/Castle.Windsor/Core/DependencyModelCollection.cs

Log Message:
-----------
- replaced internal collection in DependencyModelCollection from HashSet to 
List which has better performance


Commit: fc98d789944206518a9943f55f7a97bf0835d535
    
https://github.com/castleproject/Castle.Windsor/commit/fc98d789944206518a9943f55f7a97bf0835d535
Author: Krzysztof Kozmic <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M Changes.txt
  M 
src/Castle.Windsor/Facilities/TypedFactory/Internal/TypedFactoryInterceptor.cs

Log Message:
-----------
- fixing bug reported on my blog: 
http://kozmic.pl/2010/11/15/castle-windsorcore-2-5-2/comment-page-1/#comment-511

Conflicts:

        
src/Castle.Windsor/Facilities/TypedFactory/Internal/TypedFactoryInterceptor.cs


Commit: f20b02f26cca7fe242b39005d2a067aa1d13ed17
    
https://github.com/castleproject/Castle.Windsor/commit/f20b02f26cca7fe242b39005d2a067aa1d13ed17
Author: Krzysztof Kozmic <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M src/Castle.Windsor.Tests/Config/ConfigurationTestCase.cs
  M src/Castle.Windsor.Tests/MicroKernelTestCase.cs
  M src/Castle.Windsor.Tests/Registration/ComponentRegistrationTestCase.cs
  M src/Castle.Windsor.Tests/UnsatisfiedDependenciesTestCase.cs
  M src/Castle.Windsor/Facilities/EventWiring/EventWiringFacility.cs
  M src/Castle.Windsor/Facilities/FactorySupport/FactoryActivator.cs
  M src/Castle.Windsor/Facilities/Remoting/RemotingRegistry.cs
  M src/Castle.Windsor/Facilities/TypedFactory/Internal/FactoryInterceptor.cs
  M src/Castle.Windsor/Facilities/TypedFactory/TypedFactoryComponent.cs
  M src/Castle.Windsor/MicroKernel/IKernel_Resolve.cs
  M src/Castle.Windsor/Windsor/IWindsorContainer.cs
  M src/Castle.Windsor/Windsor/WindsorContainer.cs

Log Message:
-----------
- obsoleted untyped Resolve overloads


Commit: a364759369f1ab2ddf8170a9e44fc5ee1b726841
    
https://github.com/castleproject/Castle.Windsor/commit/a364759369f1ab2ddf8170a9e44fc5ee1b726841
Author: Krzysztof Kozmic <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M src/Castle.Windsor.Tests/Castle.Windsor.Tests.csproj
  M 
src/Castle.Windsor.Tests/Facilities/TypedFactory/Factories/IGenericFactory.cs
  A 
src/Castle.Windsor.Tests/Facilities/TypedFactory/Factories/IGenericFactoryClosed.cs
  A 
src/Castle.Windsor.Tests/Facilities/TypedFactory/Factories/IGenericFactoryClosedDoubly.cs
  A 
src/Castle.Windsor.Tests/Facilities/TypedFactory/Factories/IGenericFactoryDouble.cs
  A 
src/Castle.Windsor.Tests/Facilities/TypedFactory/Factories/IGenericFactoryWithArg.cs
  A src/Castle.Windsor.Tests/Facilities/TypedFactory/Factories/IObjectFactory.cs
  M 
src/Castle.Windsor.Tests/Facilities/TypedFactory/TypedFactoryFacilityTake2TestCase.cs
  A src/Castle.Windsor.Tests/Proxy/ProxyAllHook.cs
  R src/Castle.Windsor.Tests/ProxyAllHook.cs

Log Message:
-----------
- added tests for generic typed factories (for IOC-260)


Commit: 360dc0802fbd6dc4452c0f486e9fbeea6d349f1a
    
https://github.com/castleproject/Castle.Windsor/commit/360dc0802fbd6dc4452c0f486e9fbeea6d349f1a
Author: Krzysztof Kozmic <[email protected]>
Date:   2010-12-29 (Wed, 29 Dec 2010)

Changed paths:
  M src/Castle.Windsor.Tests/Castle.Windsor.Tests.csproj
  A 
src/Castle.Windsor.Tests/Facilities/TypedFactory/Components/DummyComponent.cs
  A 
src/Castle.Windsor.Tests/Facilities/TypedFactory/Components/IDummyComponent.generic.cs
  A 
src/Castle.Windsor.Tests/Facilities/TypedFactory/Factories/IGenericFactoryWithGenericMethod.cs
  M 
src/Castle.Windsor.Tests/Facilities/TypedFactory/TypedFactoryFacilityTake2TestCase.cs

Log Message:
-----------
- one more test for generic typed factories


-- 
You received this message because you are subscribed to the Google Groups 
"Castle Project Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/castle-project-commits?hl=en.

Reply via email to