haraka-plugin-karma 2.1.4 → 2.1.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.
- package/CHANGELOG.md +6 -0
- package/README.md +0 -3
- package/package.json +4 -4
- package/test/karma.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
4
4
|
|
|
5
5
|
### Unreleased
|
|
6
6
|
|
|
7
|
+
### [2.1.5] - 2024-04-23
|
|
8
|
+
|
|
9
|
+
- doc(README): remove spurious markdown link
|
|
10
|
+
- doc(CONTRIBUTORS): added
|
|
11
|
+
|
|
7
12
|
### [2.1.4] - 2024-04-06
|
|
8
13
|
|
|
9
14
|
- eslint: reduce config to depending on @haraka
|
|
@@ -124,3 +129,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
124
129
|
[2.1.2]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.1.2
|
|
125
130
|
[2.1.3]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.1.3
|
|
126
131
|
[2.1.4]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.1.4
|
|
132
|
+
[2.1.5]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.1.5
|
package/README.md
CHANGED
|
@@ -194,9 +194,6 @@ Expect to use karma _with_ content filters.
|
|
|
194
194
|
[sa-url]: http://haraka.github.io/manual/plugins/spamassassin.html
|
|
195
195
|
[snf-url]: http://haraka.github.io/manual/plugins/messagesniffer.html
|
|
196
196
|
[results-url]: http://haraka.github.io/manual/Results.html
|
|
197
|
-
|
|
198
|
-
[![CI]()]()
|
|
199
|
-
|
|
200
197
|
[ci-img]: https://github.com/haraka/haraka-plugin-karma/actions/workflows/ci.yml/badge.svg
|
|
201
198
|
[ci-url]: https://github.com/haraka/haraka-plugin-karma/actions/workflows/ci.yml
|
|
202
199
|
[cov-img]: https://codecov.io/github/haraka/haraka-plugin-karma/coverage.svg
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "haraka-plugin-karma",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"description": "A heuristics scoring and reputation engine for SMTP connections",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"lint:fix": "npx eslint@^8 *.js test --fix",
|
|
15
15
|
"prettier": "npx prettier . --check",
|
|
16
16
|
"prettier:fix": "npx prettier . --write --log-level=warn",
|
|
17
|
-
"test": "npx mocha
|
|
18
|
-
"versions": "npx
|
|
19
|
-
"versions:fix": "npx
|
|
17
|
+
"test": "npx mocha@^10",
|
|
18
|
+
"versions": "npx dependency-version-checker check",
|
|
19
|
+
"versions:fix": "npx dependency-version-checker update"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
package/test/karma.js
CHANGED
|
@@ -16,7 +16,7 @@ function _set_up(done) {
|
|
|
16
16
|
this.plugin.tarpit_hooks = ['connect']
|
|
17
17
|
|
|
18
18
|
this.connection = fixtures.connection.createConnection({}, { notes: {} })
|
|
19
|
-
this.connection.
|
|
19
|
+
this.connection.init_transaction()
|
|
20
20
|
|
|
21
21
|
done()
|
|
22
22
|
}
|