plain.email 0.10.0__tar.gz → 0.10.2__tar.gz
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-0.10.0 → plain_email-0.10.2}/.gitignore +3 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/PKG-INFO +1 -1
- plain_email-0.10.2/plain/email/CHANGELOG.md +11 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/backends/smtp.py +1 -1
- {plain_email-0.10.0 → plain_email-0.10.2}/pyproject.toml +1 -1
- {plain_email-0.10.0 → plain_email-0.10.2}/LICENSE +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/README.md +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/README.md +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/__init__.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/backends/__init__.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/backends/base.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/backends/console.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/backends/filebased.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/default_settings.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/message.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.2}/plain/email/utils.py +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# plain-email changelog
|
|
2
|
+
|
|
3
|
+
## [0.10.2](https://github.com/dropseed/plain/releases/plain-email@0.10.2) (2025-06-23)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- No user-facing changes. Internal documentation and tooling updates only ([82710c3](https://github.com/dropseed/plain/commit/82710c3), [9a1963d](https://github.com/dropseed/plain/commit/9a1963d), [e1f5dd3](https://github.com/dropseed/plain/commit/e1f5dd3)).
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- No changes required
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
import smtplib
|
|
4
4
|
import ssl
|
|
5
5
|
import threading
|
|
6
|
+
from functools import cached_property
|
|
6
7
|
|
|
7
8
|
from plain.runtime import settings
|
|
8
|
-
from plain.utils.functional import cached_property
|
|
9
9
|
|
|
10
10
|
from ..backends.base import BaseEmailBackend
|
|
11
11
|
from ..message import sanitize_address
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|