mirror of https://github.com/encode/starlette.git
Version 0.8.0
This commit is contained in:
parent
8f736f20ac
commit
bf51fc2d22
|
@ -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
|
||||
|
||||
### Routing
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "0.7.4"
|
||||
__version__ = "0.8.0"
|
||||
|
|
Loading…
Reference in New Issue