-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from tgharold/24-add-index-number-to-member-na…
…me-for-enumerables-1 v2: Report the index position in IEnumerable validations
- Loading branch information
Showing
3 changed files
with
72 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Breaking Changes | ||
|
||
Any breaking changes will require either a change in the code that uses the library or describes a change in behavior. | ||
|
||
## v2.0.0: November 2022 | ||
|
||
The member names reported back for IEnumerable collection properties will now return the index inside of square brackets as suggested by issue #24. | ||
|
||
- OLD: `Items.SimpleA.BoolC` | ||
- NEW: `Items[1].SimpleA.BoolC` | ||
|
||
This will impact any code that was parsing the member name string if IEnumerable properties were validated. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters