Skip to content

Commit

Permalink
Release v2.1.5 (#59)
Browse files Browse the repository at this point in the history
* doc(CONTRIBUTORS): added
* doc(README): remove spurious markdown link
  • Loading branch information
msimerson authored Apr 23, 2024
1 parent bd08a69 commit 15825ea
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .release
Submodule .release updated 7 files
+3 −0 CHANGELOG.md
+4 −3 README.md
+19 −0 base.sh
+82 −0 contributors.js
+7 −3 finish.sh
+53 −12 start.sh
+29 −17 submit.sh
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

### Unreleased

### [2.1.5] - 2024-04-23

- doc(README): remove spurious markdown link
- doc(CONTRIBUTORS): added

### [2.1.4] - 2024-04-06

- eslint: reduce config to depending on @haraka
Expand Down Expand Up @@ -124,3 +129,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
[2.1.2]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.1.2
[2.1.3]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.1.3
[2.1.4]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.1.4
[2.1.5]: https://github.com/haraka/haraka-plugin-karma/releases/tag/v2.1.5
8 changes: 8 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Contributors

This handcrafted artisinal software is brought to you by:

| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/haraka-plugin-karma/commits?author=msimerson">59</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/934254?v=4"><br><a href="https://github.com/analogic">analogic</a> (<a href="https://github.com/haraka/haraka-plugin-karma/commits?author=analogic">2</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/550490?v=4"><br><a href="https://github.com/smfreegard">smfreegard</a> (<a href="https://github.com/haraka/haraka-plugin-karma/commits?author=smfreegard">1</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/24506085?v=4"><br><a href="https://github.com/Gooong">Gooong</a> (<a href="https://github.com/haraka/haraka-plugin-karma/commits?author=Gooong">1</a>) |
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |

<sub>this file is maintained by [.release](https://github.com/msimerson/.release)</sub>
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,6 @@ Expect to use karma _with_ content filters.
[sa-url]: http://haraka.github.io/manual/plugins/spamassassin.html
[snf-url]: http://haraka.github.io/manual/plugins/messagesniffer.html
[results-url]: http://haraka.github.io/manual/Results.html

[![CI]()]()

[ci-img]: https://github.com/haraka/haraka-plugin-karma/actions/workflows/ci.yml/badge.svg
[ci-url]: https://github.com/haraka/haraka-plugin-karma/actions/workflows/ci.yml
[cov-img]: https://codecov.io/github/haraka/haraka-plugin-karma/coverage.svg
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haraka-plugin-karma",
"version": "2.1.4",
"version": "2.1.5",
"description": "A heuristics scoring and reputation engine for SMTP connections",
"main": "index.js",
"files": [
Expand All @@ -14,9 +14,9 @@
"lint:fix": "npx eslint@^8 *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10",
"versions": "npx @msimerson/dependency-version-checker check",
"versions:fix": "npx @msimerson/dependency-version-checker update"
"test": "npx mocha@^10",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test/karma.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function _set_up(done) {
this.plugin.tarpit_hooks = ['connect']

this.connection = fixtures.connection.createConnection({}, { notes: {} })
this.connection.transaction = fixtures.transaction.createTransaction()
this.connection.init_transaction()

done()
}
Expand Down

0 comments on commit 15825ea

Please sign in to comment.