Skip to content

Commit 3378c9b

Browse files
prepare 0.20.1
1 parent 3e691b2 commit 3378c9b

File tree

9 files changed

+67
-2
lines changed

9 files changed

+67
-2
lines changed

.hgignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ syntax: regexp
1515
^\.pytest_cache/
1616
node_modules/
1717
yarn-error\.log
18+
^coverage\.xml
1819

1920
^MANIFEST\.in~
2021
^tmp/

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
1824
0.20
1925
----
2026
2019-08-17

docs/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
1824
0.20
1925
----
2026
2019-08-17

docs/dependencies.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,22 @@ Current compatibility matrix is:
2323
You 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+
2642
As of ``django-elasticsearch-dsl-drf`` 0.19, support for Elasticsearch versions
2743
prior 6.x has been dropped.
2844

docs/faq.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,13 @@ How can I sync my database with Elasticsearch indexes.
6767

6868
It'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>`_.

docs_src/dependencies.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,22 @@ Current compatibility matrix is:
2323
You 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+
2642
As of ``django-elasticsearch-dsl-drf`` 0.19, support for Elasticsearch versions
2743
prior 6.x has been dropped.
2844

docs_src/faq.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,13 @@ How can I sync my database with Elasticsearch indexes.
6767

6868
It'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>`_.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import find_packages, setup
44

5-
version = '0.20'
5+
version = '0.20.1'
66

77
DOCS_TRANSFORMATIONS = (
88
(

src/django_elasticsearch_dsl_drf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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'

0 commit comments

Comments
 (0)