[hibernate-commits] Hibernate SVN: r10833 - in branches/Branch_3_2/Hibernate3: . doc/reference/en src/org/hibernate/cfg

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Nov 16 16:34:33 EST 2006


Author: steve.ebersole at jboss.com
Date: 2006-11-16 16:34:30 -0500 (Thu, 16 Nov 2006)
New Revision: 10833

Modified:
   branches/Branch_3_2/Hibernate3/build.xml
   branches/Branch_3_2/Hibernate3/changelog.txt
   branches/Branch_3_2/Hibernate3/doc/reference/en/master.xml
   branches/Branch_3_2/Hibernate3/readme.txt
   branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg/Environment.java
Log:
prep 3.2.1

Modified: branches/Branch_3_2/Hibernate3/build.xml
===================================================================
--- branches/Branch_3_2/Hibernate3/build.xml	2006-11-16 21:21:08 UTC (rev 10832)
+++ branches/Branch_3_2/Hibernate3/build.xml	2006-11-16 21:34:30 UTC (rev 10833)
@@ -22,7 +22,7 @@
 	<property name="name2" value="hibernate3"/>
 	<property name="version.major" value="3"/>
 	<property name="version.minor" value="2"/>
-	<property name="version.micro" value="0"/>
+	<property name="version.micro" value="1"/>
     <property name="version.qualifier" value="ga"/>
     <property name="version.full" value="${version.major}.${version.minor}.${version.micro}.${version.qualifier}"/>
     <property name="version.major_minor" value="${version.major}.${version.minor}"/>

Modified: branches/Branch_3_2/Hibernate3/changelog.txt
===================================================================
--- branches/Branch_3_2/Hibernate3/changelog.txt	2006-11-16 21:21:08 UTC (rev 10832)
+++ branches/Branch_3_2/Hibernate3/changelog.txt	2006-11-16 21:34:30 UTC (rev 10833)
@@ -6,10 +6,65 @@
 more about each case.
 
 
-Chages in version 3.2.0.cr5 (2006.10.04)
+Chages in version 3.2.1 (2006.11.16)
 -------------------------------------------
 
 ** Bug
