File tree Expand file tree Collapse file tree 10 files changed +57
-9
lines changed
src/django_elasticsearch_dsl_drf Expand file tree Collapse file tree 10 files changed +57
-9
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,20 @@ are used for versioning (schema follows below):
1515 0.3.4 to 0.4).
1616- All backwards incompatible changes are mentioned in this document.
1717
18+ 0.19
19+ ----
20+ 2019-08-06
21+
22+ .. note ::
23+
24+ Dropping support for Elasticsearch versions prior 6.x. This is unfortunate,
25+ but this project depends on the upstream ``django-elasticsearch-dsl `` where
26+ as of version 6.4.x the support for older Elasticsearch versions was
27+ dropped. Use ``django-elasticsearch-dsl-drf `` version 0.18 if you need
28+ to work with 5.x or 2.x.
29+
30+ - Dropping support for Elasticsearch versions prior to 6.x.
31+
18320.18
1933----
20342019-06-26
Original file line number Diff line number Diff line change @@ -15,6 +15,20 @@ are used for versioning (schema follows below):
1515 0.3.4 to 0.4).
1616- All backwards incompatible changes are mentioned in this document.
1717
18+ 0.19
19+ ----
20+ 2019-08-06
21+
22+ .. note ::
23+
24+ Dropping support for Elasticsearch versions prior 6.x. This is unfortunate,
25+ but this project depends on the upstream ``django-elasticsearch-dsl `` where
26+ as of version 6.4.x the support for older Elasticsearch versions was
27+ dropped. Use ``django-elasticsearch-dsl-drf `` version 0.18 if you need
28+ to work with 5.x or 2.x.
29+
30+ - Dropping support for Elasticsearch versions prior to 6.x.
31+
18320.18
1933----
20342019-06-26
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Dependencies
22============
33**elasticsearch and elasticsearch-dsl **
44
5- Depending on your Elasticsearch version (either 2.x, 5.x or 6.x) you should
5+ Depending on your `` Elasticsearch `` version (either 2.x, 5.x or 6.x) you should
66use 2.x, 5.x or 6.x versions of the ``elasticsearch `` and ``elasticsearch-dsl ``
77packages accordingly.
88
@@ -11,13 +11,17 @@ packages accordingly.
1111You are advised to use the latest version of `django-elasticsearch-dsl
1212<https://pypi.python.org/pypi/django-elasticsearch-dsl> `_.
1313
14+ As of ``django-elasticsearch-dsl-drf `` 0.19, support for Elasticsearch versions
15+ prior 6.x has been dropped.
16+
1417**Django/ Django REST Framework **
1518
1619Initial version of this package was written for `djangorestframework
1720<https://pypi.python.org/pypi/djangorestframework> `_ 3.6.2.
1821
19- Starting from version 0.18 support for Django versions prior 1.11 and
20- Django REST Framework versions prior 3.9 has been dropped.
22+ Starting from ``django-elasticsearch-dsl-drf `` version 0.18, support for
23+ ``Django `` versions prior 1.11 and ``Django REST Framework `` versions prior 3.9
24+ has been dropped.
2125
2226Current compatibility matrix is:
2327
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ quickly switch between different Elasticsearch versions. Since this packages
55supports 2.x, 5.x and 6.x branches, you could make use of
66the following boxes/containers for development and testing.
77
8+ .. note ::
9+
10+ As of ``django-elasticsearch-dsl-drf `` 0.19, support for Elasticsearch
11+ versions prior 6.x has been dropped.
12+
813For all containers/boxes mentioned below, no authentication is required (for
914Elasticsearch).
1015
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Dependencies
22============
33**elasticsearch and elasticsearch-dsl **
44
5- Depending on your Elasticsearch version (either 2.x, 5.x or 6.x) you should
5+ Depending on your `` Elasticsearch `` version (either 2.x, 5.x or 6.x) you should
66use 2.x, 5.x or 6.x versions of the ``elasticsearch `` and ``elasticsearch-dsl ``
77packages accordingly.
88
@@ -11,13 +11,17 @@ packages accordingly.
1111You are advised to use the latest version of `django-elasticsearch-dsl
1212<https://pypi.python.org/pypi/django-elasticsearch-dsl> `_.
1313
14+ As of ``django-elasticsearch-dsl-drf `` 0.19, support for Elasticsearch versions
15+ prior 6.x has been dropped.
16+
1417**Django/ Django REST Framework **
1518
1619Initial version of this package was written for `djangorestframework
1720<https://pypi.python.org/pypi/djangorestframework> `_ 3.6.2.
1821
19- Starting from version 0.18 support for Django versions prior 1.11 and
20- Django REST Framework versions prior 3.9 has been dropped.
22+ Starting from ``django-elasticsearch-dsl-drf `` version 0.18, support for
23+ ``Django `` versions prior 1.11 and ``Django REST Framework `` versions prior 3.9
24+ has been dropped.
2125
2226Current compatibility matrix is:
2327
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ quickly switch between different Elasticsearch versions. Since this packages
55supports 2.x, 5.x and 6.x branches, you could make use of
66the following boxes/containers for development and testing.
77
8+ .. note ::
9+
10+ As of ``django-elasticsearch-dsl-drf `` 0.19, support for Elasticsearch
11+ versions prior 6.x has been dropped.
12+
813For all containers/boxes mentioned below, no authentication is required (for
914Elasticsearch).
1015
Original file line number Diff line number Diff line change 11elasticsearch==2.4.1
22elasticsearch-dsl==2.2.0
3+ django-elasticsearch-dsl==0.5.1
Original file line number Diff line number Diff line change 11elasticsearch==5.4.0
22elasticsearch-dsl==5.3.0
3+ django-elasticsearch-dsl==0.5.1
Original file line number Diff line number Diff line change 22
33from setuptools import find_packages , setup
44
5- version = '0.18 '
5+ version = '0.19 '
66
77DOCS_TRANSFORMATIONS = (
88 (
157157
158158install_requires = [
159159 'six>=1.9' ,
160- 'django-nine>=0.1.10 ' ,
160+ 'django-nine>=0.2 ' ,
161161 'django-elasticsearch-dsl>=0.3' ,
162162 'elasticsearch-dsl' ,
163163 'elasticsearch' ,
Original file line number Diff line number Diff line change 33"""
44
55__title__ = 'django-elasticsearch-dsl-drf'
6- __version__ = '0.18 '
6+ __version__ = '0.19 '
77__author__ = 'Artur Barseghyan <[email protected] >' 88__copyright__ = '2017-2019 Artur Barseghyan'
99__license__ = 'GPL 2.0/LGPL 2.1'
You can’t perform that action at this time.
0 commit comments