gaunt-sloth-assistant 0.5.2 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/release-notes/v0_5_3.md +25 -0
- package/index.js +10 -1
- package/package.json +13 -13
- package/vitest-it.config.ts +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# v0.5.3 Dependencies
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
After v0.5.2 releasing new Chat command, this release focuses on dependency updates and minor maintenance improvements.
|
|
5
|
+
|
|
6
|
+
## Changes
|
|
7
|
+
|
|
8
|
+
### Dependencies Updated
|
|
9
|
+
- **@langchain/anthropic**: 0.3.21 → 0.3.22
|
|
10
|
+
- **@langchain/core**: 0.3.55 → 0.3.58
|
|
11
|
+
- **@langchain/google-vertexai**: 0.2.8 → 0.2.10
|
|
12
|
+
- **@langchain/groq**: 0.2.2 → 0.2.3
|
|
13
|
+
|
|
14
|
+
### Development Dependencies Updated
|
|
15
|
+
- **@types/node**: 22.15.30 → 22.15.31
|
|
16
|
+
- **@typescript-eslint/eslint-plugin**: 8.33.1 → 8.34.0
|
|
17
|
+
- **@typescript-eslint/parser**: 8.33.1 → 8.34.0
|
|
18
|
+
- **eslint**: 9.26.0 → 9.28.0
|
|
19
|
+
- **eslint-plugin-prettier**: 5.1.3 → 5.4.1
|
|
20
|
+
- **globals**: 16.1.0 → 16.2.0
|
|
21
|
+
- **typescript**: 5.4.2 → 5.8.3
|
|
22
|
+
- **vitest**: 3.2.2 → 3.2.3
|
|
23
|
+
|
|
24
|
+
### Security
|
|
25
|
+
- Updated brace-expansion dependency from 1.1.11 to 1.1.12 to address security vulnerability
|
package/index.js
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// Suppress deprecation warnings programmatically
|
|
4
|
+
process.removeAllListeners('warning');
|
|
5
|
+
process.on('warning', (warning) => {
|
|
6
|
+
if (warning.name === 'DeprecationWarning' || warning.name === 'ExperimentalWarning') {
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
console.warn(warning);
|
|
10
|
+
});
|
|
2
11
|
|
|
3
12
|
// This is a minimalistic entry point that sets the installDir in systemUtils
|
|
4
13
|
// and delegates to the compiled TypeScript code in dist/index.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gaunt-sloth-assistant",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Andrew Kondratev",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"gth": "index.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@langchain/anthropic": "^0.3.
|
|
30
|
-
"@langchain/core": "^0.3.
|
|
31
|
-
"@langchain/google-vertexai": "^0.2.
|
|
32
|
-
"@langchain/groq": "^0.2.
|
|
29
|
+
"@langchain/anthropic": "^0.3.22",
|
|
30
|
+
"@langchain/core": "^0.3.58",
|
|
31
|
+
"@langchain/google-vertexai": "^0.2.10",
|
|
32
|
+
"@langchain/groq": "^0.2.3",
|
|
33
33
|
"@langchain/langgraph": "^0.3.1",
|
|
34
34
|
"@langchain/mcp-adapters": "^0.5.2",
|
|
35
35
|
"@modelcontextprotocol/server-filesystem": "^2025.3.28",
|
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@eslint/js": "^9.26.0",
|
|
42
|
-
"@types/node": "^22.15.
|
|
42
|
+
"@types/node": "^22.15.31",
|
|
43
43
|
"@types/uuid": "^10.0.0",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
45
|
-
"@typescript-eslint/parser": "^8.
|
|
46
|
-
"eslint": "^9.
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^8.34.0",
|
|
45
|
+
"@typescript-eslint/parser": "^8.34.0",
|
|
46
|
+
"eslint": "^9.28.0",
|
|
47
47
|
"eslint-config-prettier": "^10.1.5",
|
|
48
|
-
"eslint-plugin-prettier": "^5.1
|
|
49
|
-
"globals": "^16.
|
|
48
|
+
"eslint-plugin-prettier": "^5.4.1",
|
|
49
|
+
"globals": "^16.2.0",
|
|
50
50
|
"prettier": "3.5.3",
|
|
51
|
-
"typescript": "^5.
|
|
52
|
-
"vitest": "^3.2.
|
|
51
|
+
"typescript": "^5.8.3",
|
|
52
|
+
"vitest": "^3.2.3"
|
|
53
53
|
},
|
|
54
54
|
"imports": {
|
|
55
55
|
"#src/*.js": "./dist/*.js"
|