From: <hib...@li...> - 2006-03-20 14:46:05
|
Author: ste...@jb... Date: 2006-03-20 09:45:56 -0500 (Mon, 20 Mar 2006) New Revision: 9663 Modified: branches/Branch_3_1/Hibernate3/build.xml branches/Branch_3_1/Hibernate3/changelog.txt branches/Branch_3_1/Hibernate3/doc/reference/en/master.xml branches/Branch_3_1/Hibernate3/readme.txt branches/Branch_3_1/Hibernate3/src/org/hibernate/cfg/Environment.java Log: prep 3.1.3 Modified: branches/Branch_3_1/Hibernate3/build.xml =================================================================== --- branches/Branch_3_1/Hibernate3/build.xml 2006-03-20 14:38:01 UTC (rev 9662) +++ branches/Branch_3_1/Hibernate3/build.xml 2006-03-20 14:45:56 UTC (rev 9663) @@ -18,7 +18,7 @@ <property name="name2" value="hibernate3"/> <property name="version.major" value="3"/> <property name="version.minor" value="1"/> - <property name="version.patchlevel" value="2"/> + <property name="version.patchlevel" value="3"/> <property name="version.sansPatchLevel" value="${version.major}.${version.minor}"/> <property name="version.full" value="${version.sansPatchLevel}.${version.patchlevel}"/> <property name="fullname" value="${name}-${version.full}"/> Modified: branches/Branch_3_1/Hibernate3/changelog.txt =================================================================== --- branches/Branch_3_1/Hibernate3/changelog.txt 2006-03-20 14:38:01 UTC (rev 9662) +++ branches/Branch_3_1/Hibernate3/changelog.txt 2006-03-20 14:45:56 UTC (rev 9663) @@ -5,7 +5,39 @@ refer to the particular case on JIRA using the issue tracking number to learn more about each case. +Changes in version 3.1.3 (2006.03.20) +------------------------------------------- +** Bug + * [HHH-535] - properties element causes exception in interface/abstract class + * [HHH-1236] - Remove static reference to classloader, to avoid memory leak at webapp reload + * [HHH-1248] - explicit joins to collections in subquery result in join conditions being dropped from sql + * [HHH-1287] - Problem with WAS ExtendedJTATransaction not available when using MDB + * [HHH-1325] - ArrayOutOfBounds expected in DatabaseMetadata.isTable when specifing schema + * [HHH-1419] - Update + Exists doesn't seem to work + * [HHH-1433] - many-to-many with additional 'with' join clause generates bad sql + * [HHH-1435] - many-to-one lazy seems to be broken in 3.1.x + * [HHH-1445] - SchemaUpdate closes shared ConnectionProvider + * [HHH-1453] - Broken exception handling in NullableType + * [HHH-1464] - QueryException from Query.getReturnAliases when query uses "fetch" + * [HHH-1486] - Concurrent access issues with both SoftLimitMRUCache and SimpleMRUCache + * [HHH-1489] - mapped composite is is always assumed as transient + * [HHH-1508] - Session.createQuery() should not flush the session + * [HHH-1531] - NPE with many-to-many and property-ref + * [HHH-1546] - generated version properties fail with multiple actions per flush + +** Improvement + * [HHH-1430] - More complete TransactionManager in GlassFish (SunOne 9) and 8 + * [HHH-1516] - support DataDirect standard jdbc stored procedures + * [HHH-1520] - with clause with implied joins within an explicit join + * [HHH-1526] - Improved DTDEntityResolver + * [HHH-1540] - Better Error Feedback In CollectionEntry.postFlush(PersistentCollection) + * [HHH-1555] - ConnectionReleaseMode.AFTER_STATEMENT and flushes + +** New Feature + * [HHH-1251] - Avoid replicating the clearing of TreeCache on SessionFactory..close() + + Changes in version 3.1.2 (01.27.2006) ------------------------------------------- Modified: branches/Branch_3_1/Hibernate3/doc/reference/en/master.xml =================================================================== --- branches/Branch_3_1/Hibernate3/doc/reference/en/master.xml 2006-03-20 14:38:01 UTC (rev 9662) +++ branches/Branch_3_1/Hibernate3/doc/reference/en/master.xml 2006-03-20 14:45:56 UTC (rev 9663) @@ -33,7 +33,7 @@ <bookinfo> <title>HIBERNATE - Relational Persistence for Idiomatic Java</title> <subtitle>Hibernate Reference Documentation</subtitle> - <releaseinfo>3.1.2</releaseinfo> + <releaseinfo>3.1.3</releaseinfo> </bookinfo> <toc/> Modified: branches/Branch_3_1/Hibernate3/readme.txt =================================================================== --- branches/Branch_3_1/Hibernate3/readme.txt 2006-03-20 14:38:01 UTC (rev 9662) +++ branches/Branch_3_1/Hibernate3/readme.txt 2006-03-20 14:45:56 UTC (rev 9663) @@ -1,6 +1,6 @@ Hibernate - Relational Persistence for Idiomatic Java ===================================================== -version 3.1.2, Jan 27, 2006 +version 3.1.3, March 20, 2006 Instructions ------------ Modified: branches/Branch_3_1/Hibernate3/src/org/hibernate/cfg/Environment.java =================================================================== --- branches/Branch_3_1/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-03-20 14:38:01 UTC (rev 9662) +++ branches/Branch_3_1/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-03-20 14:45:56 UTC (rev 9663) @@ -152,7 +152,7 @@ */ public final class Environment { - public static final String VERSION = "3.1.2"; + public static final String VERSION = "3.1.3"; /** * <tt>ConnectionProvider</tt> implementor to use when obtaining connections |