Skip to content

Commit 0942f29

Browse files
committed
release 2.0.3
- deps: bump versions - ci: test on node 18 & 20 (was 14 & 16) - rename data.uribl -> uribl
1 parent 6b4dbb5 commit 0942f29

File tree

7 files changed

+25
-10
lines changed

7 files changed

+25
-10
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [ push ]
44

55
env:
66
CI: true
7-
node-version: 16
7+
node-version: 20
88

99
jobs:
1010
lint:
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
os: [ ubuntu-latest ]
24-
node-version: [ 14, 16, 18 ]
24+
node-version: [ 18, 20 ]
2525
fail-fast: false
2626
steps:
2727
- uses: actions/checkout@v3
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
os: [ windows-latest ]
41-
node-version: [ 14, 16, 18 ]
41+
node-version: [ 18, 20 ]
4242
fail-fast: false
4343
steps:
4444
- uses: actions/checkout@v3

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule ".release"]
2+
path = .release
3+
url = [email protected]:msimerson/.release.git

.release

Submodule .release added at 0890e94

Changes.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11

2+
### Unreleased
3+
4+
### 2.0.3 - 2023-12-12
5+
6+
- deps: bump versions
7+
- ci: test on node 18 & 20 (was 14 & 16)
8+
- rename data.uribl -> uribl
9+
210

311
### 2.0.2 - 2022-05-27
412

@@ -108,3 +116,4 @@
108116
### Oct 8 23:28:07 2016
109117

110118
- initial import
119+
[2.0.4]: https://github.com/haraka/haraka-plugin-watch/releases/tag/2.0.4

html/client.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const rcpt_to_plugins = [
2020
];
2121
const data_plugins = [
2222
'early_talker', 'bounce','headers','karma','spamassassin','rspamd',
23-
'clamd','data.uribl','limit','dkim','attachment'
23+
'clamd','uribl','limit','dkim','attachment'
2424
];
2525
// 'seen' plugins are ones we've seen data reported for. When data from a new
2626
// plugin arrives, it gets added to one of the sections above and the table is

index.js

+2
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ exports.redis_subscribe_all_results = async function (next) {
216216
if (m.result.helo_host) return;
217217
break;
218218
case 'data.uribl':
219+
case 'uribl':
219220
if (m.result.pass) return;
220221
if (m.result.skip) return;
221222
break;
@@ -349,6 +350,7 @@ exports.format_any = function (pi_name, r) {
349350
}
350351
break;
351352
case 'data.uribl':
353+
case 'uribl':
352354
case 'dnsbl':
353355
if (r.fail) return { title: r.fail, classy: 'bg_lred' };
354356
break;

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "haraka-plugin-watch",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Watch live SMTP traffic in a web interface",
55
"main": "index.js",
66
"scripts": {
@@ -26,14 +26,14 @@
2626
},
2727
"homepage": "https://github.com/haraka/haraka-plugin-watch#readme",
2828
"dependencies": {
29-
"haraka-plugin-redis": "2",
30-
"redis": "4",
31-
"ws": "8"
29+
"haraka-plugin-redis": "2.0.5",
30+
"redis": "4.6.11",
31+
"ws": "8.15.0"
3232
},
3333
"devDependencies": {
34-
"eslint": "8",
34+
"eslint": "8.55.0",
3535
"eslint-plugin-haraka": "*",
3636
"haraka-test-fixtures": "*",
37-
"mocha": "9"
37+
"mocha": "10.2.0"
3838
}
3939
}

0 commit comments

Comments
 (0)