From: <one...@us...> - 2003-01-28 13:05:31
|
Update of /cvsroot/hibernate/Hibernate2 In directory sc8-pr-cvs1:/tmp/cvs-serv24860 Modified Files: changelog.txt Log Message: new features Index: changelog.txt =================================================================== RCS file: /cvsroot/hibernate/Hibernate2/changelog.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** changelog.txt 5 Jan 2003 02:11:19 -0000 1.4 --- changelog.txt 28 Jan 2003 13:05:28 -0000 1.5 *************** *** 1,7 **** Hibernate Changelog =================== ! Changed in version 2.0 beta 1 ! ----------------------------- * renamed packages to net.sf.hibernate.* * removed support for toplevel collections / subcollections * created hibernate-mapping-2.0.dtd --- 1,8 ---- Hibernate Changelog =================== ! Changed in version 2.0 beta 1 (28.1.2003) ! ----------------------------------------- * renamed packages to net.sf.hibernate.* + * all API methods now wrap SQLExceptions * removed support for toplevel collections / subcollections * created hibernate-mapping-2.0.dtd *************** *** 9,12 **** --- 10,22 ---- - renamed 'role' attribute to 'name' - changed default value for 'unsaved-value' to "null" + - added mandatory 'name' attribute to <param> + - added <meta> tag + * created hibernate-configuration-2.0.dtd + * brand new Configuration API, including exposed mapping package + * completely reworked IdentifierGenerator framework + - built-in generators now auto-detect the type (so integer identity columns are supported, for example) + - parameters are now named + - built-in strategies are renamed + * expanded Interceptor interface * removed exceptions that occur if an object is saved or deleted multiple times in a session * added <parent> subelement to <composite-element> and <nested-composite-element> *************** *** 14,17 **** --- 24,46 ---- * removed all deprecated methods * added Session.refresh() + * added dynamic-update functionality + * added update and insert attributes to <property> and <many-to-one> mappings + * added elements(), indices(), size(), maxelement(), minelement(), maxindex(), minindex() collection functions to query language + * huge improvements to CodeGenerator (Max Andersen) + * enhanced outerjoin fetching support in queries + + Changes in version 1.2.3 (28.1.2003) + ------------------------------------ + * fixed a recently-introduced problem with Timestamp dirty checking + * added createClob(), createBlob() for streams (Benoit Menendez) + * SchemaUpdate now configures Dialect correctly (Michael Locher) + * update() now working for classes with embedded composite ids + * unsaved-value attribute now recognized for <composite-id> + * fixed a minor problem where a very specific kind of SQL select did not qualify a column name + * added Query.getQueryString() + * fixed an NPE that sometimes occurred when hibernate.connection.username was not specified + * fixed a bug in SchemaExport where foreign key constraints did not use qualified tablenames + * added isFirst(), isLast() to ScrollableResults + * fixed bug finding properties inherited by mapped interfaces Changes in version 1.2.1b (4.1.2003) |