chore: update dependencies

This commit is contained in:
Peter Steinberger 2026-03-14 02:09:21 +00:00
parent 10afde99c1
commit 27e863ce40
No known key found for this signature in database
6 changed files with 368 additions and 874 deletions

View File

@ -8,7 +8,7 @@
"build:viewer": "bun build src/viewer-client.ts --target browser --format esm --minify --outfile assets/viewer-runtime.js"
},
"dependencies": {
"@pierre/diffs": "1.0.11",
"@pierre/diffs": "1.1.0",
"@sinclair/typebox": "0.34.48",
"playwright-core": "1.58.2"
},

View File

@ -7,7 +7,7 @@
"dependencies": {
"@lancedb/lancedb": "^0.26.2",
"@sinclair/typebox": "0.34.48",
"openai": "^6.27.0"
"openai": "^6.29.0"
},
"openclaw": {
"extensions": [

View File

@ -4,7 +4,7 @@
"description": "OpenClaw Zalo channel plugin",
"type": "module",
"dependencies": {
"undici": "7.24.0",
"undici": "7.24.1",
"zod": "^4.3.6"
},
"openclaw": {

View File

@ -342,7 +342,7 @@
},
"dependencies": {
"@agentclientprotocol/sdk": "0.16.1",
"@aws-sdk/client-bedrock": "^3.1008.0",
"@aws-sdk/client-bedrock": "^3.1009.0",
"@buape/carbon": "0.0.0-beta-20260216184201",
"@clack/prompts": "^1.1.0",
"@discordjs/voice": "^0.19.1",
@ -360,7 +360,7 @@
"@mozilla/readability": "^0.6.0",
"@sinclair/typebox": "0.34.48",
"@slack/bolt": "^4.6.0",
"@slack/web-api": "^7.14.1",
"@slack/web-api": "^7.15.0",
"@whiskeysockets/baileys": "7.0.0-rc.9",
"ajv": "^8.18.0",
"chalk": "^5.6.2",
@ -371,7 +371,7 @@
"discord-api-types": "^0.38.42",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"file-type": "^21.3.1",
"file-type": "^21.3.2",
"grammy": "^1.41.1",
"hono": "4.12.7",
"https-proxy-agent": "^8.0.0",
@ -392,7 +392,7 @@
"sqlite-vec": "0.1.7-alpha.2",
"tar": "7.5.11",
"tslog": "^4.10.2",
"undici": "^7.24.0",
"undici": "^7.24.1",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
@ -406,7 +406,7 @@
"@types/node": "^25.5.0",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1",
"@typescript/native-preview": "7.0.0-dev.20260312.1",
"@typescript/native-preview": "7.0.0-dev.20260313.1",
"@vitest/coverage-v8": "^4.1.0",
"jscpd": "4.0.8",
"jsdom": "^28.1.0",
@ -441,7 +441,7 @@
"fast-xml-parser": "5.3.8",
"request": "npm:@cypress/request@3.0.10",
"request-promise": "npm:@cypress/request-promise@5.0.0",
"file-type": "21.3.1",
"file-type": "21.3.2",
"form-data": "2.5.4",
"minimatch": "10.2.4",
"qs": "6.14.2",

File diff suppressed because it is too large Load Diff

View File

@ -116,10 +116,13 @@ describe("getProxyUrlFromFetch", () => {
it("returns undefined for plain fetch functions or blank metadata", () => {
const plainFetch = vi.fn() as unknown as typeof fetch;
const blankMetadataFetch = vi.fn() as unknown as typeof fetch & {
[PROXY_FETCH_PROXY_URL]?: string;
};
blankMetadataFetch[PROXY_FETCH_PROXY_URL] = " ";
const blankMetadataFetch = vi.fn() as unknown as typeof fetch;
Object.defineProperty(blankMetadataFetch, PROXY_FETCH_PROXY_URL, {
value: " ",
enumerable: false,
configurable: true,
writable: true,
});
expect(getProxyUrlFromFetch(plainFetch)).toBeUndefined();
expect(getProxyUrlFromFetch(blankMetadataFetch)).toBeUndefined();