Skip to content

Releases: djangonauts/django-hstore

1.4.1 [2015-12-07]

07 Dec 19:40
Compare
Choose a tag to compare
  • #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

28 Jun 16:44
Compare
Choose a tag to compare
  • #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

07 Jun 09:22
Compare
Choose a tag to compare
  • #110: change id to pk on model_instance check

1.3.7

24 Apr 10:26
Compare
Choose a tag to compare
  • 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

10 Apr 12:23
Compare
Choose a tag to compare

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

05 Oct 20:08
Compare
Choose a tag to compare

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

28 Sep 16:44
Compare
Choose a tag to compare

RELEASE NOTES:

  • added reload schema feature #73

1.3.3

24 Sep 16:05
Compare
Choose a tag to compare

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

06 Sep 19:11
Compare
Choose a tag to compare

RELEASE NOTES:

  • removed custom register_hstore function in favour of psycopg2 builtin one
  • added hstore app bootstrapping in django_hstore.hstore

1.3.1

26 Aug 08:20
Compare
Choose a tag to compare

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