Releases: ormar-orm/ormar
Release list
Bug fixes
Get raw data with values and values_list
0.10.11
✨ Features
- Add
valuesandvalues_listtoQuerySetandQuerysetProxythat allows to return raw data from query #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_listallows you to flatten the result if you extract only one column.
🐛 Fixes
- Fix creation of auto through model for m2m relation with ForwardRef #226
Generating pydantic models tree and exclude_parent_fields
0.10.10
✨ Features
- Add
get_pydanticfunction that allows you to auto generate equivalent pydantic models tree from ormar.Model. This newly generated model tree can be used in requests and responses to exclude fields you do not want to include in the data. - Add
exclude_parent_fieldsparameter to model Meta that allows you to exclude fields from parent models during inheritance. Note that best practice is to combine models and mixins but if you have many similar models and just one that differs it might be useful tool to achieve that.
🐛 Fixes
- Fix is null filter with pagination and relations (by @erichaydel) #214
- Fix not saving child object on reverse side of the relation if not saved before #216
💬 Other
- Expand fastapi part of the documentation to show samples of using ormar in requests and responses in fastapi.
- Improve the docs in regard of
default,ForeignKey.addetc.
Bump pydantic pin to fix security vulnerability
0.10.9
Important security fix
- Update pin for pydantic to fix security vulnerability CVE-2021-29510
You are advised to update to version of pydantic that was patched.
In 0.10.9 ormar excludes versions with vulnerability in pinned dependencies.
🐛 Fixes
- Fix OpenAPi schema for LargeBinary #204
Bug fixes
0.10.8
🐛 Fixes
New params in dict and base64 encoded strings in LargeBinary
0.10.7
✨ Features
- Add
exclude_primary_keys: bool = Falseflag todict()method that allows to exclude all primary key columns in the resulting dictionaru. #164 - Add
exclude_through_models: bool = Falseflag todict()that allows excluding all through models fromManyToManyrelations #164 - Add
represent_as_base64_str: bool = Falseparameter that allows conversion of bytesLargeBinaryfield to base64 encoded string. String is returned indict(),
on access to attribute and string is converted to bytes on setting. Data in database is stored as bytes. #187 - Add
pkalias to allow field access byModel.pkin filters and order by clauses (python style)
🐛 Fixes
- Remove default
Noneoption formax_lengthforLargeBinaryfield #186 - Remove default
Noneoption formax_lengthforStringfield
💬 Other
- Provide a guide and samples of
dict()parameters in the docs - Major refactor of getting/setting attributes from magic methods into descriptors -> noticeable performance improvement
Add large binary, support for native pydantic fields, examples in openapi
0.10.6
✨ Features
-
Add
LargeBinary(max_length)field type #166 -
Add support for normal pydantic fields (including Models) instead of
pydantic_only
attribute which is now deprecated #160.
Pydantic fields should be declared normally as in pydantic model next to ormar fields,
note that (obviously)ormardoes not save and load the value for this field in
database that mean that ONE of the following has to be true:- pydantic field declared on ormar model has to be
Optional(defaults to None) - pydantic field has to have a default value set
- pydantic field has
default_factoryfunction set - ormar.Model with pydantic field has to overwrite
__init__()and provide the value there
If none of the above
ormar(or rather pydantic) will fail during loading data from the database,
with missing required value for declared pydantic field. - pydantic field declared on ormar model has to be
-
Ormar provides now a meaningful examples in openapi schema, including nested models.
The same algorithm is used to iterate related models without looks
as withdict()andselect/load_all. Examples appear also infastapi. #157
🐛 Fixes
- By default
pydanticis not validating fields during assignment,
which is not a desirable setting for an ORM, now allormar.Models
have validation turned-on during assignment (likemodel.column = 'value')
💬 Other
- Add connecting to the database in QuickStart in readme #180
- OpenAPI schema does no longer include
ormar.Modeldocstring as description,
instead just model name is provided if you do not provide your own docstring. - Some performance improvements.
Bug fixes
Python style filter and order_by with field chain access
0.10.4
✨ Features
- Add Python style to
filterandorder_bywith field access instead of dunder separated strings. #51- Accessing a field with attribute access (chain of dot notation) can be used to construct
FilterGroups(ormar.and_andormar.or_) - Field access overloads set of python operators and provide a set of functions to allow same functionality as with dunder separated param names in
**kwargs, that means that querying from sample modelTrackrelated to modelAlbumnow you have more options:- exact - exact match to value, sql
column = <VALUE>- OLD:
album__name__exact='Malibu' - NEW: can be also written as
Track.album.name == 'Malibu
- OLD:
- iexact - exact match sql
column = <VALUE>(case insensitive)- OLD:
album__name__iexact='malibu' - NEW: can be also written as
Track.album.name.iexact('malibu')
- OLD:
- contains - sql
column LIKE '%<VALUE>%'- OLD:
album__name__contains='Mal' - NEW: can be also written as
Track.album.name % 'Mal') - NEW: can be also written as
Track.album.name.contains('Mal')
- OLD:
- icontains - sql
column LIKE '%<VALUE>%'(case insensitive)- OLD:
album__name__icontains='mal' - NEW: can be also written as
Track.album.name.icontains('mal')
- OLD:
- in - sql
column IN (<VALUE1>, <VALUE2>, ...)- OLD:
album__name__in=['Malibu', 'Barclay'] - NEW: can be also written as
Track.album.name << ['Malibu', 'Barclay'] - NEW: can be also written as
Track.album.name.in_(['Malibu', 'Barclay'])
- OLD:
- isnull - sql
column IS NULL(and sqlcolumn IS NOT NULL)- OLD:
album__name__isnull=True(isnotnullalbum__name__isnull=False) - NEW: can be also written as
Track.album.name >> None - NEW: can be also written as
Track.album.name.is_null(True) - NEW: not null can be also written as
Track.album.name.is_null(False) - NEW: not null can be also written as
~(Track.album.name >> None) - NEW: not null can be also written as
~(Track.album.name.is_null(True))
- OLD:
- gt - sql
column > <VALUE>(greater than)- OLD:
position__gt=3 - NEW: can be also written as
Track.album.name > 3
- OLD:
- gte - sql
column >= <VALUE>(greater or equal than)- OLD:
position__gte=3 - NEW: can be also written as
Track.album.name >= 3
- OLD:
- lt - sql
column < <VALUE>(lower than)- OLD:
position__lt=3 - NEW: can be also written as
Track.album.name < 3
- OLD:
- lte - sql
column <= <VALUE>(lower equal than)- OLD:
position__lte=3 - NEW: can be also written as
Track.album.name <= 3
- OLD:
- startswith - sql
column LIKE '<VALUE>%'(exact start match)- OLD:
album__name__startswith='Mal' - NEW: can be also written as
Track.album.name.startswith('Mal')
- OLD:
- istartswith - sql
column LIKE '<VALUE>%'(case insensitive)- OLD:
album__name__istartswith='mal' - NEW: can be also written as
Track.album.name.istartswith('mal')
- OLD:
- endswith - sql
column LIKE '%<VALUE>'(exact end match)- OLD:
album__name__endswith='ibu' - NEW: can be also written as
Track.album.name.endswith('ibu')
- OLD:
- iendswith - sql
column LIKE '%<VALUE>'(case insensitive)- OLD:
album__name__iendswith='IBU' - NEW: can be also written as
Track.album.name.iendswith('IBU')
- OLD:
- exact - exact match to value, sql
- Accessing a field with attribute access (chain of dot notation) can be used to construct
- You can provide
FilterGroupsnot only infilter()andexclude()but also in:get()get_or_none()get_or_create()first()all()delete()
- With
FilterGroups(ormar.and_andormar.or_) you can now use:&- asand_instead of next level of nesting|- as `or_' instead of next level of nesting~- as negation of the filter group
- To combine groups of filters into one set of conditions use
&(sqlAND) and|(sqlOR)# Following queries are equivalent: # sql: ( product.name = 'Test' AND product.rating >= 3.0 ) # ormar OPTION 1 - OLD one Product.objects.filter(name='Test', rating__gte=3.0).get() # ormar OPTION 2 - OLD one Product.objects.filter(ormar.and_(name='Test', rating__gte=3.0)).get() # ormar OPTION 3 - NEW one (field access) Product.objects.filter((Product.name == 'Test') & (Product.rating >=3.0)).get()
- Same applies to nested complicated filters
# Following queries are equivalent: # sql: ( product.name = 'Test' AND product.rating >= 3.0 ) # OR (categories.name IN ('Toys', 'Books')) # ormar OPTION 1 - OLD one Product.objects.filter(ormar.or_( ormar.and_(name='Test', rating__gte=3.0), categories__name__in=['Toys', 'Books']) ).get() # ormar OPTION 2 - NEW one (instead of nested or use `|`) Product.objects.filter( ormar.and_(name='Test', rating__gte=3.0) | ormar.and_(categories__name__in=['Toys', 'Books']) ).get() # ormar OPTION 3 - NEW one (field access) Product.objects.filter( ((Product.name='Test') & (Product.rating >= 3.0)) | (Product.categories.name << ['Toys', 'Books']) ).get()
- Now you can also use field access to provide OrderActions to
order_by()- Order ascending:
- OLD:
Product.objects.order_by("name").all() - NEW:
Product.objects.order_by(Product.name.asc()).all()
- OLD:
- Order descending:
- OLD:
Product.objects.order_by("-name").all() - NEW:
Product.objects.order_by(Product.name.desc()).all()
- OLD:
- You can of course also combine different models and many order_bys:
Product.objects.order_by([Product.category.name.asc(), Product.name.desc()]).all()
- Order ascending:
🐛 Fixes
- Not really a bug but rather inconsistency. Providing a filter with nested model i.e.
album__category__name = 'AA'
is checking if album and category models are included inselect_related()and if not it's auto-adding them there.
The same functionality was not working forFilterGroups(and_andor_), now it works (also for python style filters which returnFilterGroups).
One sided relations and more powerful save_related
0.10.3
✨ Features
-
ForeignKeyandManyToManynow supportskip_reverse: bool = Falseflag #118.
If you setskip_reverseflag internally the field is still registered on the other
side of the relationship so you can:filterby related models fields from reverse modelorder_byby related models fields from reverse model
But you cannot:
- access the related field from reverse model with
related_name - even if you
select_relatedfrom reverse side of the model the returned models won't be populated in reversed instance (the join is not prevented so you still canfilterandorder_by) - the relation won't be populated in
dict()andjson() - you cannot pass the nested related objects when populating from
dict()orjson()(also throughfastapi). It will be either ignored or raise error depending onextrasetting in pydanticConfig.
-
Model.save_related()now can save whole data tree in once #148
meaning:-
it knows if it should save main
Modelor relatedModelfirst to preserve the relation -
it saves main
Modelif- it's not
saved, - has no
pkvalue - or
save_all=Trueflag is set
in those cases you don't have to split save into two calls (
save()andsave_related()) - it's not
-
it supports also
ManyToManyrelations -
it supports also optional
Throughmodel values for m2m relations
-
-
Add possibility to customize
Throughmodel relation field names. -
By default
Throughmodel relation names default to related model name in lowercase.
So in example like this:... # course declaration ommited class Student(ormar.Model): class Meta: database = database metadata = metadata id: int = ormar.Integer(primary_key=True) name: str = ormar.String(max_length=100) courses = ormar.ManyToMany(Course) # will produce default Through model like follows (example simplified) class StudentCourse(ormar.Model): class Meta: database = database metadata = metadata tablename = "students_courses" id: int = ormar.Integer(primary_key=True) student = ormar.ForeignKey(Student) # default name course = ormar.ForeignKey(Course) # default name
-
To customize the names of fields/relation in Through model now you can use new parameters to
ManyToMany:through_relation_name- name of the field leading to the model in whichManyToManyis declaredthrough_reverse_relation_name- name of the field leading to the model to whichManyToManyleads to
Example:
... # course declaration ommited class Student(ormar.Model): class Meta: database = database metadata = metadata id: int = ormar.Integer(primary_key=True) name: str = ormar.String(max_length=100) courses = ormar.ManyToMany(Course, through_relation_name="student_id", through_reverse_relation_name="course_id") # will produce default Through model like follows (example simplified) class StudentCourse(ormar.Model): class Meta: database = database metadata = metadata tablename = "students_courses" id: int = ormar.Integer(primary_key=True) student_id = ormar.ForeignKey(Student) # set by through_relation_name course_id = ormar.ForeignKey(Course) # set by through_reverse_relation_name