Skip to content

Commit 6c35818

Browse files
committed
chore(release): bump MCP server version to 1.4.4
- package.json: mcpVersion 1.4.3 → 1.4.4 - src/node/mcp-server.mjs: VERSION constant updated Release includes: - Docker Hub build fix (corrupted package workaround) - 12 security vulnerability fixes (web UI) - GitHub Copilot instructions - Memory and webpack optimizations
1 parent dad6477 commit 6c35818

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cyberchef",
33
"version": "10.19.4",
4-
"mcpVersion": "1.4.3",
4+
"mcpVersion": "1.4.4",
55
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
66
"author": "n1474335 <n1474335@gmail.com>",
77
"homepage": "https://gchq.github.io/CyberChef",

src/node/mcp-server.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import OperationConfig from "../core/config/OperationConfig.json" with {type: "j
1717
import { createHash } from "crypto";
1818

1919
// Performance configuration (configurable via environment variables)
20-
const VERSION = "1.4.3";
20+
const VERSION = "1.4.4";
2121
const MAX_INPUT_SIZE = parseInt(process.env.CYBERCHEF_MAX_INPUT_SIZE, 10) || 100 * 1024 * 1024; // 100MB default
2222
const OPERATION_TIMEOUT = parseInt(process.env.CYBERCHEF_OPERATION_TIMEOUT, 10) || 30000; // 30s default
2323
const STREAMING_THRESHOLD = parseInt(process.env.CYBERCHEF_STREAMING_THRESHOLD, 10) || 10 * 1024 * 1024; // 10MB default

0 commit comments

Comments
 (0)