Skip to content

Commit febef73

Browse files
authored
Release v0.8.1 (#13)
- doc(CONTRIBUTORS): added - dep(joi): bump to 17.3.3 - dep(eslint): upgrade to v9
1 parent 553e58c commit febef73

File tree

6 files changed

+59
-19
lines changed

6 files changed

+59
-19
lines changed

.eslintrc.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.release

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
1+
# Changelog
2+
3+
The format is based on [Keep a Changelog](https://keepachangelog.com/).
4+
15
# CHANGES
26

37
### Unreleased
48

9+
### [0.8.1] - 2024-12-16
10+
11+
- doc(CONTRIBUTORS): added
12+
- dep(eslint): bump to 9.17.0
13+
- dep(joi): bump to 17.3.3
14+
515
### [0.8.0] - 2024-03-06
616

717
- feat(nameserver): added GET_req, GET_res, POST, DELETE
@@ -50,10 +60,18 @@
5060
- feat: import user & group tests from v2
5161
- add group & permission
5262

63+
[0.1.0]: https://github.com/NicTool/validate/releases/tag/0.1.0
64+
[0.1.1]: https://github.com/NicTool/validate/releases/tag/0.1.1
65+
[0.3.0]: https://github.com/NicTool/validate/releases/tag/0.3.0
66+
[0.4.0]: https://github.com/NicTool/validate/releases/tag/0.4.0
67+
[0.5.0]: https://github.com/NicTool/validate/releases/tag/0.5.0
68+
[0.6.0]: https://github.com/NicTool/validate/releases/tag/0.6.0
69+
[0.6.1]: https://github.com/NicTool/validate/releases/tag/0.6.1
5370
[0.6.3]: https://github.com/NicTool/validate/releases/tag/0.6.3
5471
[0.7.0]: https://github.com/NicTool/validate/releases/tag/0.7.0
5572
[0.7.1]: https://github.com/NicTool/validate/releases/tag/0.7.1
5673
[0.7.2]: https://github.com/NicTool/validate/releases/tag/0.7.2
5774
[0.7.3]: https://github.com/NicTool/validate/releases/tag/0.7.3
5875
[0.7.4]: https://github.com/NicTool/validate/releases/tag/0.7.4
5976
[0.8.0]: https://github.com/NicTool/validate/releases/tag/0.8.0
77+
[0.8.1]: https://github.com/NicTool/validate/releases/tag/v0.8.1

CONTRIBUTORS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Contributors
2+
3+
This handcrafted artisinal software is brought to you by:
4+
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">20</a>)|
6+
| :---: |
7+
8+
<sub>this file is generated by [.release](https://github.com/msimerson/.release).
9+
Contribute to this project to get your GitHub profile included here.</sub>

eslint.config.mjs

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import globals from "globals";
2+
import path from "node:path";
3+
import { fileURLToPath } from "node:url";
4+
import js from "@eslint/js";
5+
import { FlatCompat } from "@eslint/eslintrc";
6+
7+
const __filename = fileURLToPath(import.meta.url);
8+
const __dirname = path.dirname(__filename);
9+
const compat = new FlatCompat({
10+
baseDirectory: __dirname,
11+
recommendedConfig: js.configs.recommended,
12+
allConfig: js.configs.all
13+
});
14+
15+
export default [{
16+
ignores: ["**/package-lock.json"],
17+
}, ...compat.extends("eslint:recommended", "prettier"), {
18+
languageOptions: {
19+
globals: {
20+
...globals.node,
21+
...globals.mocha,
22+
},
23+
},
24+
}];

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nictool/validate",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "NicTool Object Validation",
55
"main": "index.js",
66
"directories": {
@@ -34,11 +34,14 @@
3434
},
3535
"homepage": "https://github.com/NicTool/validate#readme",
3636
"devDependencies": {
37-
"eslint": "^8.56.0",
38-
"eslint-config-prettier": "^9.1.0"
37+
"@eslint/eslintrc": "^3.2.0",
38+
"eslint": "^9.17.0",
39+
"@eslint/js": "^9.17.0",
40+
"eslint-config-prettier": "^9.1.0",
41+
"globals": "^15.13.0"
3942
},
4043
"dependencies": {
41-
"joi": "^17.12.2",
44+
"joi": "^17.13.3",
4245
"joi-password": "^4.2.0"
4346
}
4447
}

0 commit comments

Comments
 (0)