You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by nt...@apache.org on 2023/02/09 11:22:59 UTC

[cayenne] branch STABLE-4.2 updated: CAY-2792 Fix Insertion Order For Reflexive DataObjects - release notes - DataMap cleanup

This is an automated email from the ASF dual-hosted git repository.

ntimofeev pushed a commit to branch STABLE-4.2
in repository https://gitbox.apache.org/repos/asf/cayenne.git


The following commit(s) were added to refs/heads/STABLE-4.2 by this push:
     new 551c3b774 CAY-2792 Fix Insertion Order For Reflexive DataObjects  - release notes  - DataMap cleanup
551c3b774 is described below

commit 551c3b77423c31317b7c865f46a537aff89dbe46
Author: Nikita Timofeev <st...@gmail.com>
AuthorDate: Thu Feb 9 14:22:54 2023 +0300

    CAY-2792 Fix Insertion Order For Reflexive DataObjects
     - release notes
     - DataMap cleanup
---
 RELEASE-NOTES.txt                                   |  1 +
 cayenne-server/src/test/resources/reflexive.map.xml | 17 -----------------
 2 files changed, 1 insertion(+), 17 deletions(-)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 530306011..ddb09d204 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -18,6 +18,7 @@ Bug Fixes:
 CAY-2552 ColumnQuery with flattened attributes bug
 CAY-2783 DbEntity to ObjEntity synchronization should check mandatory flag for primitive java types
 CAY-2789 MalformedJsonException thrown when reading manually edited JSON data in Postgres
+CAY-2792 Fix Insertion Order For Reflexive DataObjects
 
 ----------------------------------
 Release: 4.2.RC2
diff --git a/cayenne-server/src/test/resources/reflexive.map.xml b/cayenne-server/src/test/resources/reflexive.map.xml
index 406915133..7b336a93b 100644
--- a/cayenne-server/src/test/resources/reflexive.map.xml
+++ b/cayenne-server/src/test/resources/reflexive.map.xml
@@ -38,21 +38,4 @@
 	<obj-relationship name="children" source="Reflexive" target="Reflexive" db-relationship-path="children"/>
 	<obj-relationship name="toOther" source="Reflexive" target="Other" db-relationship-path="toOther"/>
 	<obj-relationship name="toParent" source="Reflexive" target="Reflexive" db-relationship-path="toParent"/>
-	<cgen xmlns="http://cayenne.apache.org/schema/10/cgen">
-		<destDir>../java</destDir>
-		<mode>entity</mode>
-		<template>templates/v4_1/client-subclass.vm</template>
-		<superTemplate>templates/v4_1/client-superclass.vm</superTemplate>
-		<embeddableTemplate>templates/v4_1/embeddable-subclass.vm</embeddableTemplate>
-		<embeddableSuperTemplate>templates/v4_1/embeddable-superclass.vm</embeddableSuperTemplate>
-		<queryTemplate>templates/v4_1/datamap-subclass.vm</queryTemplate>
-		<querySuperTemplate>templates/v4_1/datamap-superclass.vm</querySuperTemplate>
-		<outputPattern>*.java</outputPattern>
-		<makePairs>true</makePairs>
-		<usePkgPath>true</usePkgPath>
-		<overwrite>false</overwrite>
-		<createPropertyNames>false</createPropertyNames>
-		<createPKProperties>false</createPKProperties>
-		<client>true</client>
-	</cgen>
 </data-map>