@bernierllc/sender-identity-verification 1.0.3 → 1.2.0
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 +54 -0
- package/package.json +19 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# 1.2.0 (2025-12-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **ci:** add lerna version step before publish ([3d20300](https://github.com/bernierllc/tools/commit/3d203002143bf353fffafe4f8a78a99009567347))
|
|
12
|
+
* **ci:** correct jest testEnvironment paths for CI ([c47144c](https://github.com/bernierllc/tools/commit/c47144c3d78aec2be1e1454066c235c2227823fd))
|
|
13
|
+
* **ci:** fix release workflow + convert internal deps to workspace:* ([01c078b](https://github.com/bernierllc/tools/commit/01c078b49d6025f7eef750f79207a1c71c8d85dc))
|
|
14
|
+
* **jest:** resolve Node.js v25+ localStorage SecurityError ([8ffc512](https://github.com/bernierllc/tools/commit/8ffc512805519bc5ba523bdbcd1c457e84998c9e))
|
|
15
|
+
* update neverhub-adapter deps to workspace:* and publish 0.1.2 ([f0e3d04](https://github.com/bernierllc/tools/commit/f0e3d04d8d4f094e3bb899ddf81e93243d16e2c2))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **sender-identity-verification:** fix all tests and add real API integration tests ([9f83fa4](https://github.com/bernierllc/tools/commit/9f83fa4eb6b5ded89ca52baa970ed856516fd879))
|
|
21
|
+
* **sender-identity-verification:** implement email sender verification service ([7d3a54c](https://github.com/bernierllc/tools/commit/7d3a54c10b7aef8aaddda69f228b823ad62dce9b))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# 1.1.0 (2025-12-25)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* **ci:** correct jest testEnvironment paths for CI ([c47144c](https://github.com/bernierllc/tools/commit/c47144c3d78aec2be1e1454066c235c2227823fd))
|
|
33
|
+
* **ci:** fix release workflow + convert internal deps to workspace:* ([01c078b](https://github.com/bernierllc/tools/commit/01c078b49d6025f7eef750f79207a1c71c8d85dc))
|
|
34
|
+
* **jest:** resolve Node.js v25+ localStorage SecurityError ([8ffc512](https://github.com/bernierllc/tools/commit/8ffc512805519bc5ba523bdbcd1c457e84998c9e))
|
|
35
|
+
* update neverhub-adapter deps to workspace:* and publish 0.1.2 ([f0e3d04](https://github.com/bernierllc/tools/commit/f0e3d04d8d4f094e3bb899ddf81e93243d16e2c2))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
* **sender-identity-verification:** fix all tests and add real API integration tests ([9f83fa4](https://github.com/bernierllc/tools/commit/9f83fa4eb6b5ded89ca52baa970ed856516fd879))
|
|
41
|
+
* **sender-identity-verification:** implement email sender verification service ([7d3a54c](https://github.com/bernierllc/tools/commit/7d3a54c10b7aef8aaddda69f228b823ad62dce9b))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
1
47
|
# @bernierllc/sender-identity-verification
|
|
2
48
|
|
|
49
|
+
## 1.0.4
|
|
50
|
+
|
|
51
|
+
### Patch Changes
|
|
52
|
+
|
|
53
|
+
- Updated dependencies [[`73c1d1e`](https://github.com/bernierllc/tools/commit/73c1d1e46114cf2ccfd5b74b83743361247f4502), [`73c1d1e`](https://github.com/bernierllc/tools/commit/73c1d1e46114cf2ccfd5b74b83743361247f4502)]:
|
|
54
|
+
- @bernierllc/email-sender@3.1.0
|
|
55
|
+
- @bernierllc/logger@1.1.0
|
|
56
|
+
|
|
3
57
|
## 1.0.3
|
|
4
58
|
|
|
5
59
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bernierllc/sender-identity-verification",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Individual sender email address verification service for email production compliance",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"test": "jest --watch",
|
|
10
|
+
"test:run": "jest",
|
|
11
|
+
"test:coverage": "jest --coverage",
|
|
12
|
+
"test:integration": "jest --testPathPattern=integration --runInBand",
|
|
13
|
+
"test:unit": "jest --testPathIgnorePatterns=integration",
|
|
14
|
+
"lint": "eslint src --ext .ts",
|
|
15
|
+
"clean": "rm -rf dist"
|
|
16
|
+
},
|
|
7
17
|
"keywords": [
|
|
8
18
|
"email",
|
|
9
19
|
"sender",
|
|
@@ -19,12 +29,12 @@
|
|
|
19
29
|
"author": "Bernier LLC",
|
|
20
30
|
"license": "SEE LICENSE IN LICENSE",
|
|
21
31
|
"dependencies": {
|
|
22
|
-
"@bernierllc/crypto-utils": "1.0.
|
|
23
|
-
"@bernierllc/email-sender": "
|
|
24
|
-
"@bernierllc/logger": "1.0
|
|
25
|
-
"@bernierllc/neverhub-adapter": "0.1.
|
|
26
|
-
"@bernierllc/retry-policy": "0.
|
|
27
|
-
"@bernierllc/validators-email": "0.
|
|
32
|
+
"@bernierllc/crypto-utils": "1.0.6",
|
|
33
|
+
"@bernierllc/email-sender": "5.0.0",
|
|
34
|
+
"@bernierllc/logger": "1.3.0",
|
|
35
|
+
"@bernierllc/neverhub-adapter": "0.1.4",
|
|
36
|
+
"@bernierllc/retry-policy": "0.3.0",
|
|
37
|
+
"@bernierllc/validators-email": "0.3.0"
|
|
28
38
|
},
|
|
29
39
|
"devDependencies": {
|
|
30
40
|
"@types/jest": "^29.0.0",
|
|
@@ -48,14 +58,5 @@
|
|
|
48
58
|
"logger": "integrated"
|
|
49
59
|
}
|
|
50
60
|
},
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
"test": "jest --watch",
|
|
54
|
-
"test:run": "jest",
|
|
55
|
-
"test:coverage": "jest --coverage",
|
|
56
|
-
"test:integration": "jest --testPathPattern=integration --runInBand",
|
|
57
|
-
"test:unit": "jest --testPathIgnorePatterns=integration",
|
|
58
|
-
"lint": "eslint src --ext .ts",
|
|
59
|
-
"clean": "rm -rf dist"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
61
|
+
"gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
|
|
62
|
+
}
|