Releases: djangonauts/django-hstore
Releases · djangonauts/django-hstore
1.4.1 [2015-12-07]
- #140: added support for django 1.9
- #139: dropped support for django 1.6 and python 2.6
- #128: added
CONNECTION_CREATED_SIGNAL_WEAKREF
1.4.0
- #107: added support for django 1.8
- #121: fixed "value not assignment" in forms.py
- #117: fixed
makemigrations
bug with django 1.8
- #118: improved
reload_schema
for django 1.8
- #111: fixed bug in create manager method when using
SerializedDictionaryField
1.3.8
- #110: change
id
to pk
on model_instance
check
1.3.7
- Removed deprecated
transaction.is_managed
in favour of transaction.atomic
for django >= 1.6
- Removed import for django <= 1.3 in query.py
- #103: Fixed migration bug in
VirtualField
1.3.6
RELEASE NOTES:
- added SerializedDictionaryField #80
- avoided using javascript global variable "$" in admin widget #89
- added local copy of underscore.js #90
- added workaround to handle none values in schema mode #92
- fixed "don't force DatetimeField to utcnow()" in schema mode #98
- fixed "contains boolean bug" in query.py #100
Thanks to @alukach, @i2xS, @amitu, @GregUK
1.3.5
RELEASE NOTES:
- automatic type casting in lookup queries #72
- added "isnull" lookup to filter by is null on individual key/value pairs #74
Thanks to @maurizi
1.3.4
RELEASE NOTES:
- added reload schema feature #73
1.3.3
RELEASE NOTES:
- empty HStoreDict.unicode() correctly returns '{}' #71
- HStoreField default value in case of null=True is empty HStoreDict instead of None #69
1.3.2
RELEASE NOTES:
- removed custom register_hstore function in favour of psycopg2 builtin one
- added hstore app bootstrapping in django_hstore.hstore
1.3.1
RELEASE NOTES:
- schema mode usage simplification
- fixed schema mode compatibility with south migrations #57
- fixed compatibility with django 1.7 makemigrations command
- HStoreDict get method defaults to None #59
- added support for long integers #60
- minor improvements to support django-rest-framework-hstore extension