OK this is fixed now. Sorry guys.

Max Rydahl Andersen wrote:


If we release now native queries using return-collection and return-join will *not* work.

emmanuel, what breaks in your end if I roll your "fix" back ?

/max

------- Forwarded message -------
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc:
Subject: [Hibernate-commits] Hibernate3 build.xml,1.68,1.69 changelog.txt,1.67,1.68 readme.txt,1.26,1.27
Date: Fri, 13 Jan 2006 22:05:02 +0100

Update of /cvsroot/hibernate/Hibernate3
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10174

Modified Files:
    build.xml changelog.txt readme.txt
Log Message:
prep for 3.1.1

Index: build.xml
===================================================================
RCS file: /cvsroot/hibernate/Hibernate3/build.xml,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -d -r1.68 -r1.69
--- build.xml    13 Jan 2006 15:58:26 -0000    1.68
+++ build.xml    13 Jan 2006 21:04:06 -0000    1.69
@@ -16,10 +16,12 @@
     <property name="Name" value="Hibernate"/>
     <property name="name" value="hibernate"/>
     <property name="name2" value="hibernate3"/>
-    <property name="version" value="3.1"/>
-    <property name="patchlevel" value=""/>
-    <property name="fullversion" value="${version}${patchlevel}"/>
-    <property name="fullname" value="${name}-${fullversion}"/>
+    <property name="version.major" value="3"/>
+    <property name="version.minor" value="1"/>
+    <property name="version.patchlevel" value="1"/>
+ <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}"/>

     <!-- set global properties for this build -->
     <property name="src.dir" value="src"/>
@@ -36,7 +38,7 @@
     <property name="test.out.dir" value="testout"/>
     <property name="instrumenttest.out.dir" value="instrumenttestout"/>
     <property name="clover.out.dir" value="cloverout"/>
-    <property name="dist.dir" value="../${name}-${version}"/>
+ <property name="dist.dir" value="../${name}-${version.sansPatchLevel}"/>
     <property name="doc.dir" value="doc"/>
     <property name="doc.api.dir" value="${doc.dir}/api"/>
     <property name="doc.ref.dir" value="${doc.dir}/reference"/>
@@ -149,7 +151,7 @@
         <tstamp>
<format property="subversion" pattern="yyyy-MM-dd hh:mm:ss"/>
         </tstamp>
-        <echo message="Build ${Name}-${version} (${subversion})"/>
+        <echo message="Build ${Name}-${version.full} (${subversion})"/>

         <mkdir dir="${classes.dir}"/>
         <copy todir="${classes.dir}">
@@ -336,7 +338,7 @@
             <include name="org/hibernate/**/*.class"/>
             <patternset refid="jar.files"/>
             <manifest>
- <attribute name="Hibernate-Version" value="${version}.${patchlevel}"/> + <attribute name="Hibernate-Version" value="${version.full}"/>
             </manifest>
         </jar>
     </target>
@@ -356,7 +358,7 @@
             version="true"
             windowtitle="${Name} API Documentation"
             Overview="${doc.api.dir}/package.html"
-            doctitle="${Name} API Documentation (${fullversion})"
+            doctitle="${Name} API Documentation (${version.full})"
             stylesheetfile="${doc.api.dir}/jdstyle.css"
             link="${javadoc}">

@@ -462,11 +464,11 @@
depends="splash,versioncheck,jar,javadoc,copysource,copylib,extras,antlr.bnf,refdoc"
         description="Build everything and package">
         <zip zipfile="${fullname}.zip">
-            <zipfileset prefix="${name}-${version}" dir="${dist.dir}"/>
+ <zipfileset prefix="${name}-${version.sansPatchLevel}" dir="${dist.dir}"/>
         </zip>
         <checksum file="${fullname}.zip"/>
         <tar tarfile="${fullname}.tar">
