Skip to content

Commit

Permalink
- dep(punycode): correctly specify (with trailing /) (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Dec 12, 2023
1 parent 9cd0898 commit 257fe27
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
### Unreleased


### [1.2.0] - 2023-12-12

- dep(punycode): correctly specify (with trailing /)
- to override built-in, which emits warnings


### [1.1.2] - 2023-12-11

- updated TLD files
Expand Down Expand Up @@ -192,3 +198,4 @@
[1.1.0]: https://github.com/haraka/haraka-tld/releases/tag/1.1.0
[1.1.1]: https://github.com/haraka/haraka-tld/releases/tag/1.1.1
[1.1.2]: https://github.com/haraka/haraka-tld/releases/tag/1.1.2
[1.2.0]: https://github.com/haraka/haraka-tld/releases/tag/1.2.0
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const fs = require('fs');
const path = require('path');

// npm modules (dependencies)
const punycode = require('punycode');
const punycode = require('punycode/');

// local deps
const update = require('./lib/update');
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haraka-tld",
"version": "1.1.2",
"version": "1.2.0",
"description": "Haraka TLD utilities",
"main": "index.js",
"directories": {
Expand All @@ -27,11 +27,11 @@
},
"homepage": "https://github.com/haraka/haraka-tld#readme",
"dependencies": {
"punycode": "2"
"punycode": "^2.3.1"
},
"devDependencies": {
"eslint": "8",
"eslint": "^8.55.0",
"eslint-plugin-haraka": "*",
"mocha": "9"
"mocha": "^10.2.0"
}
}

0 comments on commit 257fe27

Please sign in to comment.