Skip to content

Commit bc984e4

Browse files
authored
Release v1.5.2 (#80)
- dep(stun): use updated @msimerson/stun
1 parent d7da1f5 commit bc984e4

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

Changes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
#### N.N.N - YYYY-MM-DD
33

44

5+
### [1.5.2] - 2023-12-11
6+
7+
- dep(stun): use updated @msimerson/stun
8+
9+
510
### [1.5.1] - 2023-12-03
611

712
- feat(is_local_host): also match when
@@ -199,3 +204,4 @@
199204
[1.4.1]: https://github.com/haraka/haraka-net-utils/releases/tag/1.4.1
200205
[1.5.0]: https://github.com/haraka/haraka-net-utils/releases/tag/1.5.0
201206
[1.5.1]: https://github.com/haraka/haraka-net-utils/releases/tag/1.5.1
207+
[1.5.2]: https://github.com/haraka/haraka-net-utils/releases/tag/1.5.2

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ exports.get_public_ip_async = async function () {
275275
this.public_ip = null;
276276

277277
try {
278-
this.stun = require('stun');
278+
this.stun = require('@msimerson/stun');
279279
}
280280
catch (e) {
281281
e.install = 'Please install stun: "npm install -g stun"';
@@ -313,7 +313,7 @@ exports.get_public_ip = async function (cb) {
313313
nu.public_ip = null;
314314

315315
try {
316-
nu.stun = require('stun');
316+
nu.stun = require('@msimerson/stun');
317317
}
318318
catch (e) {
319319
e.install = 'Please install stun: "npm install -g stun"';

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "haraka-net-utils",
3-
"version": "1.5.1",
3+
"version": "1.5.2",
44
"description": "haraka network utilities",
55
"main": "index.js",
66
"scripts": {
@@ -29,8 +29,8 @@
2929
},
3030
"homepage": "https://github.com/haraka/haraka-net-utils#readme",
3131
"devDependencies": {
32-
"eslint": "^8.42.0",
33-
"mocha": "^10.0.0",
32+
"eslint": "^8.55.0",
33+
"mocha": "^10.2.0",
3434
"eslint-plugin-haraka": "*"
3535
},
3636
"dependencies": {
@@ -42,6 +42,6 @@
4242
"sprintf-js": "^1.1.3"
4343
},
4444
"optionalDependencies": {
45-
"stun": "^2.1.0"
45+
"@msimerson/stun": "^3.0.0"
4646
}
4747
}

0 commit comments

Comments
 (0)