@bernierllc/email-tracking 1.0.3 → 1.0.6
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 +37 -0
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
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.0.6 (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:** fix release workflow + convert internal deps to workspace:* ([01c078b](https://github.com/bernierllc/tools/commit/01c078b49d6025f7eef750f79207a1c71c8d85dc))
|
|
13
|
+
* update neverhub-adapter deps to workspace:* and publish 0.1.2 ([f0e3d04](https://github.com/bernierllc/tools/commit/f0e3d04d8d4f094e3bb899ddf81e93243d16e2c2))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## 1.0.5 (2025-12-25)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **ci:** fix release workflow + convert internal deps to workspace:* ([01c078b](https://github.com/bernierllc/tools/commit/01c078b49d6025f7eef750f79207a1c71c8d85dc))
|
|
25
|
+
* update neverhub-adapter deps to workspace:* and publish 0.1.2 ([f0e3d04](https://github.com/bernierllc/tools/commit/f0e3d04d8d4f094e3bb899ddf81e93243d16e2c2))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
1
31
|
# @bernierllc/email-tracking
|
|
2
32
|
|
|
33
|
+
## 1.0.4
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Updated dependencies [[`c45c75c`](https://github.com/bernierllc/tools/commit/c45c75ce2db9cc9f45fe1be6c73e8018a427727c)]:
|
|
38
|
+
- @bernierllc/email-webhook-events@1.0.1
|
|
39
|
+
|
|
3
40
|
## 1.0.3
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bernierllc/email-tracking",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Email delivery tracking service that monitors email lifecycle from send to delivery/bounce/open/click",
|
|
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
|
+
"lint": "eslint src --ext .ts",
|
|
13
|
+
"clean": "rm -rf dist"
|
|
14
|
+
},
|
|
7
15
|
"keywords": [
|
|
8
16
|
"email",
|
|
9
17
|
"tracking",
|
|
@@ -19,9 +27,9 @@
|
|
|
19
27
|
"author": "Bernier LLC",
|
|
20
28
|
"license": "SEE LICENSE IN LICENSE",
|
|
21
29
|
"dependencies": {
|
|
22
|
-
"@bernierllc/email-webhook-events": "1.
|
|
23
|
-
"@bernierllc/logger": "1.
|
|
24
|
-
"@bernierllc/neverhub-adapter": "0.1.
|
|
30
|
+
"@bernierllc/email-webhook-events": "1.2.0",
|
|
31
|
+
"@bernierllc/logger": "1.3.0",
|
|
32
|
+
"@bernierllc/neverhub-adapter": "0.1.4"
|
|
25
33
|
},
|
|
26
34
|
"devDependencies": {
|
|
27
35
|
"@types/jest": "^29.0.0",
|
|
@@ -44,12 +52,5 @@
|
|
|
44
52
|
"logger": "integrated"
|
|
45
53
|
}
|
|
46
54
|
},
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
"test": "jest --watch",
|
|
50
|
-
"test:run": "jest",
|
|
51
|
-
"test:coverage": "jest --coverage",
|
|
52
|
-
"lint": "eslint src --ext .ts",
|
|
53
|
-
"clean": "rm -rf dist"
|
|
54
|
-
}
|
|
55
|
-
}
|
|
55
|
+
"gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
|
|
56
|
+
}
|