Skip to content

Commit 88d0fba

Browse files
authored
🔖 Version 5.0.0-rc2 (#446)
1 parent e450818 commit 88d0fba

7 files changed

Lines changed: 222 additions & 126 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## 5.0.0-rc2 - 2026-01-18
4+
### Changes
5+
* :sparkles: add Job to inference responses
6+
### Fixes
7+
* :bug: fix for bin scripts
8+
9+
310
## 5.0.0-rc1 - 2026-01-17
411
### Changes
512
* :boom: drop support for node.js 18

eslint.config.mjs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import { fileURLToPath } from "node:url";
77
import js from "@eslint/js";
88
import { FlatCompat } from "@eslint/eslintrc";
99

10+
/* eslint-disable @typescript-eslint/naming-convention */
11+
1012
const __filename = fileURLToPath(import.meta.url);
1113
const __dirname = path.dirname(__filename);
1214
const compat = new FlatCompat({
@@ -39,10 +41,10 @@ export default [{
3941
}],
4042

4143
semi: ["error"],
42-
"jsdoc/check-alignment": 1,
43-
"jsdoc/check-param-names": 1,
44-
"jsdoc/check-types": 1,
45-
"jsdoc/no-undefined-types": 1,
44+
"jsdoc/check-alignment": "error",
45+
"jsdoc/check-param-names": "error",
46+
"jsdoc/check-types": "error",
47+
"jsdoc/no-undefined-types": "error",
4648
"@typescript-eslint/no-unused-vars": "error",
4749
"@typescript-eslint/no-explicit-any": "off",
4850
"@typescript-eslint/no-inferrable-types": "off",

0 commit comments

Comments
 (0)