Skip to content

Latest commit

 

History

History
135 lines (97 loc) · 5.91 KB

CHANGES.rst

File metadata and controls

135 lines (97 loc) · 5.91 KB

Changelog

Version 1.5.0 [unreleased]

WIP

Version 1.4.2 [2016-04-02]

  • #144: fixed 1.4.1 regression: "TypeError: Decimal is not JSON serializable"
  • #147: fixed version comparison (broken for django 1.10)
  • #148: fixed broken image "src" for icons in admin for Django >= 1.9

Version 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

Version 1.4.0 [2015-06-28]

  • #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

Version 1.3.8 [2015-06-07]

  • #110: change id to pk on model_instance check

Version 1.3.7 [2015-04-24]

  • 9516dd7: Removed deprecated transaction.is_managed in favour of transaction.atomic for django >= 1.6
  • eeda0e5: Removed import for django <= 1.3 in query.py
  • #103: Fixed migration bug in VirtualField

Version 1.3.6 [2015-04-10]

  • #80: added SerializedDictionaryField
  • #89: avoided using jQuery global variable $ in admin widget
  • #90: added local copy of underscore.js
  • #92: added workaround to handle none values in schema mode
  • #98: fixed "don't force DatetimeField to utcnow()" in schema mode
  • #100: fixed "contains boolean bug" in query.py

Version 1.3.5 [2014-10-05]

  • #72: automatic type casting in lookup queries
  • #74: added isnull lookup to filter by is null on individual key/value pairs

Version 1.3.4 [2014-09-28]

  • #73: added reload schema feature

Version 1.3.3 [2014-09-24]

  • #71: empty HStoreDict.unicode() correctly returns {}
  • #69: HStoreField default value in case of null=True is empty HStoreDict instead of None

Version 1.3.2 [2014-09-06]

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

Version 1.3.1 [2014-08-26]

  • schema mode usage simplification
  • #57: fixed schema mode compatibility with south migrations
  • fixed compatibility with django 1.7 makemigrations command
  • #59: get method of HStoreDict defaults to None
  • #60: added support for long integers
  • minor improvements to support django-rest-framework-hstore extension

Version 1.3.0 [2014-08-05]

  • schema mode
  • compare by multiple keys in comparison lookups (lt, gt, lte, gte)

Version 1.2.5 [2014-06-28]

  • introduced DJANGO_HSTORE_ADAPTER_REGISTRATION
  • #45: compatibility with SQLAlchemy
  • #44: fixed unique_together bug
  • #46: fixed admin widget error list
  • fixed admin inline issue in django 1.6 default admin
  • TabularInline is now explicitly unsupported

Version 1.2.4 [2014-06-18]

  • HSTORE_GLOBAL_REGISTER setting
  • added support for Decimal values

Version 1.2.3 [2014-04-17]

  • added experimental compatibility with django 1.7
  • psycopg2 backend fixes
  • minor fixes to CSS of admin widget

Version 1.2.2 [2014-03-11]

  • test runner improvements
  • allow custom widgets
  • updated docs with multidb settings (disable hstore on specific DBs)
  • fixed ORM null filtering
  • do not register HSTORE on non-postgresql DBs

Version 1.2.1 [2014-01-23]

  • added Python3 support
  • dropped automatic HStore registration
  • fixed gis imports when geodjango is not installed

Version 1.2 [2014-01-04]

  • Fist release of 1.2.x series.