From: <one...@us...> - 2003-04-21 07:04:15
|
Update of /cvsroot/hibernate/Hibernate2 In directory sc8-pr-cvs1:/tmp/cvs-serv2220 Modified Files: changelog.txt readme.txt Log Message: 2.0 beta 5 Index: changelog.txt =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/changelog.txt,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** changelog.txt 22 Mar 2003 05:39:56 -0000 1.14 --- changelog.txt 21 Apr 2003 07:04:09 -0000 1.15 *************** *** 1,4 **** --- 1,30 ---- Hibernate Changelog =================== + Changes in version 2.0 beta 5 (21.4.2003) + ----------------------------------------- + * Informix support (Steve Molitor) + * fixed a bug parsing "select new ... " queries + * deprecated "object" type in favor of <any> mappings + * added Session.contains() + * added extra DBCP config options (?) + * SessionFactory.close() now unbinds from JNDI + * added Session.evict() + * got rid of an unnecessary SQL DELETE issued when an empty collection was dereferenced + * where attribute of collection mappings no longer ignored for deletion + * improved logging + * support polymorphic associations to "embedded" composite id classes + * various bugfixes to collection filter parameter binding + * fixed some problems with proxies introduced in earlier beta versions + * fixed bug with self-reference in the case of identity column id generation + * added hibernate.cglib.use_reflection_optimizer property + * added nonstrict-read-write cache + * fixed an SQL-generation bug in new Criteria API + * added CompositeUserType + * sequence and table id generators now aware of default-schema + * added update and insert attributes to <component> element + * fixed a bug with expressions like elements(foo.bar.baz) in where clause + * more efficient Set initialization (two-phase load) + * removed support for hibernate.query.imports and added <import> mapping element + * fixed problem in DBCP connection validation and added new config properties Changes in version 2.0 beta 4 (22.3.2003) *************** *** 53,57 **** * fixed a bug in Hibernate PreparedStatement cache where maxRows and fetchSize were not cleared before re-caching * fixed a bug in HibernateService that caused a restart to fail ! * added SybaseAnywhereDialect () * added SessionFactory.close() --- 79,83 ---- * fixed a bug in Hibernate PreparedStatement cache where maxRows and fetchSize were not cleared before re-caching * fixed a bug in HibernateService that caused a restart to fail ! * added SybaseAnywhereDialect (?) * added SessionFactory.close() Index: readme.txt =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/readme.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** readme.txt 22 Mar 2003 13:41:50 -0000 1.4 --- readme.txt 21 Apr 2003 07:04:09 -0000 1.5 *************** *** 1,5 **** Hibernate - Relational Persistence for Idiomatic Java ===================================================== ! version 2.0 beta 4 22 March 2003 Instructions --- 1,5 ---- Hibernate - Relational Persistence for Idiomatic Java ===================================================== ! version 2.0 beta 5 21 April 2003 Instructions |