Skip to content

Commit 4e7f1e2

Browse files
authored
Prepare release 2.10.8 (#467)
1 parent 6976616 commit 4e7f1e2

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [2.10.8] - 2025-08-06
4+
5+
* Fixes [issue-465](https://github.com/danirus/django-comments-xtd/issues/465): Convert view `preview_user_avatar` in a Class-based-view that inherits from `DefaultsMixin`, so that it returns a JSON response.
6+
37
## [2.10.7] - 2025-07-10
48

59
* Fixes [issue-462](https://github.com/danirus/django-comments-xtd/issues/462): function `get_app_model_options` did not work as expected when passing commenting options only through the `"default"` key.

django_comments_xtd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_form():
1717
return import_string(settings.COMMENTS_XTD_FORM_CLASS)
1818

1919

20-
VERSION = (2, 10, 7, "f", 0) # following PEP 440
20+
VERSION = (2, 10, 8, "f", 0) # following PEP 440
2121

2222

2323
def get_version():

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
# The short X.Y version.
6868
version = '2.10'
6969
# The full version, including alpha/beta/rc tags.
70-
release = '2.10.7'
70+
release = '2.10.8'
7171

7272
releases = [
7373
"latest",

docs/javascript.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ Which results in:
131131
│ ├── commentform.test.jsx
132132
│ ├── reducer.test.jsx
133133
│ └── lib.test.js
134-
├── django-comments-xtd-2.10.7.js
135-
└── django-comments-xtd-2.10.7.min.js
134+
├── django-comments-xtd-2.10.8.js
135+
└── django-comments-xtd-2.10.8.min.js
136136
137137
The application entry point is located inside the ``index.js`` file. The
138138
``props`` passed to the **CommentBox** object are those declared in the

docs/tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,7 @@ Be sure your ``blog/post_detail.html`` looks like the following:
11921192
<script
11931193
type="text/javascript"
11941194
src="{% url 'javascript-catalog' %}"></script>
1195-
<script src="{% static 'django_comments_xtd/js/django-comments-xtd-2.10.7.js' %}"></script>
1195+
<script src="{% static 'django_comments_xtd/js/django-comments-xtd-2.10.8.js' %}"></script>
11961196
<script>
11971197
window.addEventListener('DOMContentLoaded', (_) => {
11981198
const tooltipQs = '[data-bs-toggle="tooltip"]';

example/comp/templates/articles/article_detail.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ <h2>{{ object.title }}</h2>
5656
polling_interval: 2000
5757
};
5858
</script>
59-
<script src="{% static 'django_comments_xtd/js/django-comments-xtd-2.10.7.min.js' %}"></script>
59+
<script src="{% static 'django_comments_xtd/js/django-comments-xtd-2.10.8.min.js' %}"></script>
6060
{% endblock %}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-comments-xtd-plugins",
3-
"version": "2.10.7",
3+
"version": "2.10.8",
44
"description": "Provides django-comments-xtd reactjs plugin",
55
"main": "app.js",
66
"scripts": {

0 commit comments

Comments
 (0)