Releases: eadwinCode/django-ninja-extra
Releases · eadwinCode/django-ninja-extra
0.14.6
0.14.4
What's Changed
- Jan 20 django ninja upgrade by @eadwinCode in #6
- Default App config Fix for Django >= 4.0 by @eadwinCode in #8 thanks to nbhargava for his suggestion
- Added support for django-ninja 0.17.0
0.14.2
0.14.0
- Route Auth Bug Fix
- Code Refactoring
0.13.8
Features
- Removed ControllerRouter and Merged it to APIController
- Converted APIController to class decorator
- Abstracted APIController to ControllerBase
- Brokedown ControllerRoute[get,post,put,patch,delete] functions to
http_get
,http_post
,http_put
,http_patch
andhttp_delete
function decorators - Added global parameter eg:
@api_controller('/{int:org_id}/')
- Increased Test coverage
0.13.6
- More code documentations
- Controller response changes from
message
todetail
with better type annotations
0.13.4
- Migrated to DRF APIException to support more DRF extension libraries
- APIController mro fixed
0.13.2
- Added url_name support to all Controller operations to ensure all operations can be reversed successfully with django reverse function
- Added get_object function to the Controller which ensures object permission
- Forced create_response function of the Controller to create HttpResponse instead of returning a schema