Skip to content

Commit a82aa83

Browse files
authored
Allow international sms sending via bulk api endpoint (#382)
* update the utils version, allow international sms sending via csv
1 parent 1ec9278 commit a82aa83

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/waffles/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ docopt==0.6.2
22
Flask==2.3.3
33
markupsafe==2.1.5
44
setuptools==78.1.1 # required for distutils in Python 3.12
5-
git+https://github.com/cds-snc/notifier-utils.git@53.2.8#egg=notifications-utils
5+
git+https://github.com/cds-snc/notifier-utils.git@53.2.9#egg=notifications-utils

notifications_utils/recipients.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
remaining_messages=sys.maxsize, # TODO FF_ANNUAL_LIMIT removal - remove this param
9393
remaining_daily_messages=sys.maxsize,
9494
remaining_annual_messages=sys.maxsize,
95-
international_sms=False,
95+
international_sms=True, # allow sending to international sms via csv
9696
max_rows=50000,
9797
user_language="en",
9898
):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "notifications-utils"
3-
version = "53.2.8"
3+
version = "53.2.9"
44
description = "Shared python code for Notification - Provides logging utils etc."
55
authors = ["Canadian Digital Service"]
66
license = "MIT license"

0 commit comments

Comments
 (0)