From cf124e0ddd11f5ab6378fd27231dc6b2f42d9d38 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Fri, 15 Dec 2023 20:28:38 -0800 Subject: [PATCH] dep(punycode): override built-in with trailing / --- Changes.md | 6 ++++++ index.js | 2 +- package.json | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Changes.md b/Changes.md index 4a14df7..3d346d2 100644 --- a/Changes.md +++ b/Changes.md @@ -2,6 +2,11 @@ #### N.N.N - YYYY-MM-DD +### [1.5.3] - 2023-12-15 + +- dep(punycode): override built-in with trailing / + + ### [1.5.2] - 2023-12-11 - dep(stun): use updated @msimerson/stun @@ -205,3 +210,4 @@ [1.5.0]: https://github.com/haraka/haraka-net-utils/releases/tag/1.5.0 [1.5.1]: https://github.com/haraka/haraka-net-utils/releases/tag/1.5.1 [1.5.2]: https://github.com/haraka/haraka-net-utils/releases/tag/1.5.2 +[1.5.3]: https://github.com/haraka/haraka-net-utils/releases/tag/1.5.3 diff --git a/index.js b/index.js index 0d2960a..9ac0c47 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,7 @@ const dns = require('dns').promises; const net = require('net'); const os = require('os'); -const punycode = require('punycode') +const punycode = require('punycode/') // npm modules const ipaddr = require('ipaddr.js'); diff --git a/package.json b/package.json index d600217..21ae75e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "haraka-net-utils", - "version": "1.5.2", + "version": "1.5.3", "description": "haraka network utilities", "main": "index.js", "scripts": { @@ -35,7 +35,7 @@ }, "dependencies": { "haraka-config": "^1.1.0", - "haraka-tld": "*", + "haraka-tld": "^1.2.0", "ipaddr.js": "^2.1.0", "punycode": "^2.3.1", "openssl-wrapper": "^0.3.4",