Skip to content

Release v20.57.0

Choose a tag to compare

@github-actions github-actions released this 18 Jul 12:50
e190625

Added

  • New analyzer ARC0013 — warns when a validator rule dereferences a member of a possibly-null concept (for example RuleFor(c => c.Order.Value)). Because model-bound input can be deserialized with a null concept, the rule throws at validation time instead of producing a validation error; the analyzer flags it in the editor and points to the fixes (validate the concept when required, or guard the rule with .When(...)).