diff --git a/openjpa-project/src/doc/manual/migration_considerations.xml b/openjpa-project/src/doc/manual/migration_considerations.xml
index 99d2fe704..2eafdeb83 100644
--- a/openjpa-project/src/doc/manual/migration_considerations.xml
+++ b/openjpa-project/src/doc/manual/migration_considerations.xml
@@ -163,7 +163,7 @@
Serialization of Entities
-
+
In 1.x.x releases of OpenJPA, when an entity was serialized
after calling EntityManager.find(), detach() or detachAll()
@@ -173,7 +173,7 @@
proxy classes were not removed.
- Starting with OpenJPA 1.3 and 2.0, this behavior has been
+ Starting with OpenJPA 2.0, this behavior has been
modified, so that by default all proxies will be removed
during serialization. See
@@ -183,6 +183,16 @@
for more details on how to override the default
DetachedStateField setting.
+
+ Applications that use a 1.0 persistence.xml will
+ automatically maintain the old behavior. It is
+ possible for a version 2.0 application to revert back to
+ the prior 1.x.x behavior by setting the following
+ openjpa.Compatibility property as follows:
+
+ IgnoreDetachedStateFieldForProxySerialization=true
+
+