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
6 changes: 0 additions & 6 deletions .changeset/wide-flat-new.md

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @prodisco/mcp-server

## 0.1.14

### Patch Changes

- [#59](https://github.com/harche/ProDisco/pull/59) [`7e2154a`](https://github.com/harche/ProDisco/commit/7e2154ae72ab0900b829cd42c419d168e7b65a31) Thanks [@harche](https://github.com/harche)! - Prevent environment variable leaks from sandbox execution. Sandbox code now gets a frozen empty process.env instead of the host's real environment variables. Added defense-in-depth output filter that blocks execution if sensitive env var values appear in output.

- Updated dependencies [[`7e2154a`](https://github.com/harche/ProDisco/commit/7e2154ae72ab0900b829cd42c419d168e7b65a31)]:
- @prodisco/sandbox-server@0.1.6

## 0.1.13

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prodisco/mcp-server",
"version": "0.1.13",
"version": "0.1.14",
"description": "ProDisco: Kubernetes MCP server with progressive disclosure",
"type": "module",
"main": "dist/server.js",
Expand Down Expand Up @@ -59,7 +59,7 @@
"@orama/orama": "^3.1.5",
"@prodisco/loki-client": "^0.1.0",
"@prodisco/prometheus-client": "^0.1.0",
"@prodisco/sandbox-server": "^0.1.3",
"@prodisco/sandbox-server": "^0.1.6",
"@prodisco/search-libs": "^0.1.0",
"chokidar": "^5.0.0",
"esbuild": "^0.27.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/sandbox-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @prodisco/sandbox-server

## 0.1.6

### Patch Changes

- [#59](https://github.com/harche/ProDisco/pull/59) [`7e2154a`](https://github.com/harche/ProDisco/commit/7e2154ae72ab0900b829cd42c419d168e7b65a31) Thanks [@harche](https://github.com/harche)! - Prevent environment variable leaks from sandbox execution. Sandbox code now gets a frozen empty process.env instead of the host's real environment variables. Added defense-in-depth output filter that blocks execution if sensitive env var values appear in output.

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prodisco/sandbox-server",
"version": "0.1.5",
"version": "0.1.6",
"description": "gRPC sandbox server for code execution with Kubernetes context",
"type": "module",
"main": "dist/client/index.js",
Expand Down