5.3.0
New NullValue
class returned to prevent break chains with exceptions.
Before:
$post->category->id;
//thows exception if $post->category returns null
Now:
$post->category->id;
//It woks fine because $post->category returns a NullValue instance
Note: it only affects to automatic loaded relations of type RELATION_HAS_ONE
that previously returned null
.