From: Michael D. <mik...@us...> - 2004-09-02 15:30:19
|
Update of /cvsroot/nhibernate/nhibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24032 Modified Files: releasenotes.txt Log Message: Prep for build 0.2.0.0 Index: releasenotes.txt =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/releasenotes.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** releasenotes.txt 30 Aug 2004 18:32:04 -0000 1.11 --- releasenotes.txt 2 Sep 2004 15:30:10 -0000 1.12 *************** *** 1,9 **** ! PreAlpha Build 0.2.0.0 ======================== ! - Removed support for <dynabean> mapping since it doesn't exist in .net ! - Fixed bug in nhibernate.build file when not signing NHibernate.dll - Fixed bug with Hql and SetParameter() where there were 2 parameters with same name. ! - Fixed bug with Hql and "IN (:namedParam)" ! - Fixed bug with Hql and multi column IType - Fixed bug with NullReferenceException and TypeType class. - ISession.Filter() is now working. --- 1,10 ---- ! Alpha Build 0.2.0.0 ======================== ! - Removed support for <dynabean> mapping since it doesn't exist in .net. ! - Fixed bug in nhibernate.build file when not signing NHibernate.dll. - Fixed bug with Hql and SetParameter() where there were 2 parameters with same name. ! - Fixed bug with Hql and "IN (:namedParam)". ! - Fixed bug with Hql and multi column IType. ! - Fixed bug with Hql and scalar queries - Fixed bug with NullReferenceException and TypeType class. - ISession.Filter() is now working. *************** *** 11,20 **** - Refactored Hql to use a SqlString instead of string containing sql. - Dialect has had public API changed because of Sql to SqlCommand refactoring. ! - IPreparer has had methods removed from public API - type="System.Object" no longer matches to SerializableType - instead it matches to ObjectType. Use type="Serializable" instead. - Added "access" attribute for NHibernate to get to fields and properties with no setters. See NHibernate.Property.PropertyAccessorFactory for all valid value types and how to plug in your own implementation of IPropertyAccessor. - Added Types to read BLOB/CLOB columns to a byte[]/string Property. - TypeFactory was modified to allow the attribute "type" to be the Assembly Qualified Name, Full Name, NHibernate IType.Name, or Hibernate name to help with porting hibernate hbm.xml files and Net2Hbm that John is writing. ! - Fixed bug with Hql and scalar queries PreAlpha Build 0.1.0.0 --- 12,25 ---- - Refactored Hql to use a SqlString instead of string containing sql. - Dialect has had public API changed because of Sql to SqlCommand refactoring. ! - IPreparer has had methods removed from public API. - type="System.Object" no longer matches to SerializableType - instead it matches to ObjectType. Use type="Serializable" instead. - Added "access" attribute for NHibernate to get to fields and properties with no setters. See NHibernate.Property.PropertyAccessorFactory for all valid value types and how to plug in your own implementation of IPropertyAccessor. - Added Types to read BLOB/CLOB columns to a byte[]/string Property. + - Modified Expression.Sql() to require use of SqlString if parameters are used. - TypeFactory was modified to allow the attribute "type" to be the Assembly Qualified Name, Full Name, NHibernate IType.Name, or Hibernate name to help with porting hibernate hbm.xml files and Net2Hbm that John is writing. ! - hibernate.connection.isolation configuration now affects the IDbTransaction's IsolationLevel, it is parsed as the name value of the IsolationLevel enum - "Chaos", "ReadCommitted", "ReadUncommitted", "RepeatableRead", "Serializable", and "Unspecified". ! - ICriteria.SetMaxResults() is now working. ! - IQuery.SetMaxResults().Enumerable() is now working. ! - Modifed Test Fixtures to help isolate problems caused by DataProviders. PreAlpha Build 0.1.0.0 |