better-auth-evp 1.0.6 → 1.0.8
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 +9 -0
- package/README.md +3 -2
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [1.0.8](https://github.com/qamarq/better-auth-evp/compare/v1.0.7...v1.0.8) (2026-09-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* drop email-verification-api from peerDependencies ([820d4ba](https://github.com/qamarq/better-auth-evp/commit/820d4ba3ffdf81b1420b547005889f259f63f7ba))
|
|
7
|
+
|
|
8
|
+
## [1.0.7](https://github.com/qamarq/better-auth-evp/compare/v1.0.6...v1.0.7) (2026-09-01)
|
|
9
|
+
|
|
1
10
|
## [1.0.6](https://github.com/qamarq/better-auth-evp/compare/v1.0.5...v1.0.6) (2026-09-01)
|
|
2
11
|
|
|
3
12
|
## [1.0.5](https://github.com/qamarq/better-auth-evp/compare/v1.0.4...v1.0.5) (2026-09-01)
|
package/README.md
CHANGED
|
@@ -18,13 +18,14 @@ Because this depends on: the user running an origin-trial build of Chrome, their
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install better-auth-evp
|
|
21
|
+
npm install better-auth-evp
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
Uses [`email-verification-api`](https://www.npmjs.com/package/email-verification-api) (does the actual SD-JWT/DNS/issuer verification, built by the folks at [Resend](https://resend.com)) as a dependency.
|
|
25
|
+
|
|
24
26
|
### Peer Dependencies
|
|
25
27
|
|
|
26
28
|
- `better-auth` ^1.5.0
|
|
27
|
-
- `email-verification-api` ^0.1.0 (does the actual SD-JWT/DNS/issuer verification)
|
|
28
29
|
- `zod` ^3.0.0 || ^4.0.0
|
|
29
30
|
|
|
30
31
|
## Server Setup
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "better-auth-evp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Email Verification Protocol (Chrome origin trial) plugin for Better Auth, with automatic fallback to any other sign-in method",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"better-auth": "^1.5.0",
|
|
28
|
-
"email-verification-api": "^0.1.0",
|
|
29
28
|
"zod": "^3.0.0 || ^4.0.0"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|