Skip to content

Releases: eadwinCode/django-ninja-extra

0.14.6

25 Mar 16:34
20a0f67
Compare
Choose a tag to compare

Changelog:

  • Changed controller operations keys to function name instead of operations paths. Thanks to @SootyOwl

0.14.4

12 Feb 15:36
803bf9d
Compare
Choose a tag to compare

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

20 Jan 09:59
1660c85
Compare
Choose a tag to compare
  • Async Route Authentication support
  • Async Pagination Support
  • Fix #4 issue

0.14.0

13 Dec 18:05
8a2da60
Compare
Choose a tag to compare
  • Route Auth Bug Fix
  • Code Refactoring

0.13.8

10 Dec 12:24
112a5ee
Compare
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
Compare
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
Compare
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
Compare
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