@beignet/provider-mail-resend 0.0.48 → 0.0.49

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,12 @@
1
1
  # @beignet/provider-mail-resend
2
2
 
3
+ ## 0.0.49
4
+
5
+ ### Patch Changes
6
+
7
+ - e597d53: Require Node.js 22.12 or newer across every Beignet package, generated app,
8
+ and documented workflow.
9
+
3
10
  ## 0.0.48
4
11
 
5
12
  ## 0.0.47
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # @beignet/provider-mail-resend
2
2
 
3
+ > **Runtime:** Beignet requires Node.js 22.12 or newer. Bun 1.3.14 or newer is
4
+ > supported for Beignet commands.
5
+
3
6
  > [!CAUTION]
4
7
  > Beignet is experimental alpha software. The `0.0.x` package line is for early
5
8
  > evaluation, and APIs may change between releases while the framework settles.
@@ -19,8 +22,8 @@ internal.
19
22
  bun add @beignet/provider-mail-resend @beignet/core resend
20
23
  ```
21
24
 
22
- The provider supports `resend` `^2`, `^3`, `^4`, and `^6`. Resend v6 inherits
23
- the SDK's Node.js 20+ runtime requirement.
25
+ The provider supports `resend` `^2`, `^3`, `^4`, and `^6`. Beignet's Node.js
26
+ 22.12-or-newer runtime baseline also satisfies Resend v6's requirement.
24
27
 
25
28
  ## Setup
26
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beignet/provider-mail-resend",
3
- "version": "0.0.48",
3
+ "version": "0.0.49",
4
4
  "type": "module",
5
5
  "description": "Resend mail provider for Beignet - adds mailer port using Resend",
6
6
  "main": "./dist/index.js",
@@ -51,7 +51,7 @@
51
51
  "access": "public"
52
52
  },
53
53
  "engines": {
54
- "node": ">=18.0.0"
54
+ "node": ">=22.12.0"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "@beignet/core": ">=0.0.3 <1.0.0",
@@ -64,7 +64,7 @@
64
64
  "@beignet/core": "*",
65
65
  "@beignet/devtools": "*",
66
66
  "@types/bun": "^1.3.13",
67
- "@types/node": "^20.10.0",
67
+ "@types/node": "^22.0.0",
68
68
  "resend": "^6.14.0",
69
69
  "typescript": "^5.3.0"
70
70
  },