-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: show autoform non-rendered property errors #2833
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2833 +/- ##
==========================================
+ Coverage 92.72% 92.77% +0.04%
==========================================
Files 83 83
Lines 2845 2850 +5
Branches 728 730 +2
==========================================
+ Hits 2638 2644 +6
Misses 156 156
+ Partials 51 50 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
} | ||
|
||
public static class NullableFieldModel { | ||
@Id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those fields look nullable by default, unless I'm missing something. You should probably test them under a @NonNullApi
annotation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I should, but I should also check that they are indeed nullable without any other annotation.
I will add another test.
39d5488
to
35f6656
Compare
Fixes: #2217
35f6656
to
74b4a76
Compare
Quality Gate failedFailed conditions |
Show autoform non-rendered property errors
Make @id and @Version annotations resolve as nullable fields
Fixes: #2217
Fixes: #2809