Skip to content

Commit

Permalink
Prepare version 3.2.32.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-simons committed Mar 25, 2022
1 parent 60e5f51 commit fa270ec
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGES.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
= Changes

== 3.2.32

* [bug] Don't flatten collections of known entities. (#902)
* [improvement] Avoid unnecessary creation of builders.

https://github.com/neo4j/neo4j-ogm/commit/60e5f51a3c499f756732004be5b9e0fa57e2f6a6[ 60e5f51] can lead to breaking changes
in some custom queries (all queries having several levels of nested lists of domain objects). They have been incorrectly
flattened before that change and their structure will be preserved afterwards.

An example. A query returning

```
[[n0, n1, n2], [n3], [n4], [n5, n6]]
```


with n1..6 being known domain objects will be flattened to a `[n1, n2, n3, n4, n5, n6]` prior to 3.2.32.
The above structure will now be preserved.

See the notes in the linked commit and this https://github.com/neo4j/neo4j-ogm/issues/737#issuecomment-1079022137[comment].

== 3.2.31

* [dependencies] Drop commons-lang3 from core dependencies.
Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:version: 3.2.31
:version: 3.2.32

image:https://img.shields.io/maven-central/v/org.neo4j/neo4j-ogm.svg[Maven Central,link=http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.neo4j%22%20AND%20a%3A%22neo4j-ogm%22]
image:https://rawgit.com/aleen42/badges/master/src/slack.svg[Slack,link=https://neo4j-users.slack.com/messages/neo4j-sdn-ogm/]
Expand Down

0 comments on commit fa270ec

Please sign in to comment.