Commit Graph

6 Commits

Author SHA1 Message Date
Phillip Webb f0abccffbc Create spring-boot-health module
Issue: 46155
2025-06-30 16:57:42 -07:00
Andy Wilkinson 5a4ecfe087 Break cycle in spring-boot-data-* modules
There was a cycle in the spring-boot-data-* modules.

SpringDataWebAutoConfiguration (which sits at the spring-data-commons
level) referenced RepositoryRestMvcAutoConfiguration (which sits
at the spring-data-rest level). This dependency's expressed in the
wrong direction as data-rest depends on data-commons. The resulting
cycle was not noticable as it was expressed through a String afterName
attribute on `@AutoConfiguration`.

spring-boot-data-commons was also using spring-boot-data-jpa for its
tests, which also results in an inverted dependency relationship.

This commit reworks things so that all of the spring-boot-data-*
modules depend upon spring-boot-data-commons, mirroring the
dependency relationship in Spring Data. The integration tests in
spring-boot-data-commons have been reworked to use Spring Data
directly, avoiding the need for a circular from
spring-boot-data-commons to another spring-boot-data-* module.

Issue: 46071
2025-06-30 16:57:38 -07:00
Andy Wilkinson 27fa452b63 Move Data MongoDB health auto-configuration to spring-data-mongodb
Issue: 46114
2025-06-30 16:57:33 -07:00
Andy Wilkinson 4f9b35e1f8 Move code from spring-boot-actuator to spring-boot-data-mongodb
Issue: 46115
2025-06-30 16:57:24 -07:00
Andy Wilkinson 676fca519e Create spring-boot-reactor module
Issue: 46142
2025-06-30 16:57:20 -07:00
Andy Wilkinson 44ae930af7 Create spring-boot-data-mongodb module
Issue: 46115
2025-06-27 14:59:09 -07:00