From: <hib...@li...> - 2006-05-06 04:41:26
|
Author: ste...@jb... Date: 2006-05-06 00:40:07 -0400 (Sat, 06 May 2006) New Revision: 9903 Modified: trunk/Hibernate3/build.xml trunk/Hibernate3/changelog.txt trunk/Hibernate3/doc/reference/en/master.xml trunk/Hibernate3/readme.txt trunk/Hibernate3/src/org/hibernate/cfg/Environment.java Log: prep 3.2.0.cr2 release Modified: trunk/Hibernate3/build.xml =================================================================== --- trunk/Hibernate3/build.xml 2006-05-06 03:53:35 UTC (rev 9902) +++ trunk/Hibernate3/build.xml 2006-05-06 04:40:07 UTC (rev 9903) @@ -19,7 +19,7 @@ <property name="version.major" value="3"/> <property name="version.minor" value="2"/> <property name="version.micro" value="0"/> - <property name="version.qualifier" value="cr1"/> + <property name="version.qualifier" value="cr2"/> <property name="version.full" value="${version.major}.${version.minor}.${version.micro}.${version.qualifier}"/> <property name="version.major_minor" value="${version.major}.${version.minor}"/> <property name="fullname" value="${name}-${version.full}"/> Modified: trunk/Hibernate3/changelog.txt =================================================================== --- trunk/Hibernate3/changelog.txt 2006-05-06 03:53:35 UTC (rev 9902) +++ trunk/Hibernate3/changelog.txt 2006-05-06 04:40:07 UTC (rev 9903) @@ -5,6 +5,33 @@ refer to the particular case on JIRA using the issue tracking number to learn more about each case. +Chages in version 3.2 cr2 (2006.05.05) +------------------------------------------- + +** Bug + * [HHH-1114] - The first (HSQL) Hibernate Application doesn't work as expected due to lack of database shutdown + * [HHH-1175] - Exception when loading inheritance mapping in single file + * [HHH-1560] - PropertiesHelper.resolvePlaceHolders() fails with non-String values in System properties + * [HHH-1620] - Errors on max_lo <=1 boundaries + * [HHH-1625] - Hibernate.isPropertyInitialized() returns false on instrumented transient object + * [HHH-1648] - Exception while resuming a transaction is silently eaten + * [HHH-1674] - Configuration serialization error: filterDefinitions map not serializable + * [HHH-1695] - subsequent calls to non-existent proxy causes NPE + +** Improvement + * [HHH-1266] - StatelessSession can implement refresh + * [HHH-1414] - many-to-many and metadata order-by based on column from the target table + * [HHH-1477] - Improve naming strategy for ANN-195 + * [HHH-1538] - aggregations functions in EJBQL queries does not return the appropriate types + * [HHH-1670] - Update EhCache and EhCache provider to support EhCache 1.2 + * [HHH-1704] - Deduplicate unique constraints generation sharing the same column(s) + +** New Feature + * [HHH-870] - support SQL updates in named queries + * [HHH-1591] - Replace LazyInitializationException by EntityNotFoundException + * [HHH-1719] - Provide a ClassTransformer interface to the BytecodeProvider + + Chages in version 3.2 cr1 (2006.03.27) ------------------------------------------- Modified: trunk/Hibernate3/doc/reference/en/master.xml =================================================================== --- trunk/Hibernate3/doc/reference/en/master.xml 2006-05-06 03:53:35 UTC (rev 9902) +++ trunk/Hibernate3/doc/reference/en/master.xml 2006-05-06 04:40:07 UTC (rev 9903) @@ -33,7 +33,7 @@ <bookinfo> <title>HIBERNATE - Relational Persistence for Idiomatic Java</title> <subtitle>Hibernate Reference Documentation</subtitle> - <releaseinfo>3.2 cr1</releaseinfo> + <releaseinfo>3.2 cr2</releaseinfo> </bookinfo> <toc/> Modified: trunk/Hibernate3/readme.txt =================================================================== --- trunk/Hibernate3/readme.txt 2006-05-06 03:53:35 UTC (rev 9902) +++ trunk/Hibernate3/readme.txt 2006-05-06 04:40:07 UTC (rev 9903) @@ -1,6 +1,6 @@ Hibernate - Relational Persistence for Idiomatic Java ===================================================== -version 3.2 cr1, Mar 27, 2006 +version 3.2 cr2, May 5, 2006 Instructions ------------ Modified: trunk/Hibernate3/src/org/hibernate/cfg/Environment.java =================================================================== --- trunk/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-05-06 03:53:35 UTC (rev 9902) +++ trunk/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-05-06 04:40:07 UTC (rev 9903) @@ -153,7 +153,7 @@ */ public final class Environment { - public static final String VERSION = "3.2 cr1"; + public static final String VERSION = "3.2 cr2"; /** * <tt>ConnectionProvider</tt> implementor to use when obtaining connections |