-
Notifications
You must be signed in to change notification settings - Fork 675
Spring Data 2024.0 Release Notes
-
Support for Value Expressions
-
MongoDB 7.0 and MongoDB Java Driver 5.0
Details
-
Spring Data Build - 3.3
Upwards Compatibility with MongoDB 5.0 Driver — GH-4578
The MongoDB Java Driver generation 5.0 ships with a couple of new features but also previously deprecated API now removed.
To allow users to upgrade on their own pace the spring-data-mongodb
4.3.x line will remain using the 4.x MongoDB driver while supporting users already upgrading their applications to the new MongoDB bits. This can be easily done by setting the Spring Boot version property for mongodb.version
to 5.0.0.
Spring Data MongoDB adapts to changed driver API where possible and will only error for code paths no longer available using the new driver. Compiler warnings for those spots have been in place for several releases already and we strongly recommend to move off deprecated API as soon as possible.
Explicit transaction boundaries for multi-query operations - GH-2860
Spring Data Neo4j will create explicit transactions around the database operations within the Neo4jTemplate
/ReactiveNeo4jTemplate
.
This avoids confusion around multiple transactions being on the driver level if there are more than one query involved in this operation (e.g. save
with relationships or cascading load queries for cyclic entity graphs).
Also, this ensures that pure read queries will always be executed in a read-only transaction if nothing else is specified. Every transaction will now also benefit from having the appropriate Spring Data Neo4j app metadata if enabled for better debugging.
(This will also be included in a back-port to 7.2)
RFC-compliant handling of entities in arrays in merge patches — GH-2358
RFC-7386 requires elements within arrays to completely replace the original data. In previous releases, the patch handling was propagated to nested array elements (originally requested in GH-1294). This was now reverted to properly apply out PUT behavior to such elements. In other words, missing, exposed properties are nulled out. Properties hidden are still kept around.
-
M1 - Feb 16, 2024
-
M2 - March 15, 2024
-
RC - April 12, 2024
-
GA - May 17, 2024
-
OSS Support until: May 2025
-
End of Life: Sept 2026