Skip to content

Commit

Permalink
release 1.2.3 (#16)
Browse files Browse the repository at this point in the history
* test: increase timeouts
  • Loading branch information
msimerson authored Jul 15, 2023
1 parent df55eb9 commit f587890
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
### Unreleased


### [1.2.3] - 2023-07-14

- fix: Handle DNS TXT array result (#15)


### [1.2.2] - 2023-06-22

- fix: check for DNS results befor iterating, fixes #13
Expand Down Expand Up @@ -59,3 +64,4 @@
[1.2.0]: https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.0
[1.2.1]: https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.1
[1.3.0]: https://github.com/haraka/haraka-plugin-spf/releases/tag/1.3.0
[1.2.3]: https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.3
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haraka-plugin-spf",
"version": "1.2.2",
"version": "1.2.3",
"description": "Sender Policy Framework (SPF) plugin for Haraka",
"main": "index.js",
"scripts": {
Expand All @@ -27,8 +27,8 @@
"devDependencies": {
"eslint": "^8.42.0",
"eslint-plugin-haraka": "*",
"haraka-test-fixtures": "*",
"mocha": "^9.2.0"
"haraka-test-fixtures": "^1.3.0",
"mocha": "^9.2.2"
},
"bin": {
"spf": "./bin/spf"
Expand Down
3 changes: 2 additions & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ describe('hook_helo', function () {
})

it('MX with no A record', function (done) {
this.timeout(5000)
this.connection.set('remote.ip', '192.0.2.0');
this.plugin.helo_spf(function next (rc) {
assert.equal(undefined, rc);
Expand Down Expand Up @@ -236,7 +237,7 @@ describe('hook_mail', function () {
})

it('txn, relaying, is_private', function (done) {
this.timeout(6000)
this.timeout(8000)
this.plugin.cfg.relay.context='myself';
this.plugin.cfg.deny_relay.mfrom_fail = true;
this.connection.set('remote.ip', '127.0.1.1');
Expand Down

0 comments on commit f587890

Please sign in to comment.