plain.email 0.14.0__tar.gz → 0.15.0__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.
@@ -17,5 +17,5 @@ plain*/tests/.plain
17
17
  .plain
18
18
 
19
19
  .vscode
20
- /.claude
20
+ /.claude/skills/plain-*
21
21
  /.benchmarks
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.email
3
- Version: 0.14.0
3
+ Version: 0.15.0
4
4
  Summary: Everything you need to send email in Plain.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-Expression: BSD-3-Clause
@@ -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
@@ -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,6 +1,6 @@
1
1
  [project]
2
2
  name = "plain.email"
3
- version = "0.14.0"
3
+ version = "0.15.0"
4
4
  description = "Everything you need to send email in Plain."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  license = "BSD-3-Clause"
File without changes
File without changes