Skip to content

Commit 8daad98

Browse files
authored
1.1.0 release
Signed-off-by: Gagan Deep <[email protected]> Signed-off-by: Federico Capoano <[email protected]>
1 parent 168acd8 commit 8daad98

File tree

4 files changed

+45
-6
lines changed

4 files changed

+45
-6
lines changed

CHANGES.rst

+41-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,49 @@
11
Changelog
22
=========
33

4-
Version 1.1.0 [unreleased]
4+
Version 1.1.0 [2024-11-20]
55
--------------------------
66

7-
WIP
7+
Features
8+
~~~~~~~~
9+
10+
- Added support for `defining related object links in notification
11+
configurations
12+
<https://github.com/openwisp/openwisp-notifications/pull/250>`_.
13+
- Introduced a `"generic_message" notification type
14+
<https://openwisp.io/docs/dev/notifications/user/notification-types.html#generic-message>`_
15+
to deliver custom notifications in the user interface.
16+
- Enabled filtering of ``NotificationSetting`` using ``organization_slug``
17+
in the REST API.
18+
19+
Changes
20+
~~~~~~~
21+
22+
- `Only users with verified email addresses will receive email
23+
notifications
24+
<https://github.com/openwisp/openwisp-notifications/issues/270>`_.
25+
26+
Dependencies
27+
++++++++++++
28+
29+
- Bumped ``django-notifications-hq~=1.8.3``.
30+
- Bumped ``markdown~=3.6.0``.
31+
- Bumped ``openwisp-users~=1.1.0``.
32+
- Bumped ``openwisp-utils[rest,celery]~=1.1.1``.
33+
- Added support for Python ``3.10``.
34+
- Dropped support for Python ``3.7``.
35+
- Added support for Django ``4.2.x``.
36+
- Dropped support for Django ``4.0.x``.
37+
38+
Bugfixes
39+
~~~~~~~~
40+
41+
- Fixed `issue where users received multiple identical notifications
42+
<https://github.com/openwisp/openwisp-notifications/issues/277>`_ when
43+
member of multiple organizations.
44+
- Increased ``timeoutInterval`` for the ``ReconnectingWebSocket`` to ``7``
45+
seconds to prevent termination due to timeout on slow network
46+
connections.
847

948
Version 1.0.3 [2022-08-03]
1049
--------------------------

openwisp_notifications/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 1, 0, 'alpha')
1+
VERSION = (1, 1, 0, 'final')
22
__version__ = VERSION # alias
33

44

requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
openwisp-utils[qa,selenium]~=1.1.0
1+
openwisp-utils[qa,selenium]~=1.1.1
22
django-cors-headers~=4.4.0
33
django-redis~=5.4.0
44
channels_redis~=4.2.0

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
django-notifications-hq~=1.8.3
22
channels~=3.0.2
3-
openwisp-users @ https://github.com/openwisp/openwisp-users/tarball/master
4-
openwisp-utils[rest,celery]~=1.1.0
3+
openwisp-users~=1.1.0
4+
openwisp-utils[rest,celery]~=1.1.1
55
markdown~=3.7.0

0 commit comments

Comments
 (0)