Deprecated function: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in template_preprocess_date_views_pager()
Appears when pager by date is used on the block display of the view. It don't have url so in the line 88 of date_views/theme/theme.inc:
$prev_path = str_replace($date_info->date_arg, $prev_arg, $date_info->url);
the $date_info->url = null and it causes appearing the deprecation message.
I propose to delete $prev_path computing as it's an unused variable.