Uh oh!
There was an error while loading. Please reload this page.
Fix handling of nullable enums for 3.0 - #2920
Conversation
Uh oh!
There was an error while loading. Please reload this page.
21bcff8 to
6ee0df1CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Vincent Biret (baywet)
left a comment
There was a problem hiding this comment.
Thank you for making the changes!
Youssef Fahmy (Youssef1313)
commented
Jul 3, 2026
Vincent Biret (@baywet) Is there anything remaining to get this merged? Would we have a new version released before .NET 11 Preview 7 so that we try to get that in aspnetcore repo and possibly build some fixes on our side on top of this? |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Vincent Biret (baywet)
left a comment
There was a problem hiding this comment.
Thank you for making the changes!
Uh oh!
There was an error while loading. Please reload this page.
* Fix handling of nullable enums for 3.0 * Address comments * Add * Use JsonNullSentinel.JsonNull
Previously, this scenario wasn't producing a
typeand wasn't producing a null value in the enum array.This fixes it so that they are produced.
In the future, we could also avoid adding a
oneOfwith a single element in this scenario.