From: <fab...@us...> - 2010-08-02 18:37:59
|
Revision: 5096 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5096&view=rev Author: fabiomaulo Date: 2010-08-02 18:37:53 +0000 (Mon, 02 Aug 2010) Log Message: ----------- Fixed test problem and actualized releasenotes to documents the breaking-change Modified Paths: -------------- trunk/nhibernate/releasenotes.txt trunk/nhibernate/src/NHibernate.Test/App.config Modified: trunk/nhibernate/releasenotes.txt =================================================================== --- trunk/nhibernate/releasenotes.txt 2010-08-02 17:56:21 UTC (rev 5095) +++ trunk/nhibernate/releasenotes.txt 2010-08-02 18:37:53 UTC (rev 5096) @@ -3,6 +3,8 @@ ** Known BREAKING CHANGES from NH2.1.1.GA to NH3.0.0.Alpha1 ##### Run time ##### * (NH-2199) - null values in maps/dictionaries are no longer silenty ignored/deleted + * (NH-2263) - removed the reference to System.Data.OracleClient, now you have to configure the assemblyBinding to resolve the partial name + (example available in App.conf of out NHibernate.Test project) Build 3.0.0.Alpha1 (rev5056) ============================= Modified: trunk/nhibernate/src/NHibernate.Test/App.config =================================================================== --- trunk/nhibernate/src/NHibernate.Test/App.config 2010-08-02 17:56:21 UTC (rev 5095) +++ trunk/nhibernate/src/NHibernate.Test/App.config 2010-08-02 18:37:53 UTC (rev 5096) @@ -29,8 +29,12 @@ <qualifyAssembly partialName="FirebirdSql.Data.FirebirdClient" fullName="FirebirdSql.Data.FirebirdClient, Version=2.1.0.0, Culture=neutral, PublicKeyToken=3750abcc3150b00c" /> </assemblyBinding> <!-- --> + + <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> + <qualifyAssembly partialName="System.Data.OracleClient" fullName="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> + </assemblyBinding> - </runtime> + </runtime> <!-- hibernate-configuration section This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |