From: Michael D. <mik...@us...> - 2005-01-03 03:49:01
|
Update of /cvsroot/nhibernate/nhibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16959 Modified Files: releasenotes.txt Log Message: updated release notes about error checking improvements. Index: releasenotes.txt =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/releasenotes.txt,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** releasenotes.txt 30 Dec 2004 16:45:39 -0000 1.23 --- releasenotes.txt 3 Jan 2005 03:48:42 -0000 1.24 *************** *** 1,17 **** Build 0.6.0.0 ======================== ! - Added support for proxy="" on classes. - Added a configuration parameter "hibernate.prepare_sql" to turn on or off calls to IDbCommand.Prepare(). - Added NHibernate Type for System.SByte. (Sergey Koshcheyev) - Added support for mapping subclasses and joined-subclasses in different files through addition of extends attribute. (Andrew Mayorov) - Added support for LIMIT to MySQLDialect. (Sergey Koshcheyev) ! - Removed DbType {get;} from IUserType. - Fixed problem with spaces in sql generated from hql and MySql. - - Modified logging in Transaction to not generate as many messages. - - Modified how exceptions are rethrown so call stack of original exception is not lost. - Fixed bug with Configuration when there is a class without a namespace. - Fixed bug with Sql generated for an IN clause that contains a class/subclass with a discriminator-value="null". - - Improved error messages when IDbCommand and IDbConnection can't be found by the IDriver. - Fixed potential threading problem with QueryTranslator. Build 0.5.0.0 --- 1,19 ---- Build 0.6.0.0 ======================== ! - Added support for proxy="" on classes. proxy="" must either specify an Interface or the properties that need to be proxied have to be virtual. - Added a configuration parameter "hibernate.prepare_sql" to turn on or off calls to IDbCommand.Prepare(). - Added NHibernate Type for System.SByte. (Sergey Koshcheyev) - Added support for mapping subclasses and joined-subclasses in different files through addition of extends attribute. (Andrew Mayorov) - Added support for LIMIT to MySQLDialect. (Sergey Koshcheyev) ! - Improved error messages when IDbCommand and IDbConnection can't be found by the IDriver. ! - Improved error message when mapped class is missing a constructor with no args. - Fixed problem with spaces in sql generated from hql and MySql. - Fixed bug with Configuration when there is a class without a namespace. - Fixed bug with Sql generated for an IN clause that contains a class/subclass with a discriminator-value="null". - Fixed potential threading problem with QueryTranslator. + - Modified logging in Transaction to not generate as many messages. + - Modified how exceptions are rethrown so call stack of original exception is not lost. + - Moved NHibernate.Tasks and NHibernate.Tool.hbm2net to the NHibernateContrib package. + - Removed DbType {get;} from IUserType. Build 0.5.0.0 |