Author: gbadner
Date: 2009-05-27 22:29:52 -0400 (Wed, 27 May 2009)
New Revision: 16626
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/lib/version-dist.properties
core/branches/Branch_3_2_4_SP1_CP/lib/version.properties
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-2037 : Update version to 3.2.4.SP1_CP08
Modified: core/branches/Branch_3_2_4_SP1_CP/build.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/build.xml 2009-05-27 20:26:32 UTC (rev 16625)
+++ core/branches/Branch_3_2_4_SP1_CP/build.xml 2009-05-28 02:29:52 UTC (rev 16626)
@@ -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="cp07"/>
+ <property name="version.cp" value="cp08"/>
<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 2009-05-27 20:26:32 UTC (rev 16625)
+++ core/branches/Branch_3_2_4_SP1_CP/changelog.txt 2009-05-28 02:29:52 UTC (rev 16626)
@@ -5,6 +5,18 @@
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.cp08
+-------------------------------------------
+
+** Bug
+ * [JBPAPP-1563 / HHH-3640] - Some standard SQL functions are not implemented in
Sybase
+ * [JBPAPP-1564 / HHH-3701] - SQL function "trim" is not available in Sybase
Dialect
+ * [JBPAPP-1748 / HHH-3662] - Merging read-only entities causes
AssertionError("Merged entity does not have status set to MANAGED...")
+ * [JBPAPP-1797 / HHH-3810] - Transient entities can be inserted twice on merge
+ * [JBPAPP-1922 / HHH-2645] - Synchronization bottleneck in
EntityModeToTuplizerMapping
+ * [JBPAPP-1930 / HHH-2745] - NullPointerException when eager fetching joined
many-to-many with native SQL query
+ * [JBPAPP-2036 / HHH-3621] - Assertion failure in MigrationTest
+
Changes in version 3.2.4.sp1.cp07
-------------------------------------------
Modified: core/branches/Branch_3_2_4_SP1_CP/lib/version-dist.properties
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/lib/version-dist.properties 2009-05-27 20:26:32 UTC
(rev 16625)
+++ core/branches/Branch_3_2_4_SP1_CP/lib/version-dist.properties 2009-05-28 02:29:52 UTC
(rev 16626)
@@ -1,6 +1,6 @@
hibernate.lib=hibernate3.jar
hibernate.ignorecheck=true
-hibernate.version=3.2.4.SP1_CP07-brew
+hibernate.version=3.2.4.SP1_CP08-brew
hibernate.name=Hibernate core
hibernate.when=runtime, required
Modified: core/branches/Branch_3_2_4_SP1_CP/lib/version.properties
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/lib/version.properties 2009-05-27 20:26:32 UTC (rev
16625)
+++ core/branches/Branch_3_2_4_SP1_CP/lib/version.properties 2009-05-28 02:29:52 UTC (rev
16626)
@@ -39,7 +39,7 @@
cleanimports.name=cleanimports
cleanimports.when=buildtime
-hibernate.version=3.2.4.SP1_CP07-brew
+hibernate.version=3.2.4.SP1_CP08-brew
hibernate.name=Hibernate core
hibernate.when=runtime, required
Modified: core/branches/Branch_3_2_4_SP1_CP/readme.txt
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/readme.txt 2009-05-27 20:26:32 UTC (rev 16625)
+++ core/branches/Branch_3_2_4_SP1_CP/readme.txt 2009-05-28 02:29:52 UTC (rev 16626)
@@ -1,6 +1,6 @@
Hibernate - Relational Persistence for Idiomatic Java
=====================================================
-version 3.2.4.sp1.cp07
+version 3.2.4.sp1.cp08
Copyright © 2009 Red Hat, Inc.
@@ -37,7 +37,7 @@
"ant junitreport-dist -Dhibernate.test.validatefailureexpected=true"
(4) see build/test-reports/index.html
-Note: The unit tests are expected to have 7 failures and 10 errors in:
+Note: The unit tests are expected to have 8 failures and 10 errors in:
Ehcache tests (Ehcache is not provided in this distribution):
org.hibernate.test.cache.ehcache.EhCacheTest.testQueryCacheInvalidation
@@ -45,6 +45,7 @@
org.hibernate.test.cache.ehcache.EhCacheTest.testStaleWritesLeaveCacheConsistent
"FailureExpected" tests (known issues to be addressed in the future):
+org.hibernate.test.component.basic.ComponentTest.testComponentQueryMethodNoParensFailureExpected
org.hibernate.test.event.collection.BrokenCollectionEventTest.testUpdateDetachedParentNoChildrenToNullFailureExpected
org.hibernate.test.event.collection.BrokenCollectionEventTest.testSaveParentNullChildrenFailureExpected
org.hibernate.test.event.collection.BrokenCollectionEventTest.testUpdateParentNoChildrenToNullFailureExpected
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 2009-05-27
20:26:32 UTC (rev 16625)
+++ core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/cfg/Environment.java 2009-05-28
02:29:52 UTC (rev 16626)
@@ -153,7 +153,7 @@
*/
public final class Environment {
- public static final String VERSION = "3.2.4.sp1.cp07";
+ public static final String VERSION = "3.2.4.sp1.cp08";
/**
* <tt>ConnectionProvider</tt> implementor to use when obtaining
connections
Show replies by date