Skip to content

Commit bf42d52

Browse files
committed
Bumps node modules
1 parent cf19e4c commit bf42d52

33 files changed

Lines changed: 1412 additions & 1599 deletions

File tree

.serena/project.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# whether to use the project's gitignore file to ignore files
32
# Added on 2025-04-07
43
ignore_all_files_in_gitignore: true
@@ -113,3 +112,7 @@ encoding: utf-8
113112
# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored.
114113
languages:
115114
- typescript
115+
116+
# override of the corresponding setting in serena_config.yml, see the documentation there.
117+
# If null or missing, the value from the global config is used.
118+
symbol_info_budget:

agents/agent-ai-sdk/eslint.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ export default defineConfig(
4848
},
4949
},
5050
extends: [
51-
//@ts-expect-error ignore type errors
5251
awscdkConfigs.recommended,
5352
importPlugin.flatConfigs.recommended,
5453
importPlugin.flatConfigs.typescript,

agents/agent-ai-sdk/lambda/handler.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { bedrock } from "@ai-sdk/amazon-bedrock";
1+
import { bedrock } from '@ai-sdk/amazon-bedrock';
22
import { azure } from '@ai-sdk/azure';
33
import { logger } from '@llm-ts-example/common-backend-core';
44
import { models } from '@llm-ts-example/common-core';
55
import { ToolLoopAgent, smoothStream, ModelMessage } from 'ai';
66
import { Readable, PassThrough } from 'node:stream';
77

88
const createModel = (id?: string) => {
9-
const modelInfo = models.find(m => m.id === id);
9+
const modelInfo = models.find((m) => m.id === id);
1010
if (modelInfo) {
1111
if (modelInfo.platform === 'aws') {
1212
return bedrock(modelInfo.modelId);
@@ -16,7 +16,7 @@ const createModel = (id?: string) => {
1616
}
1717
}
1818
return null;
19-
}
19+
};
2020

2121
const messages: ModelMessage[] = [];
2222

@@ -27,15 +27,15 @@ export async function handle(
2727
try {
2828
const { prompt, modelId, session, id } = JSON.parse(body);
2929
if (!prompt) {
30-
logger.error("No prompt in request");
31-
output.write("error");
30+
logger.error('No prompt in request');
31+
output.write('error');
3232
return;
3333
}
3434

3535
const model = createModel(modelId);
3636
if (!model) {
37-
logger.error("No model in request");
38-
output.write("error");
37+
logger.error('No model in request');
38+
output.write('error');
3939
return;
4040
}
4141

@@ -54,7 +54,7 @@ export async function handle(
5454
model: modelId,
5555
thread_id: session,
5656
query_id: id,
57-
}
57+
},
5858
},
5959
});
6060

@@ -69,7 +69,7 @@ export async function handle(
6969
inputTokens: usage.inputTokens,
7070
outputTokens: usage.outputTokens,
7171
finishReason,
72-
toolsUsed: toolCalls?.map(tc => tc.toolName),
72+
toolsUsed: toolCalls?.map((tc) => tc.toolName),
7373
});
7474
},
7575
});

agents/agent-ai-sdk/lambda/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import { handle } from './handler.js';
44

