[hibernate-commits] Hibernate SVN: r18927 - in core/branches/Branch_3_2_4_SP1_CP: src/org/hibernate/cfg and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Mar 5 13:07:02 EST 2010


Author: stliu
Date: 2010-03-05 13:07:01 -0500 (Fri, 05 Mar 2010)
New Revision: 18927

Modified:
   core/branches/Branch_3_2_4_SP1_CP/build.xml
   core/branches/Branch_3_2_4_SP1_CP/changelog.txt
   core/branches/Branch_3_2_4_SP1_CP/readme.txt
   core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/cfg/Environment.java
Log:
JBPAPP-3844 upgrade core version to 3.2.4.sp1.cp10

Modified: core/branches/Branch_3_2_4_SP1_CP/build.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/build.xml	2010-03-05 15:23:34 UTC (rev 18926)
+++ core/branches/Branch_3_2_4_SP1_CP/build.xml	2010-03-05 18:07:01 UTC (rev 18927)
@@ -24,7 +24,7 @@
 	<property name="version.minor" value="2"/>
 	<property name="version.micro" value="4"/>
     <property name="version.qualifier" value="sp1"/>
-    <property name="version.cp" value="cp09"/>
+    <property name="version.cp" value="cp10"/>
     <property name="version.full" value="${version.major}.${version.minor}.${version.micro}.${version.qualifier}.${version.cp}"/>
     <property name="version.major_minor" value="${version.major}.${version.minor}"/>
     <property name="fullname" value="${name}-${version.full}"/>

Modified: core/branches/Branch_3_2_4_SP1_CP/changelog.txt
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/changelog.txt	2010-03-05 15:23:34 UTC (rev 18926)
+++ core/branches/Branch_3_2_4_SP1_CP/changelog.txt	2010-03-05 18:07:01 UTC (rev 18927)
@@ -4,7 +4,22 @@
 match the actual issue resolution (i.e. a bug might not be a bug). Please
 refer to the particular case on JIRA using the issue tracking number to learn
 more about each case.
+Changes in version 3.2.4.sp1.cp10
+-------------------------------------------
 
+** Bug
+	* [JBPAPP-906 / HHH-2990] - Bad usage of ClassLoader.loadClass() for Java6 in SerializationHelper$CustomObjectInputStream - deserialization bottleneck for arrays
+	* [JBPAPP-2943 / HHH-4457] - SchemaUpdate fails on Sybase ASE 15 when a new column is added without a default value
+	* [JBPAPP-3056] - DB2 v9.1 - Test fails due to "Invalid use of a parameter marker."
+	* [JBPAPP-3067 / HHH-4567] - Tests in MySQL using different case for objects as defined in configuration
+	* [JBPAPP-3089 / HHH-2166] - Long "in" lists in queries results in a Java stack overflow exception.
+	* [JBPAPP-3098 / HHH-4065] - Incorrect SQL is used for HQL if the number of values for a filter collection parameter is changed
+	* [JBPAPP-3115] - update HREFs for JDK from jdk1.4 to jdk1.5
+	* [JBPAPP-3173 / HHH-4614] - (javassist)Instrumented model with abstract MappedSuperclass and field access doesn't work
+	* [JBPAPP-3211 / HHH-3159] - Oracle 11g - desupport of oracle.jdbc.driver
+	* [JBPAPP-3371 / HHH-4769] - on MySQL, HQL function ROUND always returns an Integer, it truncate the decimal part of Double number.
+	* [JBPAPP-3487 / HHH-4825] - wrong alias used in table-pre-class Inheritance strategy
+
 Changes in version 3.2.4.sp1.cp09
 -------------------------------------------
 

Modified: core/branches/Branch_3_2_4_SP1_CP/readme.txt
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/readme.txt	2010-03-05 15:23:34 UTC (rev 18926)
+++ core/branches/Branch_3_2_4_SP1_CP/readme.txt	2010-03-05 18:07:01 UTC (rev 18927)
@@ -1,6 +1,6 @@
 Hibernate - Relational Persistence for Idiomatic Java
 =====================================================
-version 3.2.4.sp1.cp09
+version 3.2.4.sp1.cp10
 Copyright © 2009 Red Hat, Inc.
 
 

Modified: core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/cfg/Environment.java
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/cfg/Environment.java	2010-03-05 15:23:34 UTC (rev 18926)
+++ core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/cfg/Environment.java	2010-03-05 18:07:01 UTC (rev 18927)
@@ -153,7 +153,7 @@
  */
 public final class Environment {
 
-	public static final String VERSION = "3.2.4.sp1.cp09";
+	public static final String VERSION = "3.2.4.sp1.cp10";
 
 	/**
 	 * <tt>ConnectionProvider</tt> implementor to use when obtaining connections



More information about the hibernate-commits mailing list