Skip to content

Commit d90de08

Browse files
authored
Notifications - Update Apprise to 1.9.2 - Fixes custom posts:// gets:// etc URL's being double-encoded, fixes chantify:// notifications (#2868) (#2875) (#2870)
1 parent 360b4f0 commit d90de08

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

changedetectionio/tests/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ def test_body():
223223
def test_method():
224224
return request.method
225225

226-
# Where we POST to as a notification
227-
@live_server.app.route('/test_notification_endpoint', methods=['POST', 'GET'])
226+
# Where we POST to as a notification, also use a space here to test URL escaping is OK across all tests that use this. ( #2868 )
227+
@live_server.app.route('/test_notification endpoint', methods=['POST', 'GET'])
228228
def test_notification_endpoint():
229229

230230
with open("test-datastore/notification.txt", "wb") as f:

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dnspython==2.6.1 # related to eventlet fixes
3535
# jq not available on Windows so must be installed manually
3636

3737
# Notification library
38-
apprise==1.9.1
38+
apprise==1.9.2
3939

4040
# apprise mqtt https://github.com/dgtlmoon/changedetection.io/issues/315
4141
# use any version other than 2.0.x due to https://github.com/eclipse/paho.mqtt.python/issues/814

0 commit comments

Comments
 (0)