Skip to content

Commit f587890

Browse files
authored
release 1.2.3 (#16)
* test: increase timeouts
1 parent df55eb9 commit f587890

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Changes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
### Unreleased
33

44

5+
### [1.2.3] - 2023-07-14
6+
7+
- fix: Handle DNS TXT array result (#15)
8+
9+
510
### [1.2.2] - 2023-06-22
611

712
- fix: check for DNS results befor iterating, fixes #13
@@ -59,3 +64,4 @@
5964
[1.2.0]: https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.0
6065
[1.2.1]: https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.1
6166
[1.3.0]: https://github.com/haraka/haraka-plugin-spf/releases/tag/1.3.0
67+
[1.2.3]: https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.3

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "haraka-plugin-spf",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Sender Policy Framework (SPF) plugin for Haraka",
55
"main": "index.js",
66
"scripts": {
@@ -27,8 +27,8 @@
2727
"devDependencies": {
2828
"eslint": "^8.42.0",
2929
"eslint-plugin-haraka": "*",
30-
"haraka-test-fixtures": "*",
31-
"mocha": "^9.2.0"
30+
"haraka-test-fixtures": "^1.3.0",
31+
"mocha": "^9.2.2"
3232
},
3333
"bin": {
3434
"spf": "./bin/spf"

test/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ describe('hook_helo', function () {
162162
})
163163

164164
it('MX with no A record', function (done) {
165+
this.timeout(5000)
165166
this.connection.set('remote.ip', '192.0.2.0');
166167
this.plugin.helo_spf(function next (rc) {
167168
assert.equal(undefined, rc);
@@ -236,7 +237,7 @@ describe('hook_mail', function () {
236237
})
237238

238239
it('txn, relaying, is_private', function (done) {
239-
this.timeout(6000)
240+
this.timeout(8000)
240241
this.plugin.cfg.relay.context='myself';
241242
this.plugin.cfg.deny_relay.mfrom_fail = true;
242243
this.connection.set('remote.ip', '127.0.1.1');

0 commit comments

Comments
 (0)