55
export const handler = awslambda.streamifyResponse(
66
async (
7-
event: APIGatewayProxyEvent | APIGatewayProxyEventV2, responseStream: NodeJS.WritableStream
7+
event: APIGatewayProxyEvent | APIGatewayProxyEventV2, responseStream: NodeJS.WritableStream,
88
) => {
99
logger.info('event', { event });
1010
const body = event.body;
1111
if (!body) {
12-
logger.error("No body in request")
13-
responseStream.write("error");
12+
logger.error('No body in request');
13+
responseStream.write('error');
1414
} else {
1515
await handle({ body }, responseStream);
1616
}

agents/agent-ai-sdk/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
"scripts": {
99
"build": "tsc",
1010
"watch": "tsc -w",
11-
"test": "jest",
12-
"cdk": "cdk"
11+
"lint": "eslint",
12+
"lint-fix": "eslint --fix"
1313
},
1414
"devDependencies": {
1515
"@eslint/compat": "^2.0.2",
1616
"@eslint/core": "^1.1.0",
1717
"@eslint/js": "^10.0.1",
18-
"@stylistic/eslint-plugin": "^5.8.0",
18+
"@stylistic/eslint-plugin": "^5.9.0",
1919
"@types/aws-lambda": "^8.10.160",
2020
"@types/node": "^24.10.13",
2121
"@vitest/eslint-plugin": "^1.6.9",
2222
"aws-cdk": "2.1105.0",
2323
"esbuild": "^0.27.3",
24-
"eslint": "^9.39.2",
24+
"eslint": "^9.39.3",
2525
"eslint-import-resolver-typescript": "^4.4.4",
26-
"eslint-plugin-awscdk": "^4.2.0",
26+
"eslint-plugin-awscdk": "^4.2.1",
2727
"eslint-plugin-import": "^2.32.0",
2828
"eslint-plugin-promise": "^7.2.1",
2929
"jiti": "^2.6.1",
@@ -35,14 +35,14 @@
3535
"vitest": "^4.0.18"
3636
},
3737
"dependencies": {
38-
"@ai-sdk/amazon-bedrock": "^4.0.61",
39-
"@ai-sdk/azure": "^3.0.30",
38+
"@ai-sdk/amazon-bedrock": "^4.0.63",
39+
"@ai-sdk/azure": "^3.0.31",
4040
"@llm-ts-example/common-backend-core": "workspace:*",
4141
"@llm-ts-example/common-core": "workspace:*",
4242
"@smithy/eventstream-codec": "^4.2.8",
43-
"ai": "^6.0.90",
44-
"aws-cdk-lib": "^2.238.0",
45-
"constructs": "^10.5.0",
43+
"ai": "^6.0.97",
44+
"aws-cdk-lib": "^2.239.0",
45+
"constructs": "^10.5.1",
4646
"dotenv": "^17.3.1",
4747
"zod": "^4.3.6"
4848
}

agents/agent-claude-agent-sdk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
"devDependencies": {
1717
"@eslint/compat": "^2.0.2",
1818
"@eslint/js": "^10.0.1",
19-
"@stylistic/eslint-plugin": "^5.8.0",
19+
"@stylistic/eslint-plugin": "^5.9.0",
2020
"@types/node": "^24.10.13",
2121
"@vitest/eslint-plugin": "^1.6.9",
2222
"dotenv": "^17.3.1",
2323
"esbuild": "^0.27.3",
24-
"eslint": "^9.39.2",
24+
"eslint": "^9.39.3",
2525
"eslint-import-resolver-typescript": "^4.4.4",
2626
"eslint-plugin-import": "^2.32.0",
2727
"eslint-plugin-promise": "^7.2.1",
@@ -34,7 +34,7 @@
3434
"vitest": "^4.0.18"
3535
},
3636
"dependencies": {
37-
"@anthropic-ai/claude-agent-sdk": "^0.2.45",
37+
"@anthropic-ai/claude-agent-sdk": "^0.2.50",
3838
"source-map-support": "^0.5.21",
3939
"uuid": "^13.0.0",
4040
"zod": "^4.3.6"

agents/agent-langchain-nextjs/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"lint-fix": "eslint --fix"
1111
},
1212
"dependencies": {
13-
"@ai-sdk/langchain": "^2.0.96",
14-
"@ai-sdk/react": "^3.0.92",
13+
"@ai-sdk/langchain": "^2.0.103",
14+
"@ai-sdk/react": "^3.0.99",
1515
"@arizeai/openinference-instrumentation-bedrock": "^0.4.8",
1616
"@arizeai/openinference-instrumentation-langchain": "^4.0.6",
1717
"@aws-lambda-powertools/logger": "^2.31.0",
18-
"@aws-sdk/credential-provider-node": "^3.972.9",
19-
"@langchain/aws": "^1.2.3",
20-
"@langchain/classic": "^1.0.18",
21-
"@langchain/core": "^1.1.26",
18+
"@aws-sdk/credential-provider-node": "^3.972.10",
19+
"@langchain/aws": "^1.2.4",
20+
"@langchain/classic": "^1.0.19",
21+
"@langchain/core": "^1.1.27",
2222
"@langchain/langgraph": "^1.1.5",
2323
"@langchain/mcp-adapters": "^1.1.3",
2424
"@opentelemetry/api": "^1.9.0",
@@ -54,45 +54,45 @@
5454
"@rive-app/react-webgl2": "^4.27.0",
5555
"@smithy/eventstream-codec": "^4.2.8",
5656
"@streamdown/cjk": "^1.0.2",
57-
"@streamdown/code": "^1.0.2",
57+
"@streamdown/code": "^1.0.3",
5858
"@streamdown/math": "^1.0.2",
5959
"@streamdown/mermaid": "^1.0.2",
60-
"@xyflow/react": "^12.10.0",
61-
"ai": "^6.0.90",
60+
"@xyflow/react": "^12.10.1",
61+
"ai": "^6.0.97",
6262
"ansi-to-react": "^6.2.6",
6363
"class-variance-authority": "^0.7.1",
6464
"clsx": "^2.1.1",
6565
"cmdk": "^1.1.1",
6666
"embla-carousel-react": "^8.6.0",
6767
"langchain": "^1.2.25",
6868
"lucide-react": "^0.563.0",
69-
"media-chrome": "^4.17.2",
70-
"motion": "^12.34.2",
69+
"media-chrome": "^4.18.0",
70+
"motion": "^12.34.3",
7171
"nanoid": "^5.1.6",
7272
"next": "^16.1.6",
7373
"react": "19.2.3",
7474
"react-dom": "19.2.3",
7575
"shiki": "^3.22.0",
7676
"sonner": "^2.0.7",
77-
"streamdown": "^2.2.0",
78-
"tailwind-merge": "^3.4.1",
77+
"streamdown": "^2.3.0",
78+
"tailwind-merge": "^3.5.0",
7979
"tokenlens": "^1.3.1",
8080
"use-stick-to-bottom": "^1.1.3"
8181
},
8282
"devDependencies": {
8383
"@eslint/compat": "^2.0.2",
8484
"@eslint/js": "^10.0.1",
85-
"@stylistic/eslint-plugin": "^5.8.0",
86-
"@tailwindcss/postcss": "^4.1.18",
85+
"@stylistic/eslint-plugin": "^5.9.0",
86+
"@tailwindcss/postcss": "^4.2.0",
8787
"@types/node": "^22.19.11",
8888
"@types/react": "^19.2.14",
8989
"@types/react-dom": "^19.2.3",
90-
"eslint": "^9.39.2",
90+
"eslint": "^9.39.3",
9191
"eslint-config-next": "^16.1.6",
9292
"eslint-import-resolver-typescript": "^4.4.4",
9393
"eslint-plugin-import": "^2.32.0",
9494
"eslint-plugin-promise": "^7.2.1",
95-
"tailwindcss": "^4.1.18",
95+
"tailwindcss": "^4.2.0",
9696
"tw-animate-css": "^1.4.0",
9797
"typescript": "^5.9.3",
9898
"typescript-eslint": "^8.56.0",

agents/agent-langchain/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
"devDependencies": {
1717
"@eslint/compat": "^2.0.2",
1818
"@eslint/js": "^10.0.1",
19-
"@stylistic/eslint-plugin": "^5.8.0",
19+
"@stylistic/eslint-plugin": "^5.9.0",
2020
"@types/aws-lambda": "^8.10.160",
2121
"@types/node": "^24.10.13",
2222
"@vitest/eslint-plugin": "^1.6.9",
2323
"dotenv": "^17.3.1",
24-
"eslint": "^9.39.2",
24+
"eslint": "^9.39.3",
2525
"eslint-import-resolver-typescript": "^4.4.4",
2626
"eslint-plugin-import": "^2.32.0",
2727
"eslint-plugin-promise": "^7.2.1",
@@ -37,13 +37,13 @@
3737
"@arizeai/openinference-instrumentation-bedrock": "^0.4.8",
3838
"@arizeai/openinference-instrumentation-langchain": "^4.0.6",
3939
"@aws-lambda-powertools/logger": "^2.31.0",
40-
"@aws-sdk/credential-provider-node": "^3.972.9",
41-
"@langchain/aws": "^1.2.3",
42-
"@langchain/classic": "^1.0.18",
43-
"@langchain/core": "^1.1.26",
40+
"@aws-sdk/credential-provider-node": "^3.972.10",
41+
"@langchain/aws": "^1.2.4",
42+
"@langchain/classic": "^1.0.19",
43+
"@langchain/core": "^1.1.27",
4444
"@langchain/langgraph": "^1.1.5",
4545
"@langchain/mcp-adapters": "^1.1.3",
46-
"@langchain/openai": "^1.2.8",
46+
"@langchain/openai": "^1.2.9",
4747
"@opentelemetry/api": "^1.9.0",
4848
"@opentelemetry/exporter-trace-otlp-http": "^0.210.0",
4949
"@opentelemetry/exporter-trace-otlp-proto": "^0.210.0",
@@ -54,7 +54,7 @@
5454
"@opentelemetry/sdk-trace-node": "^2.5.1",
5555
"@opentelemetry/semantic-conventions": "^1.39.0",
5656
"@smithy/eventstream-codec": "^4.2.8",
57-
"constructs": "^10.5.0",
57+
"constructs": "^10.5.1",
5858
"langchain": "^1.2.25",
5959
"source-map-support": "^0.5.21",
6060
"uuid": "^13.0.0",

agents/agent-mastra/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"license": "ISC",
1515
"type": "module",
1616
"dependencies": {
17-
"@ai-sdk/amazon-bedrock": "^4.0.61",
18-
"@ai-sdk/azure": "^3.0.30",
17+
"@ai-sdk/amazon-bedrock": "^4.0.63",
18+
"@ai-sdk/azure": "^3.0.31",
1919
"@mastra/core": "^0.24.9",
2020
"@mastra/libsql": "^0.16.4",
2121
"@mastra/loggers": "^0.10.19",
@@ -27,9 +27,9 @@
2727
"devDependencies": {
2828
"@eslint/compat": "^2.0.2",
2929
"@eslint/js": "^10.0.1",
30-
"@stylistic/eslint-plugin": "^5.8.0",
30+
"@stylistic/eslint-plugin": "^5.9.0",
3131
"@types/node": "^24.10.13",
32-
"eslint": "^9.39.2",
32+
"eslint": "^9.39.3",
3333
"eslint-import-resolver-typescript": "^4.4.4",
3434
"eslint-plugin-import": "^2.32.0",
3535
"eslint-plugin-promise": "^7.2.1",

agents/agent-strands/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"devDependencies": {
1414
"@eslint/compat": "^2.0.2",
1515
"@eslint/js": "^10.0.1",
16-
"@stylistic/eslint-plugin": "^5.8.0",
16+
"@stylistic/eslint-plugin": "^5.9.0",
1717
"@types/aws-lambda": "^8.10.160",
1818
"@types/node": "24.10.1",
1919
"@vitest/eslint-plugin": "^1.6.9",
20-
"aws-cdk": "^2.1106.0",
20+
"aws-cdk": "^2.1106.1",
2121
"dotenv": "^17.3.1",
2222
"esbuild": "^0.25.12",
23-
"eslint": "^9.39.2",
23+
"eslint": "^9.39.3",
2424
"eslint-import-resolver-typescript": "^4.4.4",
2525
"eslint-plugin-import": "^2.32.0",
2626
"eslint-plugin-promise": "^7.2.1",
@@ -34,11 +34,11 @@
3434
},
3535
"dependencies": {
3636
"@aws-lambda-powertools/logger": "^2.31.0",
37-
"@aws-sdk/credential-provider-node": "^3.972.9",
37+
"@aws-sdk/credential-provider-node": "^3.972.10",
3838
"@llm-ts-example/common-backend-core": "workspace:*",
3939
"@strands-agents/sdk": "^0.1.6",
40-
"aws-cdk-lib": "^2.238.0",
41-
"constructs": "^10.5.0",
40+
"aws-cdk-lib": "^2.239.0",
41+
"constructs": "^10.5.1",
4242
"uuid": "^13.0.0"
4343
}
4444
}

0 commit comments

Comments
 (0)