Skip to content

Commit 5287f1f

Browse files
authored
Release v0.8.7 (#19)
- convert to ESM (#18)
1 parent d051bb3 commit 5287f1f

6 files changed

Lines changed: 23 additions & 7 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,5 @@ package-lock.json
107107
ignore/
108108
out
109109
config.yml
110+
.release/
111+
.release/

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
66

77
### Unreleased
88

9+
### [0.8.7] - 2026-03-25
10+
11+
- convert to ESM (#18)
12+
913
### [0.8.5] - 2026-03-15
1014

1115
- zone.GET_req: add search params
@@ -112,3 +116,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
112116
[0.8.3]: https://github.com/NicTool/validate/releases/tag/v0.8.3
113117
[0.8.4]: https://github.com/NicTool/validate/releases/tag/v0.8.4
114118
[0.8.5]: https://github.com/NicTool/validate/releases/tag/v0.8.5
119+
[0.8.7]: https://github.com/NicTool/validate/releases/tag/v0.8.7

CONTRIBUTORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This handcrafted artisanal software is brought to you by:
44

5-
| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/NicTool/validate/commits?author=msimerson">24</a>) |
5+
| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/NicTool/validate/commits?author=msimerson">26</a>) |
66
| :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
77

88
<sub>this file is generated by [.release](https://github.com/msimerson/.release).

lib/nameserver.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ export const name = Joi.string()
1010
.domain({ allowFullyQualified: true, tlds: false })
1111
.pattern(/\.$/)
1212

13-
export const type = Joi.string().valid('bind', 'djbdns', 'knot', 'nsd', 'maradns', 'powerdns', 'dynect')
13+
export const type = Joi.string().valid(
14+
'bind',
15+
'djbdns',
16+
'knot',
17+
'nsd',
18+
'maradns',
19+
'powerdns',
20+
'dynect',
21+
)
1422

1523
export const remote_login = Joi.string().empty('').max(127)
1624

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nictool/validate",
3-
"version": "0.8.5",
3+
"version": "0.8.7",
44
"description": "NicTool Object Validation",
55
"type": "module",
66
"files": [
@@ -26,9 +26,10 @@
2626
"prettier:fix": "npx prettier --ignore-path .gitignore --write .",
2727
"test": "node --test",
2828
"test:only": "node --test --test-only",
29-
"versions": "npx dependency-version-checker check",
30-
"versions:fix": "npx dependency-version-checker update",
31-
"watch": "node --test --watch"
29+
"versions": "npx npm-dep-mgr check",
30+
"versions:fix": "npx npm-dep-mgr update",
31+
"watch": "node --test --watch",
32+
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test"
3233
},
3334
"repository": {
3435
"type": "git",

0 commit comments

Comments
 (0)