plain.email 0.14.0__py3-none-any.whl → 0.15.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- plain/email/CHANGELOG.md +10 -0
- plain/email/default_settings.py +3 -1
- {plain_email-0.14.0.dist-info → plain_email-0.15.0.dist-info}/METADATA +1 -1
- {plain_email-0.14.0.dist-info → plain_email-0.15.0.dist-info}/RECORD +6 -6
- {plain_email-0.14.0.dist-info → plain_email-0.15.0.dist-info}/WHEEL +0 -0
- {plain_email-0.14.0.dist-info → plain_email-0.15.0.dist-info}/licenses/LICENSE +0 -0
plain/email/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# plain-email changelog
|
|
2
2
|
|
|
3
|
+
## [0.15.0](https://github.com/dropseed/plain/releases/plain-email@0.15.0) (2026-01-15)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- `EMAIL_HOST_PASSWORD` is now marked as a `Secret` type, ensuring the password is masked when displaying settings in CLI output ([7666190](https://github.com/dropseed/plain/commit/7666190305e13ebd1fc9b536e6415e863c2c0b25))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- No changes required
|
|
12
|
+
|
|
3
13
|
## [0.14.0](https://github.com/dropseed/plain/releases/plain-email@0.14.0) (2026-01-13)
|
|
4
14
|
|
|
5
15
|
### What's changed
|
plain/email/default_settings.py
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
from plain.runtime import Secret
|
|
2
|
+
|
|
1
3
|
# The email backend to use. For possible shortcuts see plain.email.
|
|
2
4
|
# The default is to use the SMTP backend.
|
|
3
5
|
# Third-party backends can be specified by providing a Python path
|
|
@@ -19,7 +21,7 @@ EMAIL_USE_LOCALTIME: bool = False
|
|
|
19
21
|
|
|
20
22
|
# Optional SMTP authentication information for EMAIL_HOST.
|
|
21
23
|
EMAIL_HOST_USER: str = ""
|
|
22
|
-
EMAIL_HOST_PASSWORD: str = ""
|
|
24
|
+
EMAIL_HOST_PASSWORD: Secret[str] = "" # type: ignore[assignment]
|
|
23
25
|
EMAIL_USE_TLS: bool = True
|
|
24
26
|
EMAIL_USE_SSL: bool = False
|
|
25
27
|
EMAIL_SSL_CERTFILE: str | None = None
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
plain/email/CHANGELOG.md,sha256=
|
|
1
|
+
plain/email/CHANGELOG.md,sha256=5o266slsieqY_0Ci5-GeE93uTESuZU5xR63tpxyUb3o,3289
|
|
2
2
|
plain/email/README.md,sha256=JRL1Q3S0KAnZSe2u7xp56kgLPq3zFUDeckYWOT9igr8,7024
|
|
3
3
|
plain/email/__init__.py,sha256=_wQC03wth7dgSqKaFG3IGkdJN5yhXfDH7M7pLNYm7IQ,3391
|
|
4
|
-
plain/email/default_settings.py,sha256=
|
|
4
|
+
plain/email/default_settings.py,sha256=dZlKwsLBAJSZ8cRt117Db3qPf97xbPUaGEHbUmlv2CU,881
|
|
5
5
|
plain/email/message.py,sha256=Wlb0qyxmIow3dWIvFEfDuj-G041x-L-aa7GU0YiSr64,23144
|
|
6
6
|
plain/email/utils.py,sha256=b9DzVVvI6BRwIVWSud_sRRchanBztH1p6qCy5-g9-ns,610
|
|
7
7
|
plain/email/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -9,7 +9,7 @@ plain/email/backends/base.py,sha256=7XDlJv07IMSES10pduu_ayCaznD2kwIyo3iAHWg9uQs,
|
|
|
9
9
|
plain/email/backends/console.py,sha256=M7xW13XMjrozwnkkfTv2RxkV0vKp20EvTpIQpIfCGek,1745
|
|
10
10
|
plain/email/backends/filebased.py,sha256=mEqxazVXHihkndshgkD56qMoXww5CQpZOpsoPh0tQEw,2733
|
|
11
11
|
plain/email/backends/smtp.py,sha256=IqpYXXsf1LTh1uqHR9_gGyYTHwuRdtdX2kUtaRQY01Q,6258
|
|
12
|
-
plain_email-0.
|
|
13
|
-
plain_email-0.
|
|
14
|
-
plain_email-0.
|
|
15
|
-
plain_email-0.
|
|
12
|
+
plain_email-0.15.0.dist-info/METADATA,sha256=Voan-CdvnmoWHGxf7EW_vrl36ZGLXZcoBxT3IFCSpHM,7337
|
|
13
|
+
plain_email-0.15.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
14
|
+
plain_email-0.15.0.dist-info/licenses/LICENSE,sha256=m0D5O7QoH9l5Vz_rrX_9r-C8d9UNr_ciK6Qwac7o6yo,3175
|
|
15
|
+
plain_email-0.15.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|