Version 0.8.0

This commit is contained in:
Tom Christie 2018-11-08 12:07:17 +00:00
parent 8f736f20ac
commit bf51fc2d22
2 changed files with 26 additions and 1 deletions

View File

@ -1,3 +1,28 @@
## 0.8.0
### Exceptions
* Add support for `@app.exception_handler(404)`.
* Ensure handled exceptions are not seen as errors by the middleware stack.
### SessionMiddleware
* Add `max_age`, and use timestamp-signed cookies. Defaults to two weeks.
### Cookies
* Ensure cookies are strictly HTTP correct.
### StaticFiles
* Check directory exists on instantiation.
## 0.7.4
### Concurrency
* Add `starlette.concurrency.run_in_threadpool`. Now handles `contextvar` support.
## 0.7.3 ## 0.7.3
### Routing ### Routing

View File

@ -1 +1 @@
__version__ = "0.7.4" __version__ = "0.8.0"