-            <tarfileset prefix="${name}-${version}" dir="${dist.dir}"/>
+ <tarfileset prefix="${name}-${version.sansPatchLevel}" dir="${dist.dir}"/>
         </tar>
         <gzip src="${fullname}.tar" zipfile="${fullname}.tar.gz"/>
         <delete file="${dist.dir}.tar"/>
@@ -775,7 +777,7 @@
            <jvmarg line="-Xmx512M"/>
            <arg line="-blind"/>
            <arg line="-savehtml hql-bnf.html"/>
-           <arg line="-savehtmltitle Hibernate ${version} HQL"/>
+           <arg line="-savehtmltitle Hibernate ${version.full} HQL"/>
            <arg line="${bnf.grammar}"/>
        </java>
     </target>

Index: changelog.txt
===================================================================
RCS file: /cvsroot/hibernate/Hibernate3/changelog.txt,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- changelog.txt    12 Dec 2005 14:56:05 -0000    1.67
+++ changelog.txt    13 Jan 2006 21:04:06 -0000    1.68
@@ -5,6 +5,35 @@
refer to the particular case on JIRA using the issue tracking number to learn
 more about each case.

+Changes in version 3.1.1 (01.13.2006)
+-------------------------------------------
+
+** Bug
+    * [HHH-853] - DML-style HQL queries and associations
+ * [HHH-1281] - FORWARD_ONLY ScrollableResults#next() throw GenericJDBCException + * [HHH-1286] - Set entity in HQL query without prefix -> incorrect SQL + * [HHH-1308] - Session.createFilter(...).iterate() results in bogus column names for result set extraction + * [HHH-1314] - float/double literals not sent to the database correctly + * [HHH-1316] - SchemaUpdate : java.sql.SQLException: You cannot commit during a managed transaction! + * [HHH-1328] - org.hibernate.util.SimpleMRUCache keeps a soft reference to the cache key, so cached values get collected prematurely + * [HHH-1336] - ForeignGenerator does not handle transient entities with an entity-name properly + * [HHH-1337] - Mapped <component> generated column names incorrect with ImprovedNamingStrategy + * [HHH-1349] - HQL delete statement problem due to oracle lacking table aliases in delete clause + * [HHH-1361] - creating temporary table for bulk delete will commit current transaction in managed environment such as J2EE
+
+** Improvement
+ * [HHH-1019] - Native SQL return-property mapping doesn't support dot-syntax in return-property for components
+    * [HHH-1290] - Defensive checking of session status
+    * [HHH-1302] - query.getReturnTypes inconsistent
+ * [HHH-1304] - better handling of borrowed connections in non-ON_CLOSE release semantics
+    * [HHH-1309] - schemaupdate does not handle TableHiLoGenerator
+ * [HHH-1339] - empty property name in mapping file gives imcomprehensible error message
+    * [HHH-1344] - ANSI-SQL trim function for SQLServer
+    * [HHH-1345] - ANSI-SQL mod function for SQLServer
+    * [HHH-1346] - ANSI-SQL bit_length function for SQLServer
+    * [HHH-1351] - <return-scalar name="blah"/> should be possible
+ * [HHH-1360] - set autodiscovery flag for SQLQueries when resultsetmappings are used
+

 Changes in version 3.1  (12.12.2005)
 -------------------------------------------

Index: readme.txt
===================================================================
RCS file: /cvsroot/hibernate/Hibernate3/readme.txt,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- readme.txt    12 Dec 2005 14:03:09 -0000    1.26
+++ readme.txt    13 Jan 2006 21:04:06 -0000    1.27
@@ -1,6 +1,6 @@
 Hibernate - Relational Persistence for Idiomatic Java
 =====================================================
-version 3.1, Dec 12, 2005
+version 3.1.1, Jan 13, 2006

 Instructions
 ------------



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
hibernate-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hibernate-commits






-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
hibernate-devel mailing list
hibernate-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hibernate-devel

Reply via email to