Fix UniqueTogetherValidator with field sources #7086
Merged
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
This is an updated version of #7005 that I was helping @anveshagarwal put together. In short, there are two related bugs:
_read_only_defaults
does not correctly account for the fieldsource
. The initial check does account for compatible sources, but when assigning the read only default, thefield_name
is used instead ofsource
.UniqueTogetherValidator
doesn't handle field sources. Handling this is a little annoying, because the objective is to validate the serializer fields/data. However, the givenattrs
use the source/model field names, which are used in the actual validation check.As to potential breaking changes, we may want to call out that validation against read-only fields that have defaults now obey their sources? ¯\_(ツ)_/¯
Fixes #7003