[hibernate-commits] Hibernate SVN: r15001 - in core/trunk: core/src/main/java/org/hibernate/cfg and 1 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Jul 31 11:44:54 EDT 2008


Author: steve.ebersole at jboss.com
Date: 2008-07-31 11:44:54 -0400 (Thu, 31 Jul 2008)
New Revision: 15001

Modified:
   core/trunk/changelog.txt
   core/trunk/core/src/main/java/org/hibernate/cfg/Environment.java
   core/trunk/documentation/manual/src/main/docbook/en-US/Hibernate_Reference.xml
Log:
prepare 3.3.0.CR2 release

Modified: core/trunk/changelog.txt
===================================================================
--- core/trunk/changelog.txt	2008-07-31 15:39:33 UTC (rev 15000)
+++ core/trunk/changelog.txt	2008-07-31 15:44:54 UTC (rev 15001)
@@ -6,10 +6,47 @@
 more about each case.
 
 
-Changes in version 3.3.0.CR1 (2008.03.18)
+Changes in version 3.3.0.CR2 (2008.07.31)
 -------------------------------------------
 
 ** Bug
+    * [HHH-1697] - OracleDialect fails to recognize sequence accessible through syonyms when validating schema
+    * [HHH-2604] - Isolator.JdbcDelegate masks the exception if it isn't possible to open a connection.
+    * [HHH-2683] - "datediff" is declared as NoArgSQLFunction in H2Dialect, but actually accepts 3 arguments.
+    * [HHH-3006] - ConcurrentModificationException in AbstractBatcher results in infinite loop
+    * [HHH-3229] - Merge can fail when there is a transient entity reachable by multiple paths and at least one path does not cascade on merge
+    * [HHH-3257] - Content images not displayed
+    * [HHH-3260] - Hibernate wraps a listener init or destroy exception into an AssertionFailure
+    * [HHH-3261] - Do not wrap exceptions raised by event listeners (at init or destroy time)
+    * [HHH-3265] - change license url in pom to http://www.gnu.org/licenses/lgpl-2.1.html
+    * [HHH-3266] - distribution bundle missing jta dependency
+    * [HHH-3272] - using of Integer.valueOf(int), which is not available in JDK 1.4
+    * [HHH-3282] - DB2Dialect should report supportsLobValueChangePropogation() == false
+    * [HHH-3309] - Serialize/Deserialize problem in AbstractLazyInitializer with entitymode.MAP.
+    * [HHH-3409] - ResultTransformers need smarter equals() and hashCode() impls
+
+** Improvement
+    * [HHH-1786] - JTASessionContext.CleanupSynch does not remove sessions from currentSessionMap
+    * [HHH-2060] - To be able to use <generator> with <composite-id>
+    * [HHH-2506] - Make javassist the default ByteCodeProvider
+    * [HHH-2875] - repackage cglib/asm under org.hibernate namespace
+    * [HHH-3269] - upgrade to jDocBook plugin version 2.1.1
+    * [HHH-3283] - protect BulkManipulationTest#testInsertWithGeneratedTimestampVersion where Dialect#supportsParametersInInsertSelect == false
+    * [HHH-3358] - Enable JTATransactionFactory and JTATransaction factory to work without JNDI
+    * [HHH-3390] - Use READ_COMMITTED for JBC 2 cache
+
+** Patch
+    * [HHH-3294] - Version incorrectly incremented for unchanged persistent entity that is parent of a one to many relationship
+
+** Task
+    * [HHH-3270] - follow up on documentation license questions
+
+
+
+Changes in version 3.3.0.CR1 (2008.04.28)
+-------------------------------------------
+
+** Bug
     * [HHH-1312] - Unclosed ResultSet when using Identity
     * [HHH-1396] - Table.validateColumns fails on valid column
     * [HHH-1569] - Immutable Natural Id check fails with ArrayIndexOutOfBounds in some cases

Modified: core/trunk/core/src/main/java/org/hibernate/cfg/Environment.java
===================================================================
--- core/trunk/core/src/main/java/org/hibernate/cfg/Environment.java	2008-07-31 15:39:33 UTC (rev 15000)
+++ core/trunk/core/src/main/java/org/hibernate/cfg/Environment.java	2008-07-31 15:44:54 UTC (rev 15001)
@@ -176,7 +176,7 @@
  */
 public final class Environment {
 
-	public static final String VERSION = "3.3.0.CR1";
+	public static final String VERSION = "3.3.0.CR2";
 
 	/**
 	 * <tt>ConnectionProvider</tt> implementor to use when obtaining connections

Modified: core/trunk/documentation/manual/src/main/docbook/en-US/Hibernate_Reference.xml
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/en-US/Hibernate_Reference.xml	2008-07-31 15:39:33 UTC (rev 15000)
+++ core/trunk/documentation/manual/src/main/docbook/en-US/Hibernate_Reference.xml	2008-07-31 15:44:54 UTC (rev 15001)
@@ -23,7 +23,7 @@
   ~ Boston, MA  02110-1301  USA
   -->
 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-        <!ENTITY versionNumber "3.3.0.CR1">
+        <!ENTITY versionNumber "3.3.0.CR2">
         <!ENTITY copyrightYear "2004">
         <!ENTITY copyrightHolder "Red Hat Middleware, LLC.">
 ]>




More information about the hibernate-commits mailing list