Skip to content
Merged
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 .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"plugins": [
{
"name": "kbagent",
"version": "0.76.2",
"version": "0.76.3",
"source": "./plugins/kbagent",
"description": "AI-friendly interface to Keboola Connection projects — explore configs, jobs, lineage, call MCP tools, manage dev branches, and debug SQL in workspaces",
"category": "development"
Expand Down
2 changes: 1 addition & 1 deletion plugins/kbagent/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kbagent",
"version": "0.76.2",
"version": "0.76.3",
"description": "AI-friendly interface to Keboola Connection projects — explore configs, jobs, lineage, call MCP tools, manage dev branches, and debug SQL in workspaces",
"author": {
"name": "Keboola",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "keboola-cli"
version = "0.76.2"
version = "0.76.3"
description = "AI-friendly CLI for managing Keboola projects"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
7 changes: 7 additions & 0 deletions src/keboola_agent_cli/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@

# Ordered newest-first. Each value is a list of brief one-line descriptions.
CHANGELOG: dict[str, list[str]] = {
"0.76.3": [
"Security: bump npm dependencies flagged by Dependabot in `web/backend` and "
"`web/frontend` -- `@fastify/static` (path traversal / auth bypass), "
"`brace-expansion` and `find-my-way` (DoS), `postcss` (source-map path traversal), "
"and `dompurify` (XSS/sanitization bypass, pinned via an npm override on the "
"`monaco-editor`/`mermaid` transitive copy). No behavior change.",
],
"0.76.2": [
"Fix (#528, #530): self-update no longer risks leaving the running Windows uv tool "
"environment partially upgraded. kbagent now completes all network checks and command "
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 40 additions & 23 deletions web/backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/static": "^9.0.0",
"@fastify/static": "^10.1.2",
"fastify": "^5.8.5",
"pino-pretty": "^13.1.3",
"undici": "^6.27.0"
Expand Down
32 changes: 11 additions & 21 deletions web/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions web/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,8 @@
"typescript": "^5.5.4",
"vite": "^8.0.16",
"vitest": "^4.1.7"
},
"overrides": {
"dompurify": "^3.4.12"
}
}
Loading