Skip to content

2025-July-12 - 2.7.15116

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 12 Jul 00:04
96a7369
Optional & null usage fixes (#13542)

Values of type optional should never be assigned to null, nor
should they be compared to null. Following a recent refactor, it seems
a few updates were missed to change the comparison of newly returned
optional types against null. These comparisons should all be against
whether the optional is empty or present, checking against null is
incorrect.