-
Notifications
You must be signed in to change notification settings - Fork 271
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
Add support for DRF >= 3.14.0 #865
Comments
Unfortunately it is not that easy as we need to support Django REST Framework (3.10.3, 3.11, 3.12, 3.13, 3.14). We do keep supporting it where it is available. |
@tfranzel thanks will close. I am concerned now with dependency resolution. I had run Is this something I should report somewhere else? |
that is not an issue on our side. This is general thing to keep in mind when dealing with poetry |
Got it! Appreciate the quick response. Keep up the good work 😄 |
also there was some issue with stale local |
NullBooleanField
was removed inDRF 3.14.0
which affectdrf-spectacular
( see PR ). The latestdrf-spectacular,
or any previous releases for that matter are incompatible withDRF>=3.14.0
. More specifically,drf-spectacular
should stop usingNullBooleanField
as it's been deprecated inDRF>=3.14.0
and start usingBooleanField
withallow_null=True
.I'm unaware wether there are further incompatibility issues with DRF >= 3.14.0 besides
NullBooleanField
.The text was updated successfully, but these errors were encountered: