From: <one...@us...> - 2003-03-05 09:48:57
|
Update of /cvsroot/hibernate/Hibernate2 In directory sc8-pr-cvs1:/tmp/cvs-serv9044 Modified Files: changelog.txt Log Message: recent changes Index: changelog.txt =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/changelog.txt,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** changelog.txt 1 Mar 2003 20:15:30 -0000 1.9 --- changelog.txt 5 Mar 2003 09:48:53 -0000 1.10 *************** *** 2,11 **** =================== ! Changes in version 2.x beta x (x.x.2003) ---------------------------------------- * hbm2java now can generate Beans style property events (Klaus Zimmermann) ! Changes in version 2.0 beta 3 (2.2.2003) ---------------------------------------- * collections now deserialize correctly (fix for bug in beta 2) * standardised on dom4j for XML parsing --- 2,26 ---- =================== ! Changes in version 2.0 beta 4 (x.x.2003) ---------------------------------------- + * Major HQL improvements + - from "Foo as foo join foo.bars as bar" instead of "from foo in class Foo, bar in elements(foo.bars)" + - "select new Foo(bar.name, bar.amount) from ...." + - outer and full join support + * Query methods now return this, to allow chaining + * FrontBase support (Run Lussier) + * experimental JCA support (Daniel Bradby) * hbm2java now can generate Beans style property events (Klaus Zimmermann) + * support SQL identifiers quoted with [] + * fixed bug with PostgreSQL + * name attribute now optional in .cfg.xml + * support for postgres ilike operator (M Lang) + * squash warnings with GNU JAXP (Chris Nockleberg) + * fixed a bug in Query.setParameterList() + * Ingres support (Ian Booth) ! Changes in version 2.0 beta 3 (24.2.2003) ---------------------------------------- + * collections now represent null elements as a missing row * collections now deserialize correctly (fix for bug in beta 2) * standardised on dom4j for XML parsing *************** *** 15,19 **** * fixed a stack overflow that could occur in toString() of classes created with hbm2java (Max Andersen) * fixed a bug where composite-element <parent> property was not being set after retrieval from cache ! * added where attribute to collection mappings * fixed a exception that occurred when wrapping collections with sort="MyComparator" (Jason Horne) * objects with mutable="false" are now never updated --- 30,34 ---- * fixed a stack overflow that could occur in toString() of classes created with hbm2java (Max Andersen) * fixed a bug where composite-element <parent> property was not being set after retrieval from cache ! * added where attribute to collection mappings to allow filtering * fixed a exception that occurred when wrapping collections with sort="MyComparator" (Jason Horne) * objects with mutable="false" are now never updated *************** *** 26,29 **** --- 41,47 ---- * Lists and arrays now represent null elements as a missing row * 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() Changes in version 2.0 beta 2 (2.2.2003) |