Author: mikedd
Date: Thu Apr 12 06:51:35 2007
New Revision: 527942
URL: http://svn.apache.org/viewvc?view=rev&rev=527942
Log:
updating release documentation
Modified:
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/BUILDING.txt
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/CHANGES.txt
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/RELEASE-NOTES.html
Modified:
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/BUILDING.txt
URL:
http://svn.apache.org/viewvc/incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/BUILDING.txt?view=diff&rev=527942&r1=527941&r2=527942
==============================================================================
---
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/BUILDING.txt
(original)
+++
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/BUILDING.txt
Thu Apr 12 06:51:35 2007
@@ -26,6 +26,9 @@
1. Ensure that you have Java 1.5 installed and in your path by running:
java -version
+ OpenJPA requires Java 1.5 but will not compile with Java 6. More
accurately
+ OpenJPA is not compatible with JDBC 4 which is included in Java 6. For
more
+ detail please see http://issues.apache.org/jira/browse/OPENJPA-5.
2. Install the build tool Apache Maven 2.0.4, from http://maven.apache.org/.
If it is installed correctly, typing mvn -v from the console will result
in the text "Maven version: 2.0.4"
Modified:
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/CHANGES.txt?view=diff&rev=527942&r1=527941&r2=527942
==============================================================================
--- incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/CHANGES.txt
(original)
+++ incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/CHANGES.txt
Thu Apr 12 06:51:35 2007
@@ -40,6 +40,7 @@
* [OPENJPA-122] - EntityManager does not throw exceptions after close() in
required cases
* [OPENJPA-132] - java.lang.NoSuchMethodError for entity with ID of type
java.sql.Date
* [OPENJPA-133] - Can't find non-public callback methods with superclass
or interface parameters
+ * [OPENJPA-134] - Extra unneeded SQL joins for OneToMany relationship with
fetch type EAGER
* [OPENJPA-139] - PersistenceException merging an entity with a Calendar
field.
* [OPENJPA-140] - Wrong package name in test classes
* [OPENJPA-142] - Entity name is ignored when specified in the orm.xml file
@@ -58,6 +59,7 @@
* [OPENJPA-186] - Build failure of OpenJPA sources from trunk
* [OPENJPA-202] - after invoking LRS processing in a client by calling an
@LRS annotated relationship, the next em.clear()/em.close() gets
org.apache.openjpa.persistence.InvalidStateException: You cannot transfer large
result set fields from one object or field to another
* [OPENJPA-208] - NoResultException and NonUniqueResultException are not
thrown when expected
+ * [OPENJPA-214] - Need to support floating point primary keys
** Improvements
* [OPENJPA-10] - persistence unit name should be default diagnostic
context for standard OpenJPA log impl
Modified:
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/RELEASE-NOTES.html
URL:
http://svn.apache.org/viewvc/incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/RELEASE-NOTES.html?view=diff&rev=527942&r1=527941&r2=527942
==============================================================================
---
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/RELEASE-NOTES.html
(original)
+++
incubator/openjpa/branches/0.9.7-incubating-RC1/openjpa-project/RELEASE-NOTES.html
Thu Apr 12 06:51:35 2007
@@ -5,6 +5,7 @@
<ul>
<li><a href="#Overview">Overview</a></li>
+<li><a href="#Prerequisites">Prerequisites</a></li>
<li><a href="#Documentation">Documentation</a></li>
<li><a href="#GetInvolved">Getting Involved</a></li>
<li><a href="#Bugs">Bugs</a></li>
@@ -32,6 +33,13 @@
site: <a href="http://incubator.apache.org/openjpa/">
http://incubator.apache.org/openjpa/</a>
+<h2><a name="Prerequisites"></a>Prerequisites</h2>
+<P>
+OpenJPA requires Java 1.5 but will not compile with Java 6. More accurately
+OpenJPA is not compatible with JDBC 4 which is included in Java 6. For more
+detail please see <a href="http://issues.apache.org/jira/browse/OPENJPA-5">
+http://issues.apache.org/jira/browse/OPENJPA-5</a>
+
<h2><a name="Documentation"></a>Documentation</h2>
<p>If you have questions about OpenJPA, a good source of information is the
online product manual. You can find the manual for the current release as well
@@ -107,6 +115,7 @@
<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-122'>OPENJPA-122</a>] -
EntityManager does not throw exceptions after close() in required cases</li>
<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-132'>OPENJPA-132</a>] -
java.lang.NoSuchMethodError for entity with ID of type java.sql.Date</li>
<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-133'>OPENJPA-133</a>] -
Can't find non-public callback methods with superclass or interface
parameters</li>
+<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-134'>OPENJPA-134</a>] -
Extra unneeded SQL joins for OneToMany relationship with fetch type EAGER</li>
<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-139'>OPENJPA-139</a>] -
PersistenceException merging an entity with a Calendar field. </li>
<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-140'>OPENJPA-140</a>] -
Wrong package name in test classes</li>
<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-142'>OPENJPA-142</a>] -
Entity name is ignored when specified in the orm.xml file</li>
@@ -126,6 +135,7 @@
</ul>
<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-202'>OPENJPA-202</a>] -
after invoking LRS processing in a client by calling an @LRS annotated
relationship, the next em.clear()/em.close() gets
org.apache.openjpa.persistence.InvalidStateException: You cannot transfer large
result set fields from one object or field to another</li>
<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-208'>OPENJPA-208</a>] -
NoResultException and NonUniqueResultException are not thrown when expected</li>
+<li>[<a
href='https://issues.apache.org/jira/browse/OPENJPA-214'>OPENJPA-214</a>] -
Need to support floating point primary keys</li>
</ul>
<h2><a name="Improvements"</a>Improvements</h2>