Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,3 @@ ignore/
out
config.yml
.release/
.release/
2 changes: 1 addition & 1 deletion .release
Submodule .release updated 1 files
+1 −1 submit.sh
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

### Unreleased

### [0.8.8] - 2026-03-25

- zone_rec: delete request has id in param

### [0.8.7] - 2026-03-25

- convert to ESM (#18)
Expand Down Expand Up @@ -117,3 +121,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
[0.8.4]: https://github.com/NicTool/validate/releases/tag/v0.8.4
[0.8.5]: https://github.com/NicTool/validate/releases/tag/v0.8.5
[0.8.7]: https://github.com/NicTool/validate/releases/tag/v0.8.7
[0.8.8]: https://github.com/NicTool/validate/releases/tag/v0.8.8
2 changes: 1 addition & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This handcrafted artisanal software is brought to you by:

| <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>) |
| <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">27</a>) |
| :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |

<sub>this file is generated by [.release](https://github.com/msimerson/.release).
Expand Down
1 change: 0 additions & 1 deletion lib/zone_record.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,5 @@ export const GET_res = Joi.object({
export const POST = v3.fork(['id', 'ttl'], (schema) => schema.optional())

export const DELETE = Joi.object({
id: id,
deleted: Joi.boolean(),
})
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nictool/validate",
"version": "0.8.7",
"version": "0.8.8",
"description": "NicTool Object Validation",
"type": "module",
"files": [
Expand Down Expand Up @@ -48,13 +48,13 @@
},
"homepage": "https://github.com/NicTool/validate#readme",
"devDependencies": {
"eslint": "^10.0.3",
"eslint": "^10.1.0",
"@eslint/js": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0"
},
"dependencies": {
"joi": "^18.0.2",
"joi": "^18.1.1",
"joi-password": "^4.3.0"
},
"prettier": {
Expand Down
Loading