Skip to content

0.18.0

Compare
Choose a tag to compare
@vitalik vitalik released this 03 Jun 09:01
· 571 commits to master since this release
4e3a838

Hello

Please welcome the new Django Ninja version
it has lot of fixes and improvements

Most notable a HttpResponse typed argument by @SmileyChris

Now you can manage response behaviour (cookies, headers, streaming) flixible:

@api.post("/boop")
def boop(request, response: HttpResponse): # !
    response.set_cookie("beep", "boop") # !
    return True

All changes

New Contributors

Full Changelog: v0.17.0...v0.18.0