Release history and notes¶
Sequence based identifiers are used for versioning (schema follows below):
major.minor[.revision]
- It’s always safe to upgrade within the same minor version (for example, from 0.3 to 0.3.4).
- Minor version changes might be backwards incompatible. Read the release notes carefully before upgrading (for example, when upgrading from 0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.
0.19¶
2019-08-06
Note
Dropping support for Elasticsearch versions prior 6.x. This is unfortunate,
but this project depends on the upstream django-elasticsearch-dsl where
as of version 6.4.x the support for older Elasticsearch versions was
dropped. Use django-elasticsearch-dsl-drf version 0.18 if you need
to work with 5.x or 2.x.
- Dropping support for Elasticsearch versions prior to 6.x.
0.18¶
2019-06-26
Note
Support for Django versions prior 1.11 has been dropped. Support for Django REST Framework prior 3.9 has been dropped.
- Dropping support for Django versions prior 1.11.
- Dropping support for Django REST Framework versions prior 3.9.
- Fix Django REST Framework deprecations.
0.17.7¶
2019-05-30
Note
Support for Django 1.8, 1.9 and 1.10 will be dropped in the next release. As usual, compatibility shims won’t be removed directly. The change will affect the test matrix only first.
- Prevent unicode errors in tests on Python 2.7.
- Fixes in occasionally failing search test (
test_searchandtest_filtering_geo_spatial). - Working travis.
- Fixed issue with errors on empty
idsfilter.
0.17.5¶
2019-04-03
Note
Dropping support for Python 3.4. As of this version everything works, but no longer tested.
- Minor fixes.
- Dropping Python 3.4 support.
- Django 2.2 support.
0.17.1¶
2018-12-12
- Skipping the new context suggester tests for Elasticsearch 2.x and a number of other 2.x related fixes in tests.
- A number of 5.x fixes in tests.
0.17¶
2018-12-12
Note
Release supported by whythawk.
- Added support for context suggesters (category and geo). Note, that this functionality is available for Elasticsearch 5.x and 6.x (thus, not for Elasticsearch 2.x).
- Added support for size attribute on suggesters.
0.16.3¶
2018-10-31
Note
Release dedicated to Charles Aznavour.
- Make it possible to ignore certain Elastic exceptions by providing the
appropriate
ignoreargument (on the view level). Default behaviour is intact. Set it to a list of integers (error codes) if you need it so.
0.16¶
2018-09-10
Note
This release contains minor backwards incompatible changes. You might need to update your code if you have been making use of nested search.
Old way of declaring nested search fields
search_nested_fields = {
'country': ['name'],
'country.city': ['name'],
}
New way of declaring nested search fields
search_nested_fields = {
'country': {
'path': 'country',
'fields': ['name'],
},
'city': {
'path': 'country.city',
'fields': ['name'],
},
}
- Changes in nested search. This affects usage of both historical
SearchFilterBackendandCompoundSearchFilterBackend. Update your code accordingly. - Take meta property
usingof the documentMetainto consideration.
0.13.2¶
2018-08-03
- Successfully tested against Python 3.7 and Django 2.1.
- Unified the base
BaseSearchFilterBackendclass. - Minor clean up and fixes in docs.
- Upgrading test suite to modern versions (
pytest,tox,factory_boy,Faker). Removing unused dependencies from requirements (drf-extensions). - Fixed missing PDF generation in offline documentation (non ReadTheDocs).
The
rst2pdfpackage (which does not support Python 3) has been replaced withrinohtypepackage (which does support Python 3).
0.13¶
2018-07-23
Note
Release dedicated to Guido van Rossum, the former Python BDFL, who resigned from his BDFL position recently. Guido knew it better than we all do. His charisma, talent and leadership will be certainly missed a lot by the community. Thumbs up again for the best BDFL ever.
- The
SimpleQueryStringSearchFilterBackendbackend has been implemented. - Minor fixes in the
MultiMatchSearchFilterBackendbackend.
0.12¶
2018-07-21
- New-style Search Filter Backends. Old style
SearchFilterBackendis still supported (until at least version 0.16), but is deprecated. Migrate toCompoundSearchFilterBackend.MultiMatchSearchFilterBackendintroduced (the name speaks for itself). - From now on, your views would also work with model- and object-level
permissions of the Django REST Framework (such as
DjangoModelPermissions,DjangoModelPermissionsOrAnonReadOnlyandDjangoObjectPermissions). Correspondent model or object would be used for that. If you find it incorrect in your case, write custom permissions and declare the explicitly in your view-sets. - Fixed geo-spatial
geo_distanceordering for Elastic 5.x. and 6.x. - Fixes occasionally failing tests.
0.11¶
2018-07-15
Note
This release contains backwards incompatible changes.
You should update your Django code and front-end parts of your applications
that were relying on the complex queries using | and : chars in the
GET params.
Note
If you have used custom filter backends using SEPARATOR_LOOKUP_VALUE,
SEPARATOR_LOOKUP_COMPLEX_VALUE or
SEPARATOR_LOOKUP_COMPLEX_MULTIPLE_VALUE constants or
split_lookup_complex_value helper method of the FilterBackendMixin,
you most likely want to run your functional tests to see if everything
still works.
Note
Do not keep things as they were in your own fork, since new search backends
will use the | and : symbols differently.
Examples of old API requests vs new API requests
Note
Note, that | and : chars were mostly replaced with __ and ,.
Old API requests
http://127.0.0.1:8080/search/publisher/?search=name|reilly&search=city|london
http://127.0.0.1:8000/search/publishers/?location__geo_distance=100000km|12.04|-63.93
http://localhost:8000/api/articles/?id__terms=1|2|3
http://localhost:8000/api/users/?age__range=16|67|2.0
http://localhost:8000/api/articles/?id__in=1|2|3
http://localhost:8000/api/articles/?location__geo_polygon=40,-70|30,-80|20,-90|_name:myname|validation_method:IGNORE_MALFORMED
New API requests
http://127.0.0.1:8080/search/publisher/?search=name:reilly&search=city:london
http://127.0.0.1:8000/search/publishers/?location__geo_distance=100000km__12.04__-63.93
http://localhost:8000/api/articles/?id__terms=1__2__3
http://localhost:8000/api/users/?age__range=16__67__2.0
http://localhost:8000/api/articles/?id__in=1__2__3
http://localhost:8000/api/articles/?location__geo_polygon=40,-70__30,-80__20,-90___name,myname__validation_method,IGNORE_MALFORMED
SEPARATOR_LOOKUP_VALUEhas been removed. UseSEPARATOR_LOOKUP_COMPLEX_VALUEandSEPARATOR_LOOKUP_COMPLEX_MULTIPLE_VALUEinstead.SEPARATOR_LOOKUP_NAMEhas been added.- The method
split_lookup_complex_valuehas been removed. Usesplit_lookup_complex_valueinstead. - Default filter lookup option is added. In past, if no specific lookup was
provided and there were multiple values for a single field to filter on, by
default
termsfilter was used. Thetermlookup was used by default in similar situation for a single value to filter on. It’s now possible to declare default lookup which will be used when no lookup is given. - Removed deprecated
viewsmodule. Import fromviewsetsinstead. - Removed undocumented
get_counthelper fromhelpersmodule.
0.9¶
2018-07-04
- Introduced
post_filtersupport. - Generalised the
FilteringFilterBackendbackend. BothPostFilterFilteringFilterBackendandNestedFilteringFilterBackendbackends are now primarily based on it. - Reduced Elastic queries from 3 to 2 when using
LimitOffsetPagination.
0.8.4¶
2018-06-27
Note
Release supported by Goldmund, Wyldebeast & Wunderliebe.
- Added
NestedFilteringFilterBackendbackend. - Documentation updated with examples of implementing a nested aggregations/facets.
0.8.3¶
2018-06-25
- It’s possible to retrieve original dictionary from
DictionaryProxyobject. - Added helper wrappers and helper functions as a temporary fix for issues
in the
django-elasticsearch-dsl.
0.8.1¶
2018-06-05
- Fixed wrong filter name in functional suggesters results into an error on Django 1.10 (and prior).
- Documentation improvements.
0.8¶
2018-06-01
Note
Release supported by Goldmund, Wyldebeast & Wunderliebe.
Note
This release contain minor backwards incompatible changes. You should update your code.
BaseDocumentViewSet(which from now on does not containsuggestfunctionality) has been renamed toDocumentViewSet(which does containsuggestfunctionality).
- You should no longer import from
django_elasticsearch_dsl_drf.views. Instead, import fromdjango_elasticsearch_dsl_drf.viewsets.
- You should no longer import from
- Deprecated
django_elasticsearch_dsl_drf.viewsin favour ofdjango_elasticsearch_dsl_drf.viewsets. - Suggest action/method has been moved to
SuggestMixinclass. FunctionalSuggestMixinclass introduced which resembled functionality of theSuggestMixinwith several improvements/additions, such as advanced filtering and context-aware suggestions.- You can now define a default suggester in
suggester_fieldswhich will be used if you do not provide suffix for the filter name.
0.7.2¶
2018-05-09
Note
Release dedicated to the Victory Day, the victims of the Second World War and Liberation of Shushi.
- Django REST framework 3.8.x support.
0.7.1¶
2018-04-04
Note
Release supported by Goldmund, Wyldebeast & Wunderliebe.
- Add query boost support for search fields.
0.7¶
2018-03-08
Note
Dear ladies, congratulations on International Women’s Day
- CoreAPI/CoreSchema support.
0.6.2¶
2017-12-29
- Update example project (and the tests that are dependant on the example project) to work with Django 2.0.
- Set minimal requirement for
django-elasticsearch-dslto 3.0.
0.5.1¶
2017-10-18
- Fixed serialization of complex nested structures (lists of nested objects).
- Documentation fixes.
0.5¶
2017-10-05
Note
This release contains changes that might be backwards incompatible
for your project. If you have used dynamic document serializer
django_elasticsearch_dsl_drf.serializers.DocumentSerializer
with customisations (with use of serializers.SerializerMethodField,
having the value parsed to JSON), just remove the custom parts.
- Support for
ObjectField,NestedField,GeoPointField,ListField,GeoShapeField(and in general, nesting fields either as a dictionary or list should not be a problem at all). - Dynamic serializer has been made less strict.
- Added
get_paginated_response_contextmethods to bothPageNumberPaginationandLimitOffsetPaginationpagination classes to simplify customisations.
0.4.4¶
2017-10-02
- Documentation improvements (Elasticsearch suggestions).
- More tests (term and phrase suggestions).
- Code style fixes.
0.4¶
2017-09-26
Note
This release contains changes that might be backwards incompatible
for your project. Make sure to add the DefaultOrderingFilterBackend
everywhere you have used the OrderingFilterBackend, right after the
latter.
GeoSpatialFilteringFilterBackendfiltering backend, supportinggeo_distanceandgeo_polygongeo-spatial queries.GeoSpatialOrderingFilterBackendordering backend, supporting ordering of results forgeo_distancefilter.OrderingFilterBackendno longer provides defaults when no ordering is given. In order to take care of the defaults include theDefaultOrderingFilterBackendin the list offilter_backends(after all other ordering backends).
0.3.12¶
2017-09-21
- Added
geo_distancefilter. Note, that although functionally the filter would not change its’ behaviour, it is likely to be moved to a separate backend (geo_spatial). For now use as is. - Minor fixes.
0.3.6¶
2017-09-07
- Fixed suggestions test for Elasticsearch 5.x.
- Added compat module for painless testing of Elastic 2.x to Elastic 5.x transition.
0.1.6¶
2017-06-23
- Implemented
gt,gte,ltandltefunctional query lookups. - Implemented
idsnative filter lookup.
0.1.5¶
2017-06-22
- Implemented
endswithandcontainsfunctional filters. - Added tests for
wildcard,exists,excludeandisnullfilters. Improvedrangefilter tests. - Improve
more_like_thishelper test. - Improve ordering tests.
- Two additional arguments added to the
more_like_thishelper:min_doc_freqandmax_doc_freq. - Minor documentation improvements.
0.1.3¶
2017-06-21
- Added tests for
more_like_thishelper,rangeandprefixfilters. - Minor documentation improvements.