diff --git a/.release b/.release index 0fa4e69..afb1db8 160000 --- a/.release +++ b/.release @@ -1 +1 @@ -Subproject commit 0fa4e690ffabb0157e46d56f18e4f7cfe49ce291 +Subproject commit afb1db801607dda5e859f39b600f0dd0111e4651 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e64e9f..b4a0e92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/). ### Unreleased +### [1.7.1] - 2024-11-13 + +- deps: bump several versions to latest +- test: fix stale IP, new err code + ### [1.7.0] - 2024-04-29 - feat: added HarakaMx #89 @@ -16,7 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/). - feat: normalizeDomain, for punycode/IDN names -- feat: get_mx now _also_ returns implicit MX records +- feat: get\_mx now _also_ returns implicit MX records - feat: added get_implicit_mx - feat: added resolve_mx_hosts - doc(Changes): fixed broken tag version links @@ -206,7 +211,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/). [1.3.4]: https://github.com/haraka/haraka-net-utils/releases/tag/1.3.4 [1.3.5]: https://github.com/haraka/haraka-net-utils/releases/tag/1.3.5 [1.3.6]: https://github.com/haraka/haraka-net-utils/releases/tag/1.3.6 -[1.3.7]: https://github.com/haraka/haraka-net-utils/releases/tag/1.3.7 +[1.3.7]: https://github.com/haraka/haraka-net-utils/releases/tag/v1.3.7 [1.4.0]: https://github.com/haraka/haraka-net-utils/releases/tag/v1.4.0 [1.4.1]: https://github.com/haraka/haraka-net-utils/releases/tag/v1.4.1 [1.5.0]: https://github.com/haraka/haraka-net-utils/releases/tag/v1.5.0 @@ -216,3 +221,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/). [1.5.4]: https://github.com/haraka/haraka-net-utils/releases/tag/v1.5.4 [1.6.0]: https://github.com/haraka/haraka-net-utils/releases/tag/v1.6.0 [1.7.0]: https://github.com/haraka/haraka-net-utils/releases/tag/v1.7.0 +[1.7.1]: https://github.com/haraka/haraka-net-utils/releases/tag/v1.7.1 diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 90ae255..02cfa47 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -2,7 +2,7 @@ This handcrafted artisinal software is brought to you by: -|
msimerson (58) |
baudehlo (4) |
DoobleD (2) |
lnedry (2) |
Juerd (1) |
olsonpm (1) |
typingArtist (1) | +|
msimerson (59) |
baudehlo (4) |
DoobleD (2) |
lnedry (2) |
Juerd (1) |
olsonpm (1) |
typingArtist (1) | | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | this file is maintained by [.release](https://github.com/msimerson/.release) diff --git a/package.json b/package.json index 7b30189..a19302c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "haraka-net-utils", - "version": "1.7.0", + "version": "1.7.1", "description": "haraka network utilities", "main": "index.js", "files": [ @@ -40,14 +40,14 @@ "@haraka/eslint-config": "^1.1.5" }, "dependencies": { - "haraka-config": "^1.2.4", - "haraka-tld": "^1.2.1", + "haraka-config": "^1.4.0", + "haraka-tld": "^1.2.2", "ipaddr.js": "^2.2.0", "punycode.js": "^2.3.1", "openssl-wrapper": "^0.3.4", "sprintf-js": "^1.1.3" }, "optionalDependencies": { - "@msimerson/stun": "^3.0.1" + "@msimerson/stun": "^3.0.2" } } diff --git a/test/get_mx.js b/test/get_mx.js index b08cbd4..ebc376d 100644 --- a/test/get_mx.js +++ b/test/get_mx.js @@ -51,7 +51,7 @@ describe('get_mx', function () { // macOS: ENODATA, win: ENOTOUND, ubuntu: ESERVFAIL const invalidCases = { invalid: /queryMx (ENODATA|ENOTFOUND|ESERVFAIL) invalid/, - 'gmail.xn--com-0da': /(ENOTFOUND|Cannot convert name to ASCII)/, + 'gmail.xn--com-0da': /(ENOTFOUND|ENOMEM|Cannot convert name to ASCII)/, 'non-exist.haraka.tnpi.net': /ignore/, 'haraka.non-exist': /ignore/, } @@ -92,7 +92,7 @@ describe('get_mx', function () { const expectedResolvedMx = [ { - exchange: '2605:ae00:329::14', + exchange: '2605:ae00:329::6', priority: 10, from_dns: 'mail.theartfarm.com', },