From: Michael D. <mik...@us...> - 2005-02-19 16:10:17
|
Update of /cvsroot/nhibernate/nhibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18682 Modified Files: releasenotes.txt Log Message: updated release notes for everything in 0.7 Index: releasenotes.txt =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/releasenotes.txt,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** releasenotes.txt 23 Jan 2005 04:50:11 -0000 1.25 --- releasenotes.txt 19 Feb 2005 16:10:08 -0000 1.26 *************** *** 3,11 **** - Renamed class NHibernate.NHibernate to NHibernate.NHibernateUtil. This will break alot of code if you were using ISession.Find with parameters - migrate to IQuery instead. - Fixed bug with DateTime type where any value less than 1/1/1753 was written to the database as null. If you were relying on this then the Nullables library in NHibernateContrib is the way to code null values for DateTime properties. ! - Added IDisposable to EnumerableImpl. - Added default value of hibernate.connection.driver_class to Dialects. - Fixed messages in exceptions from GetGetter and GetSetter in BasicPropertyAccessor and NoSetterAccessor. - Improved messages in Exceptions thrown by ISetter. - Improved messages in Exceptions for Persisters with problems parsing discriminator values. Build 0.6.0.0 --- 3,29 ---- - Renamed class NHibernate.NHibernate to NHibernate.NHibernateUtil. This will break alot of code if you were using ISession.Find with parameters - migrate to IQuery instead. - Fixed bug with DateTime type where any value less than 1/1/1753 was written to the database as null. If you were relying on this then the Nullables library in NHibernateContrib is the way to code null values for DateTime properties. ! - Added ISession.Get() as an alternative to ISession.Load() (Sergey Koshcheyev). ! - Added IDisposable to EnumerableImpl, ISession, ITransaction, IBatcher, and IConnectionProvider. - Added default value of hibernate.connection.driver_class to Dialects. + - Added default value of hibernate.prepare_sql="false" to MsSql2000Dialect. + - Added [ComVisible(false)] to NHibernate AssemblyInfo. + - Added OracleDataClientDriver for Oracle.DataAccess assembly (James Mills). + - Added IDriver and Dialect for SQLite (Ioan Bizau). - Fixed messages in exceptions from GetGetter and GetSetter in BasicPropertyAccessor and NoSetterAccessor. + - Fixed problem of LazyInitializationException losing InnerException. + - Fixed problem of Collections not always getting cached. + - Fixed Id.TableGenerator so it works with Oracle. + - Fixed problem of some NHibernate Exceptions not being serializable. + - Improved documentation in IQuery to explain how SetMaxResult is working. - Improved messages in Exceptions thrown by ISetter. - Improved messages in Exceptions for Persisters with problems parsing discriminator values. + - Many internal cleanups from FxCop reccommendations. + - Modified ISession.Lock() to allow reassociating transient instances like hibernate 2.1 (Sergey Koshcheyev). + - Modified Exception thrown by Preparer when the IDbCommand.Prepare() method fails to ADOException. + - Modified SqlCommand.Parameter to be immutable. + - Modified how constraints are generated to work with MySql 4.1 (Bill Hawes). + - Modified Dialect to throw an ArgumentException when an unsupported DbType is used. + - Modified constructors on NHibernate Collections to be internal instead of public. + - Renamed Transaction to AdoTransaction. Build 0.6.0.0 |