File tree Expand file tree Collapse file tree 9 files changed +67
-2
lines changed
src/django_elasticsearch_dsl_drf Expand file tree Collapse file tree 9 files changed +67
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ syntax: regexp
1515^\.pytest_cache/
1616node_modules/
1717yarn-error\.log
18+ ^coverage\.xml
1819
1920^MANIFEST\.in~
2021^tmp/
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ 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.20.1
19+ ------
20+ 2019-08-18
21+
22+ - Minor Elasticsearch 7.x compatibility fixes.
23+
18240.20
1925----
20262019-08-17
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ 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.20.1
19+ ------
20+ 2019-08-18
21+
22+ - Minor Elasticsearch 7.x compatibility fixes.
23+
18240.20
1925----
20262019-08-17
Original file line number Diff line number Diff line change @@ -23,6 +23,22 @@ Current compatibility matrix is:
2323You are advised to use the latest version of `django-elasticsearch-dsl
2424<https://pypi.python.org/pypi/django-elasticsearch-dsl> `_.
2525
26+ The following versions have been tested and work well together:
27+
28+ +---------------+-------------------+--------------------------+
29+ | elasticsearch | elasticsearch-dsl | django-elasticsearch-dsl |
30+ +---------------+-------------------+--------------------------+
31+ | 2.4.1 | 2.2.0 | 0.5.1 |
32+ +---------------+-------------------+--------------------------+
33+ | 5.4.0 | 5.3.0 | 0.5.1 |
34+ +---------------+-------------------+--------------------------+
35+ | 6.3.0 | 6.1.0 | 0.5.1 |
36+ +---------------+-------------------+---------------------------
37+ | 6.3.0 | 6.4.0 | 6.4.2 |
38+ +---------------+-------------------+---------------------------
39+ | 7.0.2 | 7.0.0 | 7.0.0 |
40+ +---------------+-------------------+---------------------------
41+
2642As of ``django-elasticsearch-dsl-drf `` 0.19, support for Elasticsearch versions
2743prior 6.x has been dropped.
2844
Original file line number Diff line number Diff line change @@ -67,3 +67,13 @@ How can I sync my database with Elasticsearch indexes.
6767
6868It's documented `here <https://django-elasticsearch-dsl-drf.readthedocs.io/en/latest/quick_start.html#sample-partial-sync-using-custom-signals >`_.
6969
70+ **Question **
71+
72+ I keep getting ``[FORBIDDEN/12/index read-only / allow delete (api)] `` error
73+ when saving models despite having ``blocks={'read_only_allow_delete': None} ``,
74+ in settings.
75+
76+ **Answer **
77+
78+ Once of the possible reasons for the mentioned symptom might be `low disk space
79+ <https://discuss.elastic.co/t/forbidden-12-index-read-only-allow-delete-api/110282> `_.
Original file line number Diff line number Diff line change @@ -23,6 +23,22 @@ Current compatibility matrix is:
2323You are advised to use the latest version of `django-elasticsearch-dsl
2424<https://pypi.python.org/pypi/django-elasticsearch-dsl> `_.
2525
26+ The following versions have been tested and work well together:
27+
28+ +---------------+-------------------+--------------------------+
29+ | elasticsearch | elasticsearch-dsl | django-elasticsearch-dsl |
30+ +---------------+-------------------+--------------------------+
31+ | 2.4.1 | 2.2.0 | 0.5.1 |
32+ +---------------+-------------------+--------------------------+
33+ | 5.4.0 | 5.3.0 | 0.5.1 |
34+ +---------------+-------------------+--------------------------+
35+ | 6.3.0 | 6.1.0 | 0.5.1 |
36+ +---------------+-------------------+---------------------------
37+ | 6.3.0 | 6.4.0 | 6.4.2 |
38+ +---------------+-------------------+---------------------------
39+ | 7.0.2 | 7.0.0 | 7.0.0 |
40+ +---------------+-------------------+---------------------------
41+
2642As of ``django-elasticsearch-dsl-drf `` 0.19, support for Elasticsearch versions
2743prior 6.x has been dropped.
2844
Original file line number Diff line number Diff line change @@ -67,3 +67,13 @@ How can I sync my database with Elasticsearch indexes.
6767
6868It's documented `here <https://django-elasticsearch-dsl-drf.readthedocs.io/en/latest/quick_start.html#sample-partial-sync-using-custom-signals >`_.
6969
70+ **Question **
71+
72+ I keep getting ``[FORBIDDEN/12/index read-only / allow delete (api)] `` error
73+ when saving models despite having ``blocks={'read_only_allow_delete': None} ``,
74+ in settings.
75+
76+ **Answer **
77+
78+ Once of the possible reasons for the mentioned symptom might be `low disk space
79+ <https://discuss.elastic.co/t/forbidden-12-index-read-only-allow-delete-api/110282> `_.
Original file line number Diff line number Diff line change 22
33from setuptools import find_packages , setup
44
5- version = '0.20'
5+ version = '0.20.1 '
66
77DOCS_TRANSFORMATIONS = (
88 (
Original file line number Diff line number Diff line change 33"""
44
55__title__ = 'django-elasticsearch-dsl-drf'
6- __version__ = '0.20'
6+ __version__ = '0.20.1 '
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