mirror of https://github.com/apache/openjpa.git
merge in additional issues resolved since 2.0.0 RC1
git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/2.0.x@935062 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4b6258915e
commit
a9192498ed
|
@ -172,6 +172,7 @@ Sub-task
|
|||
|
||||
Bug
|
||||
---
|
||||
* [OPENJPA-1091] - ReverseMappingTool fails for openjpa-examples/reversemapping sample
|
||||
* [OPENJPA-1510] - Documentation corrections
|
||||
* [OPENJPA-1550] - When batchLimit=-1 or >1 and an exception is caused, the params and failedObject are missing from the resultant exception.
|
||||
* [OPENJPA-1559] - DataCacheManager initialization isn't thread safe.
|
||||
|
@ -180,11 +181,14 @@ Bug
|
|||
* [OPENJPA-1599] - Cache mode properties passes in to em.find and lock methods are not transient
|
||||
* [OPENJPA-1602] - Query with lock mode set to PESSIMISTIC_WRITE does not have for update clause attached to the sql when runs twice
|
||||
* [OPENJPA-1604] - Setting PessimisticLockManager fails to append "for update clause" to the select statement
|
||||
* [OPENJPA-1605] - ReverseMappingTool (SchemaGenerator) bug
|
||||
* [OPENJPA-1608] - PESSIMISTIC_WRITE is not working in Informix
|
||||
* [OPENJPA-1609] - PessimisticLockException instead of LockTimeoutException thrown on DB2V9 for ZOS
|
||||
* [OPENJPA-1611] - Wrong PersistentAttributeType returned for @Embedded types
|
||||
* [OPENJPA-1618] - Exception during factory creation due to javax.persistence.transactionType
|
||||
* [OPENJPA-1625] - Inconsistent creation of StateManagerImpl in BrokerImpl
|
||||
* [OPENJPA-1630] - NPE in MetaDataRepository when preloading is enabled under heavy stress.
|
||||
* [OPENJPA-1631] - MetaDataRepository preload doesn't load JAXB meta data
|
||||
|
||||
Improvement
|
||||
-----------
|
||||
|
@ -192,6 +196,7 @@ Improvement
|
|||
* [OPENJPA-1545] - Add new Detach processing
|
||||
* [OPENJPA-1603] - Decouple the QueryCache from the DataCache
|
||||
* [OPENJPA-1622] - Invoking MetaModel generator
|
||||
* [OPENJPA-1628] - Output control for generated canonical metamodel source code
|
||||
|
||||
Task
|
||||
----
|
||||
|
|
|
@ -240,6 +240,8 @@ in each release of OpenJPA.</P>
|
|||
|
||||
<h4>Bug</h4>
|
||||
<ul>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1091'>OPENJPA-1091</a>] - ReverseMappingTool fails for openjpa-examples/reversemapping sample
|
||||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1510'>OPENJPA-1510</a>] - Documentation corrections
|
||||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1550'>OPENJPA-1550</a>] - When batchLimit=-1 or >1 and an exception is caused, the params and failedObject are missing from the resultant exception.
|
||||
|
@ -256,6 +258,8 @@ in each release of OpenJPA.</P>
|
|||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1604'>OPENJPA-1604</a>] - Setting PessimisticLockManager fails to append "for update clause" to the select statement
|
||||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1605'>OPENJPA-1605</a>] - ReverseMappingTool (SchemaGenerator) bug
|
||||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1608'>OPENJPA-1608</a>] - PESSIMISTIC_WRITE is not working in Informix
|
||||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1609'>OPENJPA-1609</a>] - PessimisticLockException instead of LockTimeoutException thrown on DB2V9 for ZOS
|
||||
|
@ -266,6 +270,10 @@ in each release of OpenJPA.</P>
|
|||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1625'>OPENJPA-1625</a>] - Inconsistent creation of StateManagerImpl in BrokerImpl
|
||||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1630'>OPENJPA-1630</a>] - NPE in MetaDataRepository when preloading is enabled under heavy stress.
|
||||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1631'>OPENJPA-1631</a>] - MetaDataRepository preload doesn't load JAXB meta data
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h4>Improvement</h4>
|
||||
|
@ -278,6 +286,8 @@ in each release of OpenJPA.</P>
|
|||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1622'>OPENJPA-1622</a>] - Invoking MetaModel generator
|
||||
</li>
|
||||
<li>[<a href='https://issues.apache.org/jira/browse/OPENJPA-1628'>OPENJPA-1628</a>] - Output control for generated canonical metamodel source code
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h4>Task</h4>
|
||||
|
|
Loading…
Reference in New Issue