From: Michael D. <mik...@us...> - 2004-08-25 04:16:47
|
Update of /cvsroot/nhibernate/nhibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9779 Modified Files: releasenotes.txt Log Message: starting to update release notes for build 0.2.0.0 Index: releasenotes.txt =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/releasenotes.txt,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** releasenotes.txt 11 Aug 2004 11:49:17 -0000 1.8 --- releasenotes.txt 25 Aug 2004 04:16:38 -0000 1.9 *************** *** 1,2 **** --- 1,19 ---- + 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. + - Simple Filters are now working. + - Compiled Queries and Filters are now cached. + - 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. + PreAlpha Build 0.1.0.0 ======================== |