Releases: eadwinCode/django-ninja-extra
Releases · eadwinCode/django-ninja-extra
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_patchandhttp_deletefunction decorators - Added global parameter eg:
@api_controller('/{int:org_id}/') - Increased Test coverage
0.13.6
- More code documentations
- Controller response changes from
messagetodetailwith 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