@aotter/mantle 0.1.2-alpha.4 → 0.1.2-alpha.5
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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
## Status
|
|
4
4
|
|
|
5
5
|
Accepted. Amended 2026-05-14, 2026-05-15, 2026-06-30, 2026-07-15,
|
|
6
|
-
2026-08-03, and 2026-
|
|
6
|
+
2026-08-03, 2026-08-22, and 2026-09-18.
|
|
7
7
|
|
|
8
8
|
## Date
|
|
9
9
|
|
|
@@ -725,3 +725,12 @@ the atomic consume or increment operations those paths require. Auth keys use
|
|
|
725
725
|
the `better-auth:` prefix so the namespace can also hold Mantle projections.
|
|
726
726
|
Session revocation and user updates use Better Auth's cache invalidation and
|
|
727
727
|
therefore follow Workers KV's propagation model.
|
|
728
|
+
|
|
729
|
+
## 2026-09-18 amendment — one-way email verification storage
|
|
730
|
+
|
|
731
|
+
The curated Cloudflare auth adapter stores email OTPs and magic-link tokens as
|
|
732
|
+
one-way hashes. This is a fixed security boundary, not adopter configuration;
|
|
733
|
+
`createAuth` does not expose Better Auth's plain or encrypted storage options.
|
|
734
|
+
Deploying this change invalidates any unconsumed codes and links created by an
|
|
735
|
+
older deployment. Users request a new code or link; no database migration is
|
|
736
|
+
needed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aotter/mantle",
|
|
3
|
-
"version": "0.1.2-alpha.
|
|
3
|
+
"version": "0.1.2-alpha.5",
|
|
4
4
|
"description": "Embeddable Mantle Core umbrella with Spec and Runtime; Web, Admin, Bun, Vercel, Cloudflare, and Admin UI are optional peer packages.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://mantle.tools/",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"README.md"
|
|
80
80
|
],
|
|
81
81
|
"dependencies": {
|
|
82
|
-
"@aotter/mantle-
|
|
83
|
-
"@aotter/mantle-
|
|
82
|
+
"@aotter/mantle-runtime": "0.1.2-alpha.5",
|
|
83
|
+
"@aotter/mantle-spec": "0.1.2-alpha.5"
|
|
84
84
|
},
|
|
85
85
|
"peerDependencies": {
|
|
86
86
|
"aws4fetch": "^1.0.20",
|
|
@@ -88,12 +88,12 @@
|
|
|
88
88
|
"hono": "^4.12.0",
|
|
89
89
|
"@libsql/client": "^0.17.4",
|
|
90
90
|
"zod": "^4.5.0",
|
|
91
|
-
"@aotter/mantle-admin": "0.1.2-alpha.
|
|
92
|
-
"@aotter/mantle-
|
|
93
|
-
"@aotter/mantle-
|
|
94
|
-
"@aotter/mantle-
|
|
95
|
-
"@aotter/mantle-
|
|
96
|
-
"@aotter/mantle-
|
|
91
|
+
"@aotter/mantle-admin-ui": "0.1.2-alpha.5",
|
|
92
|
+
"@aotter/mantle-admin": "0.1.2-alpha.5",
|
|
93
|
+
"@aotter/mantle-vercel": "0.1.2-alpha.5",
|
|
94
|
+
"@aotter/mantle-web": "0.1.2-alpha.5",
|
|
95
|
+
"@aotter/mantle-bun": "0.1.2-alpha.5",
|
|
96
|
+
"@aotter/mantle-cloudflare": "0.1.2-alpha.5"
|
|
97
97
|
},
|
|
98
98
|
"peerDependenciesMeta": {
|
|
99
99
|
"@aotter/mantle-admin": {
|
|
@@ -136,12 +136,12 @@
|
|
|
136
136
|
"typescript": "^6.0.3",
|
|
137
137
|
"vitest": "^4.1.11",
|
|
138
138
|
"zod": "^4.5.4",
|
|
139
|
-
"@aotter/mantle-
|
|
140
|
-
"@aotter/mantle-
|
|
141
|
-
"@aotter/mantle-admin": "0.1.2-alpha.
|
|
142
|
-
"@aotter/mantle-cloudflare": "0.1.2-alpha.
|
|
143
|
-
"@aotter/mantle-vercel": "0.1.2-alpha.
|
|
144
|
-
"@aotter/mantle-web": "0.1.2-alpha.
|
|
139
|
+
"@aotter/mantle-admin-ui": "0.1.2-alpha.5",
|
|
140
|
+
"@aotter/mantle-bun": "0.1.2-alpha.5",
|
|
141
|
+
"@aotter/mantle-admin": "0.1.2-alpha.5",
|
|
142
|
+
"@aotter/mantle-cloudflare": "0.1.2-alpha.5",
|
|
143
|
+
"@aotter/mantle-vercel": "0.1.2-alpha.5",
|
|
144
|
+
"@aotter/mantle-web": "0.1.2-alpha.5"
|
|
145
145
|
},
|
|
146
146
|
"engines": {
|
|
147
147
|
"node": ">=22"
|