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 2022/11/22 13:35:20 UTC

[cayenne] branch STABLE-4.2 updated (44f6ca7c8 -> b16774fa5)

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

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


    from 44f6ca7c8 Enable GitHub actions
     new 7bc235f92 CAY-2777 Reverse relationship is not set with single table inheritance
     new a32624c86 CAY-2777 Reverse relationship is not set with single table inheritance  - additional tests
     new b16774fa5 Merge pull request #541 from stariy95/4.2-FIX-CAY-2777-inheritance-set-reverse-relationship

The 6836 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../access/flush/DefaultDataDomainFlushAction.java |   3 +-
 .../apache/cayenne/access/flush/EffectiveOpId.java |   2 +-
 .../access/flush/operation/OpIdFactory.java        | 118 +++++++++++++++++++++
 .../org/apache/cayenne/map/ObjRelationship.java    |  13 ++-
 .../java/org/apache/cayenne/ManyToManyJoinIT.java  |  27 +++++
 .../access/flush/operation/OpIdFactoryTest.java    |  67 ++++++++++++
 .../{Author.java => SelfRelationship.java}         |   7 +-
 .../{Author.java => SelfRelationshipSub.java}      |   7 +-
 .../auto/_Author.java                              |   7 +-
 .../auto/_SelfRelationship.java}                   |  54 +++++-----
 .../auto/_SelfRelationshipSub.java}                |  39 ++++---
 .../auto/_Song.java                                |  10 +-
 .../relationships-many-to-many-join.map.xml        |  37 ++++++-
 13 files changed, 321 insertions(+), 70 deletions(-)
 create mode 100644 cayenne-server/src/main/java/org/apache/cayenne/access/flush/operation/OpIdFactory.java
 create mode 100644 cayenne-server/src/test/java/org/apache/cayenne/access/flush/operation/OpIdFactoryTest.java
 copy cayenne-server/src/test/java/org/apache/cayenne/testdo/relationships_many_to_many_join/{Author.java => SelfRelationship.java} (88%)
 copy cayenne-server/src/test/java/org/apache/cayenne/testdo/relationships_many_to_many_join/{Author.java => SelfRelationshipSub.java} (88%)
 copy cayenne-server/src/test/java/org/apache/cayenne/testdo/{embeddable/auto/_EmbedRoot.java => relationships_many_to_many_join/auto/_SelfRelationship.java} (69%)
 copy cayenne-server/src/test/java/org/apache/cayenne/testdo/{generated/auto/_GeneratedF1.java => relationships_many_to_many_join/auto/_SelfRelationshipSub.java} (60%)