What's Changed
- Code cleanup by @sansyrox in #178
- Implement Response headers by @sansyrox in #179
- Add experimental io-uring by @sansyrox in #184
- Remove hashmap clones by @sansyrox in #187
New Contributors
- @sombralibre made their first contribution in #189
Full Changelog: v0.15.1...v0.16.0
You can now have the response headers:
@app.get("/redirect")
async def redirect(request):
return {"status_code": "307", "body": "", "type": "text", "headers": jsonify({"Location": "redirect_route"})}