latest changes.txt info from ea2 branch

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@781419 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2009-06-03 15:04:02 +00:00
parent 4b45efa828
commit 1765ccbdd1
1 changed files with 281 additions and 49 deletions

View File

@ -1,38 +1,69 @@
Release Notes for OpenJPA OpenJPA 2.0.0 Early Access 2
----------------------------
Content
-------
* Overview * Overview
* License * License
* Notices
* Prerequisites * Prerequisites
* Documentation * Documentation
* Getting Involved * Getting Involved
* Included Changes
* Sub-tasks * Sub-tasks
* Bugs * Bugs
* Improvements * Improvements
* New Features * New Features
* Test * Test
Overview Overview
--------
This distribution of Apache OpenJPA builds upon the prior releases which
provided a feature-rich implementation of the Java Persistence API (JPA 1.0)
part of Java Community Process JSR-220 (Enterprise JavaBeans 3.0) by
includng some Early Access functionality from the Java Community Process
JSR-317 (JPA 2.0) public draft on 03/13/2009 and is being made available
for testing and evaluation purposes only.
These notes describe the difference between OpenJPA release 2.0.0 Milestone Some of the key features included in this distribution:
1 and the preceding release, 1.2.0. * JPA 2.0 API and persistence and orm schemas
* Support for nested embeddables and relationships within embeddables
* Support for collections of embeddables and basic types
* A programmatic query construction API based upon the 10/2008 revision of
the JSR-317 specification
* A standardized Level 2 cache interface
* Enhanced map collection support
* Support for standard javax.persistence configuration properties
* A new prepared query cache for the caching of the SQL underlying JPQL
and find queries
* Support for derived identities
* The ability to specify an order column on ordered collections
* Significant enhancements to JPQL
* Automatic orphan removal
* Support for individual entity detachment, including the ability to
cascade
* Methods to retrieve active and all supported properties on the entity
manager and entity manager factory
* New lock modes, including pessimistic locking on a per entity manager
and query method level
* Support for query and lock timeout hints on a per entity manager and
query method level
* Specification of explicit persistent access type on persistent classes
and attributes
OpenJPA is a feature-rich implementation of the persistence part of Java This early access distribution is based upon the contributions provided in
Community Process JSR-220 (Enterprise JavaBeans 3.0), which is known as development iterations 1 through 7, as defined in the JPA 2.0 Roadmap at:
the Java Persistence API (JPA). OpenJPA can be used as a stand-alone POJO
persistence layer, or it can be integrated into any EJB3.0 compliant
container and many lightweight frameworks. This release of OpenJPA is 100%
compliant with the JPA specification.
This release of OpenJPA also includes some functionality from the Java The JPA 2.0 Roadmap contains a complete list of implemented features and
Community Process JSR-317 (JPA 2.0). For the complete list of supported feature summaries, including what is on deck for future iterations.
features please refer to the OpenJPA online issue tracker:
http://issues.apache.org/jira/browse/OPENJPA.
Additional information on the OpenJPA project may be found at the project Additional information on the OpenJPA project may be found at the project
web site: http://openjpa.apache.org web site: http://openjpa.apache.org
License
License
-------
Licensed to the Apache Software Foundation (ASF) under one or more Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with this contributor license agreements. See the NOTICE file distributed with this
work for additional information regarding copyright ownership. The ASF work for additional information regarding copyright ownership. The ASF
@ -48,16 +79,30 @@ License
License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
under the License. under the License.
The license may also be found in LICENSE.txt which is included in each The license may also be found in LICENSE.txt included in each assembly.
release of OpenJPA.
Notices
-------
Copyright 2006-2009 Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
This is an implementation of an early-draft specification developed under the Java Community Process (JCP) and is made available for testing and evaluation purposes only. The code is not compatible with any specification of the JCP.
The complete list of notices can be found in NOTICE.txt included in each
assembly.
Prerequisites Prerequisites
-------------
In normal usage, OpenJPA requires Java 5 or higher and a relational In normal usage, OpenJPA requires Java 5 or higher and a relational
database of some sort. database of some sort.
Documentation
Documentation
-------------
If you have questions about OpenJPA, a good source of information is the 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 online product manual. You can find the manual for the current release as
well as older releases of OpenJPA at well as older releases of OpenJPA at
@ -68,8 +113,9 @@ Documentation
Information on all of the OpenJPA mailing lists may be found here: Information on all of the OpenJPA mailing lists may be found here:
http://openjpa.apache.org/mailing-lists.html http://openjpa.apache.org/mailing-lists.html
Getting Involved
Getting Involved
----------------
The Apache OpenJPA project is being built by the open source community for The Apache OpenJPA project is being built by the open source community for
the open source community - we welcome your input and contributions! the open source community - we welcome your input and contributions!
@ -86,10 +132,12 @@ Getting Involved
freenode.net. freenode.net.
* Bugs and other issues can be posted on the project JIRA. * Bugs and other issues can be posted on the project JIRA.
OpenJPA 2.0.0 Milestone 1 Release Notes
Included Changes
----------------
Sub-task Sub-task
--------
* [OPENJPA-722] - persist - clear - merge scenario doesn't work * [OPENJPA-722] - persist - clear - merge scenario doesn't work
* [OPENJPA-744] - Extra SQL on LAZY/EAGER ManyToOne relation * [OPENJPA-744] - Extra SQL on LAZY/EAGER ManyToOne relation
* [OPENJPA-754] - Un-scheduled pre/postUpdate callbacks from persist. * [OPENJPA-754] - Un-scheduled pre/postUpdate callbacks from persist.
@ -103,14 +151,76 @@ Sub-task
* [OPENJPA-809] - Support JPA 2.0 Cache Interface * [OPENJPA-809] - Support JPA 2.0 Cache Interface
* [OPENJPA-823] - Add JPA 2.0 schemas and appropriately validate for version * [OPENJPA-823] - Add JPA 2.0 schemas and appropriately validate for version
* [OPENJPA-837] - OpenJPA 2.0: Update OpenJPA documentation with new persistence schemas * [OPENJPA-837] - OpenJPA 2.0: Update OpenJPA documentation with new persistence schemas
* [OPENJPA-849] - Add metadata-type getter methods to EntityManager
* [OPENJPA-850] - Support equivalent names for plug-in value * [OPENJPA-850] - Support equivalent names for plug-in value
* [OPENJPA-851] - Support for enhanced map collection (and corresponding annotations) * [OPENJPA-851] - Support for enhanced map collection (and corresponding annotations)
* [OPENJPA-855] - JPA2 Query support for Index function * [OPENJPA-855] - JPA2 Query support for Index function
* [OPENJPA-856] - JPA2 Query support for entity type expressions * [OPENJPA-856] - JPA2 Query support for entity type expressions
* [OPENJPA-861] - Update the manual for XML column support for MySQL * [OPENJPA-861] - Update the manual for XML column support for MySQL
* [OPENJPA-865] - JPA2 Query support for collection-valued input parameters in IN Expression predicate
* [OPENJPA-869] - Support @OrderColumn annotation and XML-based definition - phase 2
* [OPENJPA-870] - Support orphanRemoval attribute on relationships
* [OPENJPA-871] - Support derived identity
* [OPENJPA-878] - Support default query hint for query timeout
* [OPENJPA-879] - JPA2 Query support for general and qualified identification variable
* [OPENJPA-880] - Use maven-remote-resources-plugin to generate required legal files
* [OPENJPA-885] - Support clear methods on EntityManager, including new CascadeType.CLEAR
* [OPENJPA-891] - JPA2 LockTypeMode Support
* [OPENJPA-903] - org.apache.openjpa.persistence.exception.TestException hangs when run using PostgreSQL 8.3 database
* [OPENJPA-905] - org.apache.openjpa.persistence.kernel.TestProxies2
* [OPENJPA-906] - org.apache.openjpa.persistence.jpql.expressions.TestEntityTypeExpression
* [OPENJPA-907] - org.apache.openjpa.persistence.jdbc.update.TestParentChild
* [OPENJPA-908] - org.apache.openjpa.persistence.annotations.TestOneToOne
* [OPENJPA-926] - Support explicit access types including @Access annotation and AccessType enum and XML
* [OPENJPA-930] - @AttributeOverride updates
* [OPENJPA-931] - Support derived identity (spec 2.4.1.2 Ex 5(a), 6 (a))
* [OPENJPA-937] - @AssociationOverride updates
* [OPENJPA-946] - Oracle create table(s) exceptions
* [OPENJPA-957] - Support lock timeout hint on applicable methods
* [OPENJPA-960] - Support unwrap methods on EntityManager and Query interfaces
* [OPENJPA-961] - Support projection of element collection from a JPQL query
* [OPENJPA-963] - Add query timeout tests for PU and Map properties
* [OPENJPA-964] - Finish updating sql-error-state- codes.xml for query timeout support on other DBs
* [OPENJPA-967] - JPA2 Query support for selction of KEY, VALUE, ENTRY of a Map value
* [OPENJPA-972] - Support standard provider properties in PersistenceProvider class
* [OPENJPA-978] - Allow third argument of JPQL SUBSTRING function to be optional
* [OPENJPA-990] - setHint should return IllegalArgumentException for invalid query/lock timeout values
* [OPENJPA-1012] - Test failures in TestManagedInterface with @ManagedInterface annotation when using JDK6
* [OPENJPA-1023] - Message files contain windows EOL characters
* [OPENJPA-1024] - JPA2 Query scalar expression in subquery
* [OPENJPA-1026] - Ensure newlines at end of fie
* [OPENJPA-1027] - Document changes for detach methods
* [OPENJPA-1032] - Revert OpenJPAQuery.getPositionalParameters method signature back to 1.x signature
* [OPENJPA-1033] - Update supported database and driver matrix
* [OPENJPA-1034] - Removal of OrderColumn attributes per latest spec draft
* [OPENJPA-1035] - JPA2 Query allow map key/value path as argument of scalar functions
* [OPENJPA-1055] - Added MapKeyEnumerated and MapKeyTemporal annotations and XML.
* [OPENJPA-1062] - Include OSGi bundle metadata
* [OPENJPA-1064] - JPA2 Query comparisons over instances of embeddable class are not supported
* [OPENJPA-1068] - Support Bean Validation: Entity validation upon lifecycle events
* [OPENJPA-1069] - OrderBy annotation applied to an element collection of basic type doesn't require property or field name
* [OPENJPA-1076] - PersistenceProviderResolver interface and PersistenceProviderResolverHolder class
* [OPENJPA-1077] - Validation-mode element support added to persistence.xml and to createEMF properties Map
* [OPENJPA-1078] - Cache mode elements added to persistence.xml
* [OPENJPA-1082] - Validation target groups via persistence.xml or createEMF properties Map
* [OPENJPA-1090] - Oracle failures due to the following warning "This database dictionary "Oracle" does not support auto-assigned column values. The column "pid" may not behave as desired."
* [OPENJPA-1094] - JPA2 Query support for KEY appear in subquery
* [OPENJPA-1098] - JPA2 Query support subselect_identification_variable
* [OPENJPA-1101] - OSGi Integration tests
* [OPENJPA-1102] - Support application/container provided ValidatorFactory
* [OPENJPA-1103] - Remove early-access disclaimer from the NOTICE files once the spec is released
* [OPENJPA-1106] - Integration tests for Bean Validation providers
* [OPENJPA-1111] - Validation mode of callback should cause a PersistenceException when no provider is available
* [OPENJPA-1113] - Reflection class performance improvement
* [OPENJPA-1114] - Bean Validation APIs should be an optional runtime dependency
* [OPENJPA-1115] - Finish support for delimited identifiers
Bug Bug
---
* [OPENJPA-207] - failure when composite ID has another composite ID as a field
* [OPENJPA-218] - pcNewInstance and ApplicationId
* [OPENJPA-377] - RuntimeUnenhancedClasses support can go into a "half baked" state
* [OPENJPA-466] - Primary key constraint violated using (Oracle) sequence to generate ID in multithreaded app
* [OPENJPA-557] - Primary key sequences broken with postgres schemas * [OPENJPA-557] - Primary key sequences broken with postgres schemas
* [OPENJPA-580] - Need a better algorithm to find DBDictionary classname in DBDictionaryFactory * [OPENJPA-580] - Need a better algorithm to find DBDictionary classname in DBDictionaryFactory
* [OPENJPA-732] - Updates to entities via Lifecycle callback methods * [OPENJPA-732] - Updates to entities via Lifecycle callback methods
@ -127,22 +237,78 @@ Bug
* [OPENJPA-815] - Exception is thrown when retrieving an entity which contains an embeddable and the embeddable contains a toMany relation * [OPENJPA-815] - Exception is thrown when retrieving an entity which contains an embeddable and the embeddable contains a toMany relation
* [OPENJPA-818] - TCK module should use Geronimo JPA 2.0 EA jar * [OPENJPA-818] - TCK module should use Geronimo JPA 2.0 EA jar
* [OPENJPA-819] - NPE when no metadata is defined for a persistent class * [OPENJPA-819] - NPE when no metadata is defined for a persistent class
* [OPENJPA-828] - Externalizer fails with ClassCastException with runtime enhancement
* [OPENJPA-834] - State field mapped to XML column has incorrect value when loaded from database * [OPENJPA-834] - State field mapped to XML column has incorrect value when loaded from database
* [OPENJPA-835] - Loading nested toMany EAGER relation resuled in PersistenceException * [OPENJPA-835] - Loading nested toMany EAGER relation resuled in PersistenceException
* [OPENJPA-836] - after em.clear the datacache is inconsistent * [OPENJPA-836] - after em.clear the datacache is inconsistent
* [OPENJPA-838] - fix parameter setting problem when QuerySQLCache is on * [OPENJPA-838] - fix parameter setting problem when QuerySQLCache is on
* [OPENJPA-843] - Unnecessary version update on inverse-side of a 1-m relationship * [OPENJPA-843] - Unnecessary version update on inverse-side of a 1-m relationship
* [OPENJPA-847] - Retrieving database generated keys gets never enabled
* [OPENJPA-853] - Informix cursor not open problem if synchronizeMapping set true * [OPENJPA-853] - Informix cursor not open problem if synchronizeMapping set true
* [OPENJPA-863] - Unexpected mere-cascade behavior when cascade.all/merge specified on both sides of relationships !!! * [OPENJPA-863] - Unexpected mere-cascade behavior when cascade.all/merge specified on both sides of relationships !!!
* [OPENJPA-864] - Subquery problems with SYNTAX_DATABASE (Oracle) * [OPENJPA-864] - Subquery problems with SYNTAX_DATABASE (Oracle)
* [OPENJPA-866] - DBDictionary.maxTableNameLength is not checked when using SynchronizeMappings
* [OPENJPA-872] - Compound custom id in bidirectional many-to-one * [OPENJPA-872] - Compound custom id in bidirectional many-to-one
* [OPENJPA-873] - @MappedSuperClass Cause Null Pointer Exception in Class With IdClass * [OPENJPA-873] - @MappedSuperClass Cause Null Pointer Exception in Class With IdClass
* [OPENJPA-883] - Documentation is out of date for some MySQLDictionary properties
* [OPENJPA-884] - Logging oversight in DB2Dictionary
* [OPENJPA-886] - Certain query failing after svn:739123
* [OPENJPA-887] - Assertion oversight in TestLibService
* [OPENJPA-890] - Typos and inconsistent method signature styles in the user manual
* [OPENJPA-892] - Incorrect package name of javax.jdo for Query class image
* [OPENJPA-896] - Several source files include Windows EoL chars
* [OPENJPA-898] - hints don't work for NamedNativeQuery
* [OPENJPA-912] - Potential NPE in setInverseRelation
* [OPENJPA-913] - A deadlock issue happens when DirtyListener is used
* [OPENJPA-916] - DistributedTemplate is incorrectly setting some attributes on the statements
* [OPENJPA-917] - stored procedures throw InvalidStateException when using getSingleResult() or getResultList()
* [OPENJPA-919] - JUnit for Bi-directional OneToOne with null relationships
* [OPENJPA-922] - setByteArrayInputStream being used in stead of setBytes
* [OPENJPA-923] - Update documentation for properly configuring Oracle, PostgreSQL, and DB2
* [OPENJPA-925] - Bidirectional OneToOne relation incorrectly set in loadEagerJoin
* [OPENJPA-927] - Fix definition of javax.persistence.query.timeout property
* [OPENJPA-928] - getSupportedProperties() shows wsjpa property by default
* [OPENJPA-933] - Database version detection in MySQLDictionary is not reliable
* [OPENJPA-947] - Overly verbose TestCases
* [OPENJPA-951] - Javadoc jar file does not contain legal files
* [OPENJPA-954] - openjpa-slice build fails due to tests relying on openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/test/AllowFailure.java
* [OPENJPA-955] - MethodQL parameter passing broken
* [OPENJPA-965] - Open up FinderCacheImpl for non-JDBC or JDBC-like implementation of preparing statement/query execution
* [OPENJPA-970] - SchemaToolTask does not have "dropTables" argument
* [OPENJPA-973] - Allow DB2 JCC driver to work with Informix database
* [OPENJPA-974] - Docs: Add new Exception types
* [OPENJPA-992] - Failed to throw EntityExistException on duplicated persist in DB2
* [OPENJPA-999] - Missing sql-warning in the localizer.properties
* [OPENJPA-1002] - Select range doesn't work on Oracle JDBC driver
* [OPENJPA-1004] - Derived Identity fails when parent id is auto-generated
* [OPENJPA-1006] - Disabling QueryCaching at runtime does not work
* [OPENJPA-1028] - ClassCastException during findBy when embeddable is involved
* [OPENJPA-1029] - SQLServerDictionary causes NumberFormatException if MS SQL Server JDBC driver is used
* [OPENJPA-1031] - Update docs that refer to OpenJPAEntityManager.getExtent(..)
* [OPENJPA-1041] - OrderBy on nested embeddables is not working
* [OPENJPA-1046] - Unique Constraint on MappedSupperClass causes NullPointerException
* [OPENJPA-1047] - Unique Constraint on sibling classes causes name conflict
* [OPENJPA-1049] - Query against a MappedSuperclass is not supported
* [OPENJPA-1051] - [patch] Mappingtool doesn't check name conflicts if MappingDefaultsImpl is called with multiple columns.
* [OPENJPA-1053] - Updating an entity by setting an embeddable to it does not work properly if the embeddable has a cascade delete relationship with another entity
* [OPENJPA-1054] - Large result sets do not work with MySQL
* [OPENJPA-1057] - Foreign keys are not properly set for ConstraintUpdateManager to determine the correct order of the sql
* [OPENJPA-1058] - Duplicate rows in DB when UniqueConstraint set
* [OPENJPA-1060] - Attempting to returning a list over RMI/IIOP results in serialization exception
* [OPENJPA-1067] - SetQueryTimeout(x) where x != 0 causes SQLException with DB2 on Z/OS
* [OPENJPA-1072] - Nested embeddable with a relationship to an Entity with a generated id doesn't persist the relationship
* [OPENJPA-1088] - Build updates for openjpa-examples and openjpa-integration/examples
* [OPENJPA-1091] - ReverseMappingTool fails for openjpa-examples/reversemapping sample
* [OPENJPA-1099] - <xmp> tag in Javadoc comments causes Javadoc corruption
Improvement ** Improvement
* [OPENJPA-213] - @Column with precision and scale should result in NUMERIC(precision, scale)
* [OPENJPA-736] - Combine insert and select SQL together for generated Id strategy=GenerationType.IDENTITY
* [OPENJPA-742] - Add line number and column number to QueryMetaData * [OPENJPA-742] - Add line number and column number to QueryMetaData
* [OPENJPA-752] - ProxySetupStateManager.setProxyData routing through PersistanceCapable caused "PersistenceException: null" * [OPENJPA-752] - ProxySetupStateManager.setProxyData routing through PersistanceCapable caused "PersistenceException: null"
* [OPENJPA-772] - Use apache pom as parent * [OPENJPA-772] - Proper maven pluginManagement and use ianal-maven-plugin for enforcing legal files
* [OPENJPA-775] - Some Firedird setup tricks
* [OPENJPA-776] - Firebird 2 dictionary which supports sequences
* [OPENJPA-778] - cleaning up build for openjpa-kernel * [OPENJPA-778] - cleaning up build for openjpa-kernel
* [OPENJPA-779] - patch for eclipse .project and .classpath files... * [OPENJPA-779] - patch for eclipse .project and .classpath files...
* [OPENJPA-780] - code review for DistributedStoreManager * [OPENJPA-780] - code review for DistributedStoreManager
@ -151,26 +317,92 @@ Improvement
* [OPENJPA-784] - more pom.xml dependency cleanup * [OPENJPA-784] - more pom.xml dependency cleanup
* [OPENJPA-817] - Order of inserts lost when using ConstraintUpdateManager * [OPENJPA-817] - Order of inserts lost when using ConstraintUpdateManager
* [OPENJPA-854] - Testcases should not specify log level * [OPENJPA-854] - Testcases should not specify log level
* [OPENJPA-858] - Allow postPersist be invoked immediately after persist()
* [OPENJPA-876] - Better test profiles for proprietary databases (DB2, Oracle) and continuous build
* [OPENJPA-881] - Enable connection pooling for testcases.
* [OPENJPA-882] - Upgrade to latest Geronimo Spec releases
* [OPENJPA-901] - Use hosted JAI artifacts as the default for the docbook build
* [OPENJPA-910] - Allow multiple keys for the same property to be specified at different levels
* [OPENJPA-949] - Allow override of Surefire test excludes from cmdline
* [OPENJPA-952] - Utilize Sun JDK's Attach API to dynamically load the OpenJPA enhancer agent
* [OPENJPA-968] - Change in default detach() behavior for JPA 2.0
* [OPENJPA-975] - Oracle needs ability to not have an escape character for search strings.
* [OPENJPA-983] - FirebirdDictionary improvements
* [OPENJPA-988] - Refactor JPA2/MixedLockManager to conform architectual module dependency
* [OPENJPA-1000] - Consistent usage of serialVersionUID
* [OPENJPA-1022] - Support distinct LockModeType.READ/OPTIMISTIC & WRITE/OPTIMISTIC_FORCE_INCREMENT
* [OPENJPA-1038] - Enhancer java.lang.StackOverflowError exception when circular dependencies are encountered within embeddables
* [OPENJPA-1045] - Add opt-in and opt-out configuration for L2 DataCache
* [OPENJPA-1056] - Add support for Sybase in the query timeout tests
* [OPENJPA-1063] - Create a new openjpa-all artifact to include runtime depends
* [OPENJPA-1066] - Generated ID starting with 0 can cause unexpected results
New Feature New Feature
-----------
* [OPENJPA-723] - Feature request for PostgreSQL XML Column Mapping
* [OPENJPA-767] - Better OSGi Integration
* [OPENJPA-773] - Upgrade to JPA 2 * [OPENJPA-773] - Upgrade to JPA 2
* [OPENJPA-800] - OpenJPA 2.0 iteration 1 primary task * [OPENJPA-800] - OpenJPA 2.0 iteration 1 primary task
* [OPENJPA-807] - OpenJPA 2.0 iteration 2 primary task * [OPENJPA-807] - OpenJPA 2.0 iteration 2 primary task
* [OPENJPA-808] - OpenJPA 2.0 iteration 3 primary task
* [OPENJPA-831] - OpenJPA 2.0 iteration 1.5 (holiday) primary task * [OPENJPA-831] - OpenJPA 2.0 iteration 1.5 (holiday) primary task
* [OPENJPA-846] - XML column support for MySQL * [OPENJPA-846] - XML column support for MySQL
* [OPENJPA-875] - OpenJPA 2.0 iteration 4 primary task
* [OPENJPA-918] - Stored procedures not handling returns properly
* [OPENJPA-956] - OpenJPA 2.0 iteration 5 primary task
* [OPENJPA-966] - Support Replication-enabled MySQL
* [OPENJPA-1005] - Add PersistenceXMLSchemaVersion(); support
* [OPENJPA-1007] - OpenJPA 2.0 iteration 6 primary task
Test Test
----
* [OPENJPA-247] - new-delete-new-find doesn't work
* [OPENJPA-833] - An improved test case for XML column mapping * [OPENJPA-833] - An improved test case for XML column mapping
* [OPENJPA-998] - Add @Ignore annotation support for testcases
* [OPENJPA-1015] - Enforce 80-column line width for source code
* [OPENJPA-1071] - Derby test suit speed-up
* [OPENJPA-1073] - Upgrade to latest maven-surefire-plugin
* [OPENJPA-1092] - enable test case for jpql
Change log for previous releases :
OpenJPA 1.2.0 Changes: Included Changes in prior Milestone 1
http://svn.apache.org/viewvc/openjpa/tags/1.2.0/openjpa-project/CHANGES.txt?view=markup -------------------------------------
OpenJPA 1.1.0 Changes: Sub-task
http://svn.apache.org/viewvc/openjpa/tags/1.1.0/openjpa-project/CHANGES.txt?view=markup --------
* [OPENJPA-765] - Check for insertable or updateable before checking value for null
* [OPENJPA-857] - Detect and store JPA version
* [OPENJPA-899] - Add support for JPA2.0 method Query.getHints()
* [OPENJPA-900] - Add support for JPA2.0 method Query.getSupportedHints()
* [OPENJPA-958] - Support lock mode on Named Query
* [OPENJPA-1013] - Build strictly-typed Criteria API
Bug
---
* [OPENJPA-828] - Externalizer fails with ClassCastException with runtime enhancement
* [OPENJPA-886] - Certain query failing after svn:739123
* [OPENJPA-955] - MethodQL parameter passing broken
* [OPENJPA-1039] - Dynamic query predicates must not treat AND OR operators as associative
Improvement
-----------
* [OPENJPA-703] - Cache ResultObjectProvider data to improve query performance
* [OPENJPA-858] - Allow postPersist be invoked immediately after persist()
* [OPENJPA-968] - Change in default detach() behavior for JPA 2.0
New Feature
-----------
* [OPENJPA-800] - OpenJPA 2.0 iteration 1 primary task
* [OPENJPA-807] - OpenJPA 2.0 iteration 2 primary task
* [OPENJPA-831] - OpenJPA 2.0 iteration 1.5 (holiday) primary task
* [OPENJPA-966] - Support Replication-enabled MySQL
* [OPENJPA-1008] - Generate meta-model for JPA 2.0
* [OPENJPA-1009] - Populate canonical meta-model for strictly typed Criteria Query building
* [OPENJPA-1010] - Instantiate meta-model classes for JPA 2.0 from source code annotations
* [OPENJPA-1011] - Instantiate meta-model classes for JPA 2.0 from XML descriptors
* [OPENJPA-1014] - Build weakly-typed Criteria API
Task
----
* [OPENJPA-995] - Migrate existing Criteria Query implementation as OpenJPA extension to prepare for upcoming JPA 2.0 spec changes
OpenJPA 1.0.0 Changes:
http://svn.apache.org/viewvc/openjpa/tags/1.0.0/openjpa-project/CHANGES.txt?view=markup