Reports transform operations that may return null inside a Reactive Stream chain.

Example:

repository.findWithTailableCursorBy()
    .map(e -> (Person)null)
    .doOnNext(System.out::println)

Reactive Streams don't support null values, which causes such code to fail.

New in 2019.3