Skip to content

Commit

Permalink
prepare 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Aug 17, 2019
1 parent 3e691b2 commit 3378c9b
Show file tree
Hide file tree
Showing 9 changed files with 67 additions and 2 deletions.
1 change: 1 addition & 0 deletions .hgignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ syntax: regexp
^\.pytest_cache/
node_modules/
yarn-error\.log
^coverage\.xml

^MANIFEST\.in~
^tmp/
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.20.1
------
2019-08-18

- Minor Elasticsearch 7.x compatibility fixes.

0.20
----
2019-08-17
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.20.1
------
2019-08-18

- Minor Elasticsearch 7.x compatibility fixes.

0.20
----
2019-08-17
Expand Down
16 changes: 16 additions & 0 deletions docs/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,22 @@ Current compatibility matrix is:
You are advised to use the latest version of `django-elasticsearch-dsl
<https://pypi.python.org/pypi/django-elasticsearch-dsl>`_.

The following versions have been tested and work well together:

+---------------+-------------------+--------------------------+
| elasticsearch | elasticsearch-dsl | django-elasticsearch-dsl |
+---------------+-------------------+--------------------------+
| 2.4.1 | 2.2.0 | 0.5.1 |
+---------------+-------------------+--------------------------+
| 5.4.0 | 5.3.0 | 0.5.1 |
+---------------+-------------------+--------------------------+
| 6.3.0 | 6.1.0 | 0.5.1 |
+---------------+-------------------+---------------------------
| 6.3.0 | 6.4.0 | 6.4.2 |
+---------------+-------------------+---------------------------
| 7.0.2 | 7.0.0 | 7.0.0 |
+---------------+-------------------+---------------------------

As of ``django-elasticsearch-dsl-drf`` 0.19, support for Elasticsearch versions
prior 6.x has been dropped.

Expand Down
10 changes: 10 additions & 0 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,13 @@ How can I sync my database with Elasticsearch indexes.

It's documented `here <https://django-elasticsearch-dsl-drf.readthedocs.io/en/latest/quick_start.html#sample-partial-sync-using-custom-signals>`_.

**Question**

I keep getting ``[FORBIDDEN/12/index read-only / allow delete (api)]`` error
when saving models despite having ``blocks={'read_only_allow_delete': None}``,
in settings.

**Answer**

Once of the possible reasons for the mentioned symptom might be `low disk space
<https://discuss.elastic.co/t/forbidden-12-index-read-only-allow-delete-api/110282>`_.
16 changes: 16 additions & 0 deletions docs_src/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,22 @@ Current compatibility matrix is:
You are advised to use the latest version of `django-elasticsearch-dsl
<https://pypi.python.org/pypi/django-elasticsearch-dsl>`_.

The following versions have been tested and work well together:

+---------------+-------------------+--------------------------+
| elasticsearch | elasticsearch-dsl | django-elasticsearch-dsl |
+---------------+-------------------+--------------------------+
| 2.4.1 | 2.2.0 | 0.5.1 |
+---------------+-------------------+--------------------------+
| 5.4.0 | 5.3.0 | 0.5.1 |
+---------------+-------------------+--------------------------+
| 6.3.0 | 6.1.0 | 0.5.1 |
+---------------+-------------------+---------------------------
| 6.3.0 | 6.4.0 | 6.4.2 |
+---------------+-------------------+---------------------------
| 7.0.2 | 7.0.0 | 7.0.0 |
+---------------+-------------------+---------------------------

As of ``django-elasticsearch-dsl-drf`` 0.19, support for Elasticsearch versions
prior 6.x has been dropped.

Expand Down
10 changes: 10 additions & 0 deletions docs_src/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,13 @@ How can I sync my database with Elasticsearch indexes.

It's documented `here <https://django-elasticsearch-dsl-drf.readthedocs.io/en/latest/quick_start.html#sample-partial-sync-using-custom-signals>`_.

**Question**

I keep getting ``[FORBIDDEN/12/index read-only / allow delete (api)]`` error
when saving models despite having ``blocks={'read_only_allow_delete': None}``,
in settings.

**Answer**

Once of the possible reasons for the mentioned symptom might be `low disk space
<https://discuss.elastic.co/t/forbidden-12-index-read-only-allow-delete-api/110282>`_.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import find_packages, setup

version = '0.20'
version = '0.20.1'

DOCS_TRANSFORMATIONS = (
(
Expand Down
2 changes: 1 addition & 1 deletion src/django_elasticsearch_dsl_drf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__title__ = 'django-elasticsearch-dsl-drf'
__version__ = '0.20'
__version__ = '0.20.1'
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = '2017-2019 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
Expand Down

0 comments on commit 3378c9b

Please sign in to comment.