|
| 1 | +.. :changelog: |
| 2 | +
|
| 3 | +History |
| 4 | +------- |
| 5 | +7.1.4 (2020-07-05) |
| 6 | +~~~~~~~~~~~~~~~~~~ |
| 7 | +* Configure Elasticsearch _id dynamically from document (#272) |
| 8 | +* Use chain.from_iterable in for performance improvement (#278) |
| 9 | +* Handle case where SimpleLazyObject being treated as an Iterable (#255) |
| 10 | +* Camelcase default value in management command (#254) |
| 11 | +* Various updates and fixup in docs (#250, #276) |
| 12 | +* Start testing against Python 3.8 (#266) |
| 13 | + |
| 14 | + |
| 15 | +7.1.1 (2019-12-26) |
| 16 | +~~~~~~~~~~~~~~~~~~ |
| 17 | +* Adding detailed documentation and published to Read The Docs #222 |
| 18 | +* Resolve name resolution while delete, create index (#228) |
| 19 | +* Added support for Django 3.0. (#230) |
| 20 | +* Removing old Elasticsearc compatibility (#219) |
| 21 | +* Drop StringField in favor of TextField. |
| 22 | + |
| 23 | + |
| 24 | +7.1.0 (2019-10-29) |
| 25 | +~~~~~~~~~~~~~~~~~~ |
| 26 | +* Support for Django `DecimalField` #141 |
| 27 | +* Indexing speedup by using `parallel` indexing. #213. |
| 28 | + Now you can pass `--parallel` or set `ELASTICSEARCH_DSL_PARALLEL` |
| 29 | + in your settings to get indexing speed boost while indexing |
| 30 | + through management command. |
| 31 | +* Fixing name resolution in management command #206 |
| 32 | +* Small documentation fixes. #196 |
| 33 | + |
| 34 | + |
| 35 | +7.0.0 (2019-08-11) |
| 36 | +~~~~~~~~~~~~~~~~~~ |
| 37 | +* Support Elasticsearch 7.0 (See PR #176) |
| 38 | +* Added order by to paginate queryset properly (See PR #153) |
| 39 | +* Remove `standard` token filter from `README.md` and test files |
| 40 | +* Various documentation fixes |
| 41 | + |
| 42 | + |
| 43 | +6.4.2 (2019-07-26) |
| 44 | +~~~~~~~~~~~~~~~~~~ |
| 45 | +* Fix document importing path |
| 46 | +* Update readme |
| 47 | + |
| 48 | + |
| 49 | + |
| 50 | +6.4.1 (2019-06-14) |
| 51 | +~~~~~~~~~~~~~~~~~~ |
| 52 | +* The `DocType` import has changed to `Document` |
| 53 | + |
| 54 | + |
| 55 | + |
| 56 | +6.4.0 (2019-06-01) |
| 57 | +~~~~~~~~~~~~~~~~~~ |
| 58 | +* Support elasticsearch-dsl>6.3.0 |
| 59 | +* Class `Meta` has changed to class `Django` (See PR #136) |
| 60 | +* Add `register_document` decorator to register a document (See PR #136) |
| 61 | +* Additional Bug fixing and others |
| 62 | + |
| 63 | + |
| 64 | +0.5.1 (2018-11-07) |
| 65 | +~~~~~~~~~~~~~~~~~~ |
| 66 | +* Limit elastsearch-dsl to supported versions |
| 67 | + |
| 68 | +0.5.0 (2018-04-22) |
| 69 | +~~~~~~~~~~~~~~~~~~ |
| 70 | +* Add Support for Elasticsearch 6 thanks to HansAdema |
| 71 | + |
| 72 | +Breaking Change: |
| 73 | +~~~~~~~~~~~~~~~~ |
| 74 | +Django string fields now point to ES text field by default. |
| 75 | +Nothing should change for ES 2.X but if you are using ES 5.X, |
| 76 | +you may need to rebuild and/or update some of your documents. |
| 77 | + |
| 78 | + |
| 79 | +0.4.5 (2018-04-22) |
| 80 | +~~~~~~~~~~~~~~~~~~ |
| 81 | +* Fix prepare with related models when deleted (See PR #99) |
| 82 | +* Fix unwanted calls to get_instances_from_related |
| 83 | +* Fix for empty ArrayField (CBinyenya) |
| 84 | +* Fix nested OneToOneField when related object doesn't exist (CBinyenya) |
| 85 | +* Update elasticsearch-dsl minimal version |
| 86 | + |
| 87 | +0.4.4 (2017-12-13) |
| 88 | +~~~~~~~~~~~~~~~~~~ |
| 89 | +* Fix to_queryset with es 5.0/5.1 |
| 90 | + |
| 91 | +0.4.3 (2017-12-12) |
| 92 | +~~~~~~~~~~~~~~~~~~ |
| 93 | +* Fix syncing of related objects when deleted |
| 94 | +* Add django 2.0 support |
| 95 | + |
| 96 | +0.4.2 (2017-11-27) |
| 97 | +~~~~~~~~~~~~~~~~~~ |
| 98 | +* Convert lazy string to string before serialization |
| 99 | +* Readme update (arielpontes) |
| 100 | + |
| 101 | +0.4.1 (2017-10-17) |
| 102 | +~~~~~~~~~~~~~~~~~~ |
| 103 | +* Update example app with get_instances_from_related |
| 104 | +* Typo/grammar fixes |
| 105 | + |
| 106 | +0.4.0 (2017-10-07) |
| 107 | +~~~~~~~~~~~~~~~~~~ |
| 108 | +* Add a method on the Search class to return a django queryset from an es result |
| 109 | +* Add a queryset_pagination option to DocType.Meta for allow the pagination of |
| 110 | + big django querysets during the index populating |
| 111 | +* Remove the call to iterator method for the django queryset |
| 112 | +* Fix DocType inheritance. The DocType is store in the registry as a class and not anymore as an instance |
| 113 | + |
| 114 | + |
| 115 | +0.3.0 (2017-10-01) |
| 116 | +~~~~~~~~~~~~~~~~~~ |
| 117 | +* Add support for resynching ES documents if related models are updated (HansAdema) |
| 118 | +* Better management for django FileField and ImageField |
| 119 | +* Fix some errors in the doc (barseghyanartur, diwu1989) |
| 120 | + |
| 121 | +0.2.0 (2017-07-02) |
| 122 | +~~~~~~~~~~~~~~~~~~ |
| 123 | +* Replace simple model signals with easier to customise signal processors (barseghyanartur) |
| 124 | +* Add options to disable automatic index refreshes (HansAdema) |
| 125 | +* Support defining DocType indexes through Meta class (HansAdema) |
| 126 | +* Add option to set default Index settings through Django config (HansAdema) |
| 127 | + |
| 128 | +0.1.0 (2017-05-26) |
| 129 | +~~~~~~~~~~~~~~~~~~ |
| 130 | +* First release on PyPI. |
0 commit comments