Paketo Buildpacks Bionic End Of Support
The Spring Boot plugins for Maven and Gradle provide the ability to build Docker images using Cloud Native Buildpacks. By default, Spring Boot uses the CNB builders provided by the Paketo Buildpacks project.
What's Changed
The Paketo Buildpacks project has announced that Ubuntu 18.04 Bionic-based builders are no longer supported, in favor of Ubuntu 22.04 Jammy-based builders. See the Paketo announcement for more details on the builders that are affected by this change.
The Maven and Gradle plugins for Spring Boot versions 3.1 and earlier use the Bionic Base Builder by default when building…
Simplified Event Externalization with Spring Modulith
Transactional service methods are a common pattern in Spring applications. These methods trigger a state transition important to the business. This usually involves a core domain abstraction, such as an aggregate and its corresponding repository. A stereotypical example of such an arrangement might look like this:
@Service
@RequiredArgsConstructor
class OrderManagement {
private final OrderRepository orders;
@Transactional
Order complete(Order order) {
return orders.save(order.complete());
}
}
As state transitions like these might be interesting to third parties, we might want…
Spring Modulith 1.1 M1 and 1.0.1 released
On behalf of the community, I am happy to announce the release of Spring Modulith 1.1 M1 and 1.0.1. While the latter primarily ships minor bug fixes, the former packages quite a few new features, such as:
- Support to externalize application events into Kafka, AMQP and JMS GH-248
- APIs to access completed and incomplete event publications GH-294
- Support for Neo4j as persistence store to back the Event Publication Registry GH-301
We will have a blog post elaborating on the former coming soon. Feel free to check out the full change log and revamped reference documentation in the meantime. Thanks…
A Bootiful Podcast: Java community legend Sharat Chander
Hi, Spring fans! Java 21 is out and in order to celebrate, I talk to Java community legend Sharat Chander.
Spring Boot 3.2.0-M3 available now
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 3.2.0-M3
has been released and is now available from https://repo.spring.io/milestone.
This release includes 97 enhancements, documentation improvements, dependency upgrades, and bug fixes. Notable new features include:
- Support for Jetty 12
- Support for Spring for Apache Pulsar
- Docker Compose Support for Neo4j
Please see the release notes for more details and upgrade instructions.
Thanks to all those who have contributed with issue reports and pull requests.
How can you help?
If you're interested in helping out, check out the "ideal for contribution" tag in the issue repository. If you have general questions, please ask on stackoverflow.com using the spring-boot
tag or chat with the community on Gitter…
Spring Boot 3.1.4 available now
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 3.1.4
has been released and is now available from Maven Central.
This release includes 50 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.
How can you help?
If you're interested in helping out, check out the "ideal for contribution" tag in the issue repository. If you have general questions, please ask on stackoverflow.com using the spring-boot
tag or chat with the community on Gitter.
Project Page | GitHub | Issues | Documentation | Stack Overflow | …
Spring Boot 3.0.11 available now
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 3.0.11
has been released and is now available from Maven Central.
This release includes 40 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.
How can you help?
If you're interested in helping out, check out the "ideal for contribution" tag in the issue repository. If you have general questions, please ask on stackoverflow.com using the spring-boot
tag or chat with the community on Gitter.
Project Page | GitHub | Issues | Documentation | Stack Overflow | …
Spring Boot 2.7.16 available now
On behalf of the team and everyone who has contributed, I'm happy to announce that Spring Boot 2.7.16
has been released and is now available from Maven Central.
This release includes 24 bug fixes, documentation improvements, and dependency upgrades. Thanks to all those who have contributed with issue reports and pull requests.
How can you help?
If you're interested in helping out, check out the "ideal for contribution" tag in the issue repository. If you have general questions, please ask on stackoverflow.com using the spring-boot
tag or chat with the community on Gitter.
Project Page | GitHub | Issues | Documentation | Stack Overflow | …
Spring Integration 6.2.0 Milestone 3 Available
Dear Spring community,
On behalf of Spring Integration team, it is my pleasure to announce 6.2.0-M3
version which is available from Spring Milestone repository.
In addition, bug fixes version 6.1.3
has been released as well into Maven Central.
Since the previously announced Milestone 1, these changes have made it into a new Spring Integration generation:
-
The documentation migrated to Antora site generator and hosted alongside with other migrated Spring projects here
-
The project build lifecycle is now connected to Gradle Enterprise, so every one contributing can now benefit from remote shared cache for Gradle tasks
-
The
LockRegistry
interface provides a template-likeexecuteLocked()
API: …