See gh-47490
@ -21,7 +21,7 @@ import reactor.core.publisher.Mono
interface CityRepository : Repository<City, Long> {
fun findByNameAndStateAllIgnoringCase(name: String, state: String): Mono<City?>
fun findByNameAndStateAllIgnoringCase(name: String, state: String): Mono<City>
}
@ -21,7 +21,7 @@ import reactor.core.publisher.Flux
interface CustomerRepository : ReactiveCrudRepository<Customer, Long> {
fun findByUser(user: User?): Flux<Customer?>?
fun findByUser(user: User?): Flux<Customer>
@ -35,7 +35,7 @@ class MyRestController(private val userRepository: UserRepository, private val c
@GetMapping("/{userId}/customers")
fun getUserCustomers(@PathVariable userId: Long): Flux<Customer> {
return userRepository.findById(userId).flatMapMany { user: User? ->
return userRepository.findById(userId).flatMapMany { user: User ->
customerRepository.findByUser(user)
@ -1928,7 +1928,7 @@ bom {
]
library("Reactor Bom", "2025.0.0-M7") {
library("Reactor Bom", "2025.0.0-SNAPSHOT") {
considerSnapshots()
calendarName = "Reactor"
group("io.projectreactor") {