Skip to content

Releases: eadwinCode/django-ninja-extra

0.14.2

20 Jan 09:59
1660c85

Choose a tag to compare

  • Async Route Authentication support
  • Async Pagination Support
  • Fix #4 issue

0.14.0

13 Dec 18:05
8a2da60

Choose a tag to compare

  • Route Auth Bug Fix
  • Code Refactoring

0.13.8

10 Dec 12:24
112a5ee

Choose a tag to compare

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 and http_delete function decorators
  • Added global parameter eg:@api_controller('/{int:org_id}/')
  • Increased Test coverage

0.13.6

27 Nov 04:13
62ff922

Choose a tag to compare

  • More code documentations
  • Controller response changes from message to detail with better type annotations

0.13.4

22 Nov 18:54

Choose a tag to compare

  • Migrated to DRF APIException to support more DRF extension libraries
  • APIController mro fixed

0.13.2

19 Nov 10:28
f8d6593

Choose a tag to compare

  • 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