-
Notifications
You must be signed in to change notification settings - Fork 616
@DynamicLabel with non-abstract class inheritance #2886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks @LGDOI for the detailed report. I can reproduce it and have a fix ready by the end of the day. |
Thank you @michael-simons for fixing this bug so quickly. |
Hi @michael-simons |
@mp911de Would you consider crafting a single 6.3.x release for SDN? |
We would require a full release train as we do not manage individual artifact versions. Spring Data 2021.2 is out of support since November last year. Let me find out more details. |
Thanks for looking into this, Mark! |
Hello @LGDOI We talked about this topic with our friends at Broadcom, who do mange the releases for all Spring Data projects. They cannot release Spring Data Neo4j individually, not due to technical, but legal restrictions imposed by support contracts for older versions. The options for you that we see here are:
|
Thank you @michael-simons for recommending the possible options for us. Cheers! |
SDN 6.3.18 returns incorrect instance type when a dynamic label is set on a node.
I have an example repo but here is a summary of the problem.
Entities
Given the following entity types
Subclass of Fruit
Sub classes of
MagicalFruit
and
Repository
Test
The above test fails because
fruits
contains instances ofMagicalFruit
when dynamic labels are set.Other Findings
When I change
MagicalFruit
class to anabstract
class, the same test pass.#2529 is very similar bug but that example has
abstract
onFeline
class.Is this required to have only one concrete class as a leaf node of the inheritance hierarchy for dynamic label to work?
The text was updated successfully, but these errors were encountered: