Skip to content

Releases: rolobio/DictORM

Import restriction

10 Aug 23:16
bf9b8b1
Compare
Choose a tag to compare

Restricting the imports suggested by this project. Previously, dumps and such could be imported from dictorm. Only DictORM related imports are available.

Postgres 12

17 Oct 19:21
be05dea
Compare
Choose a tag to compare

Handling generated columns in Postgres 12.

v4.1.3

17 Sep 20:20
fb35069
Compare
Choose a tag to compare

Simple features and bugfixes.

Bugfix:

  • Table.get_one and Table.get_where will raise an exception when a keyword doesn't match a column.

Check Dict origin

31 May 17:10
2b74b9c
Compare
Choose a tag to compare

A Dict's origin can be confirmed using in operator.

>>> bob = Person(name='Bob')
>>> bob in Person
True
>>> bob in Car
False

Python 2.7 and < 3.6 dropped

30 May 21:30
f8f22c1
Compare
Choose a tag to compare

To enable type hinting, we have dropped support for Python version 2.7 and less than version 3.6.

If you need dictorm for those versions, use v3.8.4.

v3.8.4

30 May 21:10
e727650
Compare
Choose a tag to compare

Last version to support Python version 2.7 and versions less than 3.6.