mirror of https://github.com/encode/starlette.git
Version 0.9.11
This commit is contained in:
parent
c1b312ff73
commit
f923c739e8
|
@ -1,3 +1,11 @@
|
|||
## 0.9.11
|
||||
|
||||
* Session cookies now include browser 'expires', in addition to the existing signed expiry.
|
||||
* `request.form()` now returns a multi-dict interface.
|
||||
* The query parameter multi-dict implementation now mirrors `dict` more correctly for the
|
||||
behavior of `.keys()`, `.values()`, and `.items()` when multiple same-key items occur.
|
||||
* Use `urlsplit` throughout in favor of `urlparse`.
|
||||
|
||||
## 0.9.10
|
||||
|
||||
* Support `@requires(...)` on class methods.
|
||||
|
|
|
@ -51,7 +51,7 @@ For example: `request.headers['content-type']`
|
|||
|
||||
#### Query Parameters
|
||||
|
||||
Headers are exposed as an immutable multi-dict.
|
||||
Query parameters are exposed as an immutable multi-dict.
|
||||
|
||||
For example: `request.query_params['search']`
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "0.9.10"
|
||||
__version__ = "0.9.11"
|
||||
|
|
Loading…
Reference in New Issue