From 40053624faeb22d555dbebb9506d9a3582203514 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 9 Apr 2024 16:14:47 -0500 Subject: [PATCH 1/2] add upper bounds for `django-email-relay` --- src/django_twc_project/requirements.in.jinja | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/django_twc_project/requirements.in.jinja b/src/django_twc_project/requirements.in.jinja index 13a36352..9eb1517e 100644 --- a/src/django_twc_project/requirements.in.jinja +++ b/src/django_twc_project/requirements.in.jinja @@ -8,7 +8,9 @@ django-browser-reload django-click django-coverage-plugin django-debug-toolbar -django-email-relay +# upper bounds for `django-email-relay` since it runs distributed +# https://django-email-relay.westervelt.dev/en/latest/updating.html +django-email-relay<0.5 django-extensions django-filter django-flyio From b42e34e1f092f2c4391e6e4a0ed6791312766e4d Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 9 Apr 2024 16:16:49 -0500 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6375602..a04737c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Fixed + +- Added upper bounds for `django-email-relay` dependency. Since it runs distributed, with a central relay service that is responsible for sending emails, the roll-out of a new version should be more controlled. With the upper bounds, the version won't accidentally get bumped in day-to-day work (hopefully!). + ## [2024.14] ### Changed