chore: update dependencies

This commit is contained in:
Peter Steinberger
2026-01-18 14:15:32 +00:00
parent f5533baf61
commit 9c0773c469
6 changed files with 718 additions and 749 deletions

View File

@@ -18,6 +18,11 @@ Docs: https://docs.clawd.bot
- Memory: index atomically so failed reindex preserves the previous memory database. (#1151) - Memory: index atomically so failed reindex preserves the previous memory database. (#1151)
- Memory: avoid sqlite-vec unique constraint failures when reindexing duplicate chunk ids. (#1151) - Memory: avoid sqlite-vec unique constraint failures when reindexing duplicate chunk ids. (#1151)
## 2026.1.18-5
### Changes
- Dependencies: update core + plugin deps (grammy, vitest, openai, Microsoft agents hosting, etc.).
## 2026.1.18-3 ## 2026.1.18-3
### Changes ### Changes

View File

@@ -1,5 +1,4 @@
import os from "node:os"; import os from "node:os";
import { beforeEach, describe, expect, it } from "vitest"; import { beforeEach, describe, expect, it } from "vitest";
import type { PluginRuntime } from "clawdbot/plugin-sdk"; import type { PluginRuntime } from "clawdbot/plugin-sdk";

View File

@@ -4,11 +4,13 @@
"type": "module", "type": "module",
"description": "Clawdbot long-term memory plugin with vector search and seamless auto-recall/capture", "description": "Clawdbot long-term memory plugin with vector search and seamless auto-recall/capture",
"dependencies": { "dependencies": {
"@sinclair/typebox": "0.34.47",
"@lancedb/lancedb": "^0.15.0", "@lancedb/lancedb": "^0.15.0",
"openai": "^4.77.0" "@sinclair/typebox": "0.34.47",
"openai": "^4.104.0"
}, },
"clawdbot": { "clawdbot": {
"extensions": ["./index.ts"] "extensions": [
"./index.ts"
]
} }
} }

View File

@@ -9,10 +9,10 @@
] ]
}, },
"dependencies": { "dependencies": {
"@microsoft/agents-hosting": "^1.2.2",
"@microsoft/agents-hosting-express": "^1.2.2",
"@microsoft/agents-hosting-extensions-teams": "^1.2.2",
"clawdbot": "workspace:*", "clawdbot": "workspace:*",
"@microsoft/agents-hosting": "^1.1.1",
"@microsoft/agents-hosting-express": "^1.1.1",
"@microsoft/agents-hosting-extensions-teams": "^1.1.1",
"express": "^5.2.1", "express": "^5.2.1",
"proper-lockfile": "^4.1.2" "proper-lockfile": "^4.1.2"
} }

View File

@@ -168,7 +168,7 @@
"dotenv": "^17.2.3", "dotenv": "^17.2.3",
"express": "^5.2.1", "express": "^5.2.1",
"file-type": "^21.3.0", "file-type": "^21.3.0",
"grammy": "^1.39.2", "grammy": "^1.39.3",
"hono": "4.11.4", "hono": "4.11.4",
"jiti": "^2.6.1", "jiti": "^2.6.1",
"json5": "^2.2.3", "json5": "^2.2.3",
@@ -182,7 +182,7 @@
"qrcode-terminal": "^0.12.0", "qrcode-terminal": "^0.12.0",
"sharp": "^0.34.5", "sharp": "^0.34.5",
"sqlite-vec": "0.1.7-alpha.2", "sqlite-vec": "0.1.7-alpha.2",
"tar": "^7.5.3", "tar": "7.5.3",
"tslog": "^4.10.2", "tslog": "^4.10.2",
"undici": "^7.18.2", "undici": "^7.18.2",
"ws": "^8.19.0", "ws": "^8.19.0",
@@ -200,24 +200,24 @@
"@types/body-parser": "^1.19.6", "@types/body-parser": "^1.19.6",
"@types/express": "^5.0.6", "@types/express": "^5.0.6",
"@types/markdown-it": "^14.1.2", "@types/markdown-it": "^14.1.2",
"@types/node": "^25.0.6", "@types/node": "^25.0.9",
"@types/proper-lockfile": "^4.1.4", "@types/proper-lockfile": "^4.1.4",
"@types/qrcode-terminal": "^0.12.2", "@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1", "@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.16", "@vitest/coverage-v8": "^4.0.17",
"docx-preview": "^0.3.7", "docx-preview": "^0.3.7",
"lit": "^3.3.2", "lit": "^3.3.2",
"lucide": "^0.562.0", "lucide": "^0.562.0",
"ollama": "^0.6.3", "ollama": "^0.6.3",
"oxfmt": "0.24.0", "oxfmt": "0.24.0",
"oxlint": "^1.39.0", "oxlint": "^1.39.0",
"oxlint-tsgolint": "^0.11.0", "oxlint-tsgolint": "^0.11.1",
"quicktype-core": "^23.2.6", "quicktype-core": "^23.2.6",
"rolldown": "1.0.0-beta.59", "rolldown": "1.0.0-beta.59",
"signal-utils": "^0.21.1", "signal-utils": "^0.21.1",
"tsx": "^4.21.0", "tsx": "^4.21.0",
"typescript": "^5.9.3", "typescript": "^5.9.3",
"vitest": "^4.0.16", "vitest": "^4.0.17",
"wireit": "^0.14.12" "wireit": "^0.14.12"
}, },
"pnpm": { "pnpm": {

1435
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff