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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@ env:
jobs:
lint:
uses: NicTool/.github/.github/workflows/lint.yml@main
permissions:
contents: read

coverage:
uses: NicTool/.github/.github/workflows/coverage.yml@main
secrets: inherit
permissions:
contents: read

test:
uses: NicTool/.github/.github/workflows/test.yml@main
secrets: inherit
permissions:
contents: read
14 changes: 0 additions & 14 deletions .github/workflows/codeql.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ jobs:
publish:
uses: NicTool/.github/.github/workflows/publish.yml@main
secrets: inherit
permissions:
contents: read
packages: write
id-token: write
2 changes: 1 addition & 1 deletion .release
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.10] - 2026-04-13



### [0.8.9] - 2026-03-29

- group: GET can return one group or array
Expand Down Expand Up @@ -128,3 +132,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
[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
[0.8.9]: https://github.com/NicTool/validate/releases/tag/v0.8.9
[0.8.10]: https://github.com/NicTool/validate/releases/tag/v0.8.10
4 changes: 2 additions & 2 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

<sub>this file is generated by [.release](https://github.com/msimerson/.release).
Contribute to this project to get your GitHub profile included here.</sub>
2 changes: 1 addition & 1 deletion lib/test/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"password": "(t0ps3kREt)",
"email": "matt@example.com",
"first_name": "Matt",
"last_name": "Simerson",
"last_name": "Testerson",
"deleted": false
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
},
"homepage": "https://github.com/NicTool/validate#readme",
"devDependencies": {
"eslint": "^10.1.0",
"eslint": "^10.2.0",
"@eslint/js": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0"
"globals": "^17.5.0"
},
"dependencies": {
"joi": "^18.1.1",
"joi": "^18.1.2",
"joi-password": "^4.3.0"
},
"prettier": {
Expand All @@ -63,4 +63,4 @@
"trailingComma": "all",
"printWidth": 100
}
}
}
2 changes: 1 addition & 1 deletion test/fixtures/v2/user.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"password": "(t0ps3kREt)",
"email": "matt@example.com",
"first_name": "Matt",
"last_name": "Simerson"
"last_name": "Testerson"
}
Loading