@beignet/provider-mail-smtp 0.0.51 → 0.0.53

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @beignet/provider-mail-smtp
2
2
 
3
+ ## 0.0.53
4
+
5
+ ### Patch Changes
6
+
7
+ - ce6a5f6: Require patched Next.js and Nodemailer releases, and use them in generated apps and SMTP provider setup.
8
+
9
+ ## 0.0.52
10
+
11
+ ### Patch Changes
12
+
13
+ - b39bb6e: Clarify that Beignet applications require Node.js 22.12 or newer and can use
14
+ npm, pnpm, Yarn, or Bun for package management and framework commands.
15
+
3
16
  ## 0.0.51
4
17
 
5
18
  ## 0.0.50
package/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # @beignet/provider-mail-smtp
2
2
 
3
- > **Runtime:** Beignet requires Node.js 22.12 or newer. Bun 1.3.14 or newer is
4
- > supported for Beignet commands.
3
+ > **Runtime:** Beignet requires Node.js 22.12 or newer. Bun is optional.
5
4
 
6
5
  > [!CAUTION]
7
6
  > Beignet is experimental alpha software. The `0.0.x` package line is for early
@@ -19,11 +18,11 @@ features.
19
18
  ## Install
20
19
 
21
20
  ```bash
22
- bun add @beignet/provider-mail-smtp @beignet/core nodemailer@^9.0.1
21
+ bun add @beignet/provider-mail-smtp @beignet/core nodemailer@^9.1.1
23
22
  ```
24
23
 
25
- Nodemailer 9.x starting at `9.0.1` is required. Earlier releases are affected
26
- by a message-level `raw` access-control bypass.
24
+ Nodemailer 9.x starting at `9.1.1` is required. Earlier releases are affected
25
+ by address-parsing and content-access vulnerabilities.
27
26
 
28
27
  ## Setup
29
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beignet/provider-mail-smtp",
3
- "version": "0.0.51",
3
+ "version": "0.0.53",
4
4
  "type": "module",
5
5
  "description": "SMTP mail provider for Beignet - adds mailer port using nodemailer",
6
6
  "main": "./dist/index.js",
@@ -56,7 +56,7 @@
56
56
  },
57
57
  "peerDependencies": {
58
58
  "@beignet/core": ">=0.0.3 <1.0.0",
59
- "nodemailer": "^9.0.1"
59
+ "nodemailer": "^9.1.1"
60
60
  },
61
61
  "dependencies": {
62
62
  "zod": "^4.0.0"
@@ -64,10 +64,10 @@
64
64
  "devDependencies": {
65
65
  "@beignet/core": "*",
66
66
  "@beignet/devtools": "*",
67
- "@types/bun": "^1.3.13",
67
+ "@types/bun": "^1.4.0",
68
68
  "@types/node": "^22.0.0",
69
69
  "@types/nodemailer": "^8.0.1",
70
- "nodemailer": "^9.0.1",
70
+ "nodemailer": "^9.1.1",
71
71
  "typescript": "^5.3.0"
72
72
  },
73
73
  "beignet": {