- Support for Django DecimalField #141
- Indexing speedup by using parallel indexing. #213. Now you can pass --parallel or set ELASTICSEARCH_DSL_PARALLEL in your settings to get indexing speed boost while indexing through management command.
- Fixing name resolution in management command #206
- Small documentation fixes. #196
- Support Elasticsearch 7.0 (See PR #176)
- Added order by to paginate queryset properly (See PR #153)
- Remove standard token filter from README.md and test files
- Various documentation fixes
- Fix document importing path
- Update readme
- The DocType import has changed to Document
- Support elasticsearch-dsl>6.3.0
- Class Meta has changed to class Django (See PR #136)
- Add register_document decorator to register a document (See PR #136)
- Additional Bug fixing and others
- Limit elastsearch-dsl to supported versions
- Add Support for Elasticsearch 6 thanks to HansAdema
Django string fields now point to ES text field by default. Nothing should change for ES 2.X but if you are using ES 5.X, you may need to rebuild and/or update some of your documents.
- Fix prepare with related models when deleted (See PR #99)
- Fix unwanted calls to get_instances_from_related
- Fix for empty ArrayField (CBinyenya)
- Fix nested OneToOneField when related object doesn't exist (CBinyenya)
- Update elasticsearch-dsl minimal version
- Fix to_queryset with es 5.0/5.1
- Fix syncing of related objects when deleted
- Add django 2.0 support
- Convert lazy string to string before serialization
- Readme update (arielpontes)
- Update example app with get_instances_from_related
- Typo/grammar fixes
- Add a method on the Search class to return a django queryset from an es result
- Add a queryset_pagination option to DocType.Meta for allow the pagination of big django querysets during the index populating
- Remove the call to iterator method for the django queryset
- Fix DocType inheritance. The DocType is store in the registry as a class and not anymore as an instance
- Add support for resynching ES documents if related models are updated (HansAdema)
- Better management for django FileField and ImageField
- Fix some errors in the doc (barseghyanartur, diwu1989)
- Replace simple model signals with easier to customise signal processors (barseghyanartur)
- Add options to disable automatic index refreshes (HansAdema)
- Support defining DocType indexes through Meta class (HansAdema)
- Add option to set default Index settings through Django config (HansAdema)
- First release on PyPI.