haraka-plugin-karma 2.4.1 → 2.5.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 +6 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
4
4
|
|
|
5
5
|
### Unreleased
|
|
6
6
|
|
|
7
|
+
### [2.5.0] - 2026-05-17
|
|
8
|
+
|
|
9
|
+
- dep(address-rfc2821): -> @haraka/email-address
|
|
10
|
+
|
|
7
11
|
### [2.4.1] - 2026-05-13
|
|
8
12
|
|
|
9
13
|
- fix: after trapping a denysoft, return denysoft later (vs deny)
|
|
@@ -32,7 +36,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
32
36
|
|
|
33
37
|
### [2.1.8] - 2025-10-27
|
|
34
38
|
|
|
35
|
-
- fix: use optional chaining in should_we_skip
|
|
39
|
+
- fix: use optional chaining in should_we_skip
|
|
36
40
|
- reduce ASN details saved to results store
|
|
37
41
|
- config: update plugin names
|
|
38
42
|
|
|
@@ -179,3 +183,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
179
183
|
[2.3.0]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.3.0
|
|
180
184
|
[2.4.0]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.4.0
|
|
181
185
|
[2.4.1]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.4.1
|
|
186
|
+
[2.5.0]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.5.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "haraka-plugin-karma",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "A heuristics scoring and reputation engine for SMTP connections",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"prettier": "npx prettier . --check",
|
|
16
16
|
"prettier:fix": "npx prettier . --write --log-level=warn",
|
|
17
17
|
"test": "node --test",
|
|
18
|
-
"test:coverage": "
|
|
18
|
+
"test:coverage": "node --test --experimental-test-coverage --test-coverage-exclude=package.json --test-coverage-exclude=test/*.js",
|
|
19
|
+
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info test/*.js",
|
|
19
20
|
"versions": "npx npm-dep-mgr check",
|
|
20
21
|
"versions:fix": "npx npm-dep-mgr update"
|
|
21
22
|
},
|
|
@@ -33,11 +34,11 @@
|
|
|
33
34
|
},
|
|
34
35
|
"homepage": "https://github.com/haraka/haraka-plugin-karma#readme",
|
|
35
36
|
"dependencies": {
|
|
36
|
-
"address-rfc2821": "^2.1.5",
|
|
37
37
|
"haraka-constants": "^1.0.7",
|
|
38
38
|
"haraka-plugin-redis": "^2.0.11"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
+
"@haraka/email-address": "^3.1.2",
|
|
41
42
|
"@haraka/eslint-config": "^2.0.4",
|
|
42
43
|
"haraka-test-fixtures": "^1.4.3"
|
|
43
44
|
},
|