+    * [HHH-939] - 'class' property in HQL results in incorrect SQL for joined-subclass
+    * [HHH-1401] - session.merge() executes unnecessary updates when one-to-many relationship is defined.
+    * [HHH-1460] - Inconsistent behavior when using Session.get() with multiple subclasses
+    * [HHH-1564] - deleting versioned object with collection leads to unecessary update
+    * [HHH-1629] - SchemaUpdate/validator doesn't listen to quoting
+    * [HHH-1631] - Missing table in SQL from clause that is referenced in where clause when using joined subclass
+    * [HHH-1651] - hibernate does not find an existing sequence from an Oracle database
+    * [HHH-1663] - <any/> with collection will produce "AssertionFailure: collection was not processed by flush()"
+    * [HHH-1737] - Add a ConnectionWrapper interface to allow access to the underlying connection from a BorrowedConnectionProxy
+    * [HHH-1756] - Proxy objects are not removed from the BatchFetchQueue during a session evict
+    * [HHH-1774] - Component parameters bound incorrectly
+    * [HHH-1921] - "dirty, but no dirty properties" thrown when Interceptor resets properties.
+    * [HHH-1986] - javassist throws InvocationTargetException instead of original checked Exception
+    * [HHH-2027] - merge listener over-writes Interceptor changes to component state for a transient entity
+    * [HHH-2044] - DefaultMergeEventListener.entityIsDetached call StaleObjectStateException with wrong identifier
+    * [HHH-2082] - UpdateTimestampsCache.isUpToDate returns before checking all spaces
+    * [HHH-2108] - cacheable files broken
+    * [HHH-2138] - merge with bidirectional one-to-one may fail
+    * [HHH-2145] - set.retainAll calling set.addAll
+    * [HHH-2174] - Wrong log message in SessionImpl.afterTransactionCompletion(...)
+    * [HHH-2199] - Unique constraints on nullable columns should not be generated with unique-key is used and supportsNotNullUnique=false
+    * [HHH-2202] - Clearing the connection warnings even when log is > WARN to workaround a Sybase issue
+    * [HHH-2206] - SessionImpl tries to deserialize itself in an incorrect order
+    * [HHH-2207] - Suggested fix for HQL - MySQL setMaxResults issue
+    * [HHH-2226] - org.hibernate.hql.ast.tree.FromElementType contains warning log message that should be debug instead
+    * [HHH-2229] - Performance issue with fix for HHH-1293, CGLIBLazyInitializer may be slower for certain Java classes
+    * [HHH-2236] - Lazy property + setReadOnly + Instrumented classes results in NullPointerException when accessing lazy property
+
+** Improvement
+    * [HHH-2037] - provide Query.setProperties(Map)
+    * [HHH-2042] - Typo in FlushMode.MANUAL Javadoc
+    * [HHH-2057] - Add "remove" cascading style to CascadeStyle for XML mappings
+    * [HHH-2127] - Document <filter-def condition="defaultCondition"> and <filter-def>defaultCondition
+    * [HHH-2135] - Hibernate Deserialization:  In org.hibernate.type.SerializableType the code makes a test for the return of a null object by simply testing the object as to whether or not it is null.
+    * [HHH-2185] - introduce setting to control cglib caching of classes
+    * [HHH-2203] - Make Post*Events extend AbstractEvent
+    * [HHH-2208] - Table schema use in DatabaseMetadata
+    * [HHH-2209] - ehcache.jar is old and does not contain the SingletonCacheProvider which are advised in exception messages
+    * [HHH-2217] - Collection write methods and dirtying the collection
+
+** New Feature
+    * [HHH-2205] - Dialect for Intersystems' Cache SQL 2007.1
+
+** Patch
+    * [HHH-1767] - read-only cache for immutable collection causes unnecessary warning
+
+** Task
+    * [HHH-2219] - Upgrade to Javassist 3.4
+
+
+
+Chages in version 3.2.0.cr5 (2006.10.04) => retagged 3.2.0.ga (2006.10.16)
+-------------------------------------------
+
+** Bug
     * [HHH-1668] - PersistentSet write methods mark collection as dirty even if entry is not written
     * [HHH-1714] - Session.get() behavior
     * [HHH-1891] - Since rc3 deprecation Warning: The syntax 'TYPE=storage_engine' is deprecated and will be removed in MySQL 5.2.

Modified: branches/Branch_3_2/Hibernate3/doc/reference/en/master.xml
===================================================================
--- branches/Branch_3_2/Hibernate3/doc/reference/en/master.xml	2006-11-16 21:21:08 UTC (rev 10832)
+++ branches/Branch_3_2/Hibernate3/doc/reference/en/master.xml	2006-11-16 21:34:30 UTC (rev 10833)
@@ -33,7 +33,7 @@
     <bookinfo>
         <title>HIBERNATE - Relational Persistence for Idiomatic Java</title>
         <subtitle>Hibernate Reference Documentation</subtitle>
-        <releaseinfo>3.2 cr5</releaseinfo>
+        <releaseinfo>3.2.1</releaseinfo>
     </bookinfo>
 
     <toc/>

Modified: branches/Branch_3_2/Hibernate3/readme.txt
===================================================================
--- branches/Branch_3_2/Hibernate3/readme.txt	2006-11-16 21:21:08 UTC (rev 10832)
+++ branches/Branch_3_2/Hibernate3/readme.txt	2006-11-16 21:34:30 UTC (rev 10833)
@@ -1,6 +1,6 @@
 Hibernate - Relational Persistence for Idiomatic Java
 =====================================================
-version 3.2 cr5, October 4, 2006
+version 3.2.1, November 16, 2006
 
 Instructions
 ------------

Modified: branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg/Environment.java
===================================================================
--- branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg/Environment.java	2006-11-16 21:21:08 UTC (rev 10832)
+++ branches/Branch_3_2/Hibernate3/src/org/hibernate/cfg/Environment.java	2006-11-16 21:34:30 UTC (rev 10833)
@@ -153,7 +153,7 @@
  */
 public final class Environment {
 
-	public static final String VERSION = "3.2.0";
+	public static final String VERSION = "3.2.1";
 
 	/**
 	 * <tt>ConnectionProvider</tt> implementor to use when obtaining connections




More information about the hibernate-commits mailing list