add release notes
This commit is contained in:
@ -2,7 +2,11 @@
|
|||||||
|
|
||||||
## ✨ Features
|
## ✨ Features
|
||||||
|
|
||||||
*
|
* Add `values` and `values_list` to `QuerySet` and `QuerysetProxy` that allows to return raw data from query [#223](https://github.com/collerek/ormar/issues/223).
|
||||||
|
* Allow returning list of tuples or list of dictionaries from a query
|
||||||
|
* Skips parsing the data to ormar model so skips also the validation
|
||||||
|
* Allow excluding models in between in chain of relations, so you can extract only needed columns
|
||||||
|
* `values_list` allows you to flatten the result if you extract only one column.
|
||||||
|
|
||||||
## 🐛 Fixes
|
## 🐛 Fixes
|
||||||
|
|
||||||
|
|||||||
@ -76,7 +76,7 @@ class UndefinedType: # pragma no cover
|
|||||||
|
|
||||||
Undefined = UndefinedType()
|
Undefined = UndefinedType()
|
||||||
|
|
||||||
__version__ = "0.10.10"
|
__version__ = "0.10.11"
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Integer",
|
"Integer",
|
||||||
"BigInteger",
|
"BigInteger",
|
||||||
|
|||||||
Reference in New Issue
Block a user