Spring Data 2025.0 Release Notes - spring-projects/spring-data-commons GitHub Wiki

General Themes

  • Vector abstraction to represent AI embeddings

Participating Modules

Details

New and Noteworthy

Spring Data Commons - 3.5

Mark pure Repository SpEL Components for Removal

After introducing support for Value Expressions, we now no longer require components that only support SpEL without following the newly introduced Value Expressions API. Therefore, we’re deprecating QueryMethodEvaluationContextProvider (and its reactive variants), and SpelEvaluator for removal in the next major release.

Please migrate off this API towards their Value Expression replacements.

Spring Data JPA - 3.5

Spring Data Relational - 3.5

Spring Data MongoDB - 4.5

Spring Data Neo4j - 7.5

Spring Data Elasticsearch - 5.5

Spring Data Couchbase - 5.5

Spring Data for Apache Cassandra - 4.5

Spring Data Redis - 3.5

Spring Data KeyValue - 3.5

Support for Not, NotIn, and NotLike query keywords

Map-based repositories now support Not, NotIn, and NotLike keywords when using query derivation.

interface PersonRepository extends Repository<Person, String> {

  Person findByFirstnameNot(String firstname);

  Person findByFirstnameNotLike(String firstname);

  Person findByFirstnameNotIn(List<String> in);
}

Spring Data REST - 4.5

Spring Data LDAP - 3.5

Release Dates

  • M1 - Feb 14, 2025

  • RC - April 11, 2025

  • GA - May 16, 2025

  • OSS Support until: May 2026

  • End of Life: Sept 2027

⚠️ **GitHub.com Fallback** ⚠️