Spring Data 2025.0.4 and 2024.1.10 released
On behalf of the team and everyone who has contributed, I’m pleased to announce the availability of 2025.0.4
and 2024.1.10
service releases. These releases ship with dependency upgrades, fixes for regressions and selected improvements.
The upcoming Spring Boot releases will pick up the above releases by next week.
2025.0.4
- Spring Data Commons
3.5.4
- Javadoc - Documentation - Changelog - Spring Data JPA
3.5.4
- Javadoc - Documentation - Changelog - Spring Data Neo4j
7.5.4
- Javadoc - Documentation - Changelog - Spring Data for Apache Cassandra
4.5.4
- Javadoc - Documentation - Changelog - Spring Data MongoDB
4.5.4
- Javadoc - Documentation - Changelog - Spring Data KeyValue
3.5.4
- Javadoc - Documentation - Changelog - Spring Data LDAP
3.5.4
- Javadoc - Documentation - Changelog - Spring Data REST
4.5.4
- Javadoc - Documentation - Changelog - Spring Data Redis
3.5.4
- Javadoc - Documentation - Changelog - Spring Data Elasticsearch
5.5.4
- Javadoc - Documentation - …
Spring Data 2025.1.0-M6 released
On behalf of the team and everyone who has contributed, I am pleased to announce the sixth and last milestone for the next Spring Data generation. This milestone continues delivering new features, refinements, and dependency upgrades.
Removed MongoDB UUID and BigDecimal Defaults
Spring Data MongoDB now aligns with the MongoDB Java Driver and no longer defaults to a representation for UUID
values. Instead, you need to explicitly configure the desired representation through driver settings.
We're also no longer providing a default configuration value for BigInteger
and resort the default for BigDecimal
to Decimal128
in accordance with MongoDB's default codecs. This is a much safer approach that prevents you your application from accidentally switching representations when upgrading to the new major version. Please make sure to configure formats for big numbers through MongoCustomConversions
…
A Bootiful Podcast: Purnima Padmanabhan, General Manager, Tanzu Division, Broadcom
Hi, Spring fans! In this installment, we talk to the general manager of Tanzu, the legendary Purnima Padmanabhan, about AI, the power of the platform, and more. Recorded live from SpringOne 2025!
Spring Authorization Server moving to Spring Security 7.0
Spring Authorization Server has come a long way since 1.0
was officially released in November 2022.
Starting as a project separate from Spring Security, has allowed it to iterate quickly on feature development and ultimately grow a rich feature set for building OAuth2 Authorization Servers.
It has reached that point of maturity and stability and we believe the time is now to move it to Spring Security 7.0
.
The main benefit this will provide our users is a streamlined developer experience. Whether you are working with OAuth2 Client or OAuth2 Authorization Server, you won’t need to switch…
Spring Framework 7.0.0-M9 available now
On behalf of the team and everyone who has contributed, I am pleased to announce our last milestone for Spring Framework 7.0. This is our last stop before the release candidate, scheduled next month. We have compiled all the upgrade information, new features and deprecations on the Spring Framework 7.0 release notes preview page.
Resiliency refinements
The new Resiliency feature got a lot of fixes and refinements in this milestone,
mostly around RetryException
and exception handling. There is a new "programmatic support"
section in the reference documentation, in case the annotation-based…
Spring Framework 6.2.11 Available Now
On behalf of the team and everyone who has contributed, I am pleased to announce that Spring Framework 6.2.11
is available now.
Spring Framework 6.2.11
ships with 23 fixes and documentation improvements. This version will be shipped next week with Spring Boot 3.4.10
and 3.5.6
.
Spring Tools 4.32.0 released
On behalf of the team and everyone who has contributed, I am pleased to announce the 4.32.0 release of the Spring Tools for Visual Studio Code, Eclipse and Theia.
This is a maintenance release that includes bugfixes and the update to the Eclipse 2025-09 release for the Spring Tools for Eclipse distribution. At the moment, there are no further maintenance releases planned for the Spring Tools 4.x line.
Detailed changes can be found in the release notes: https://github.com/spring-projects/spring-tools/releases/tag/4.32.0.RELEASE
downloads
To download the distribution for Eclipse and find links…
Spring gRPC 0.11.0 available now
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring gRPC 0.11.0
has been released and is now available from Maven Central. We are still planning to have a 1.0.0 release around the same time as Spring Boot 4.0.0.
The main changes in this release are bug fixes for 0.10.0. There is a small API change in the custom security adapter that extracts authentication data from an incoming request on the server. All users should upgrade as soon as possible.
How can you help?
If you're interested in helping out, check out the open issues.
If you have general questions, please ask on Stack Overflow using the spring-grpc
tag…
Core Spring Resilience Features: @ConcurrencyLimit, @Retryable, and RetryTemplate
This is the first blog post in the Road to GA series, highlighting major features within the Spring portfolio for the next major versions to be released in November of this year.
Today we are proud to announce the new resilience features coming in Spring Framework 7.0: concurrency throttling and retry support.
Concurrency Throttling
For certain tasks and resources it may be desirable to limit the level of concurrency. Concurrency throttling effectively protects the target resource from being accessed from too many threads at the same time, similar to the effect of a pool size limit for a…