Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/python/advanced-sample/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Sample application implementing advanced Kernel configs"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"kernel>=0.14.2",
"kernel>=0.24.0",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Lock files not updated after dependency version bump

The pyproject.toml files were updated to require kernel>=0.24.0, but the corresponding tracked uv.lock files still have old incompatible versions locked (0.5.0, 0.11.1, 0.1.0a15). When users run uv sync with these templates, it will fail because the locked versions don't satisfy the new constraint. The lock files in advanced-sample, browser-use, sample-app, and computer-use templates need to be regenerated.

Additional Locations (2)

Fix in Cursor Fix in Web

"playwright>=1.52.0"
]

Expand Down
2 changes: 1 addition & 1 deletion templates/python/browser-use/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"browser-use>=0.7.10",
"kernel>=0.14.2",
"kernel>=0.24.0",
"pydantic>=2.10.6",
]
2 changes: 1 addition & 1 deletion templates/python/computer-use/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies = [
"python-dateutil~=2.8.2",
"pydantic~=2.11.5",
"typing-extensions~=4.13.2",
"kernel>=0.14.2",
"kernel>=0.24.0",
"python-dotenv~=1.0.0",
"httpx~=0.27.0",
]
2 changes: 1 addition & 1 deletion templates/python/cua/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
"idna==3.10",
"jiter==0.10.0",
"pillow==11.2.1",
"kernel>=0.14.2",
"kernel>=0.24.0",
"playwright==1.52.0",
"pydantic==2.11.7",
"pydantic_core==2.33.2",
Expand Down
2 changes: 1 addition & 1 deletion templates/python/sample-app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Kernel application template - Python"
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["kernel>=0.14.2", "playwright>=1.52.0"]
dependencies = ["kernel>=0.24.0", "playwright>=1.52.0"]

[dependency-groups]
dev = ["mypy>=1.15.0"]
2 changes: 1 addition & 1 deletion templates/typescript/advanced-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"typescript": "^5"
},
"dependencies": {
"@onkernel/sdk": ">=0.14.2",
"@onkernel/sdk": ">=0.24.0",
"playwright": "^1.52.0"
}
}
2 changes: 1 addition & 1 deletion templates/typescript/computer-use/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"typescript": "^5"
},
"dependencies": {
"@onkernel/sdk": ">=0.14.2",
"@onkernel/sdk": ">=0.24.0",
"playwright": "^1.52.0",
"@anthropic-ai/sdk": "0.52.0",
"luxon": "3.6.0"
Expand Down
2 changes: 1 addition & 1 deletion templates/typescript/cua/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"build": "tsc"
},
"dependencies": {
"@onkernel/sdk": ">=0.14.2",
"@onkernel/sdk": ">=0.24.0",
"dotenv": "^16.5.0",
"openai": "^5.7.0",
"playwright": "^1.53.0",
Expand Down
2 changes: 1 addition & 1 deletion templates/typescript/gemini-cua/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"@browserbasehq/stagehand": "^2.5.2",
"@onkernel/sdk": "^0.15.0",
"@onkernel/sdk": ">=0.24.0",
"zod": "^3.25.67"
}
}
2 changes: 1 addition & 1 deletion templates/typescript/magnitude/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"typescript": "^5"
},
"dependencies": {
"@onkernel/sdk": ">=0.14.2",
"@onkernel/sdk": ">=0.24.0",
"magnitude-core": "latest",
"zod": "^3.25.0"
}
Expand Down
2 changes: 1 addition & 1 deletion templates/typescript/sample-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"typescript": "^5"
},
"dependencies": {
"@onkernel/sdk": ">=0.14.2",
"@onkernel/sdk": ">=0.24.0",
"playwright": "^1.52.0"
}
}
2 changes: 1 addition & 1 deletion templates/typescript/stagehand/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"@browserbasehq/stagehand": "^3.0.1",
"@onkernel/sdk": "^0.18.0",
"@onkernel/sdk": ">=0.24.0",
"zod": "=3.25.67"
}
}