fix: corrigir bugs críticos de segurança e memory leaks (v1.2.4)

- fix(pagination): SQL injection em cursor pagination - validação de nomes de campos
- fix(transaction): substituir Math.random() por crypto.randomBytes() para jitter
- fix(monitoring): memory leak - adicionar .unref() ao setInterval
- docs: adicionar relatório completo de bugs (BUG-REPORT-2026-01-31.md)
- chore: actualizar versão para 1.2.4
This commit is contained in:
2026-01-31 16:09:25 +00:00
parent 22601e1680
commit 0329a1179a
22 changed files with 2868 additions and 67 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "mcp-outline-postgresql",
"version": "1.0.0",
"version": "1.2.4",
"description": "MCP Server for Outline Wiki via PostgreSQL direct access",
"main": "dist/index.js",
"scripts": {
@@ -9,7 +9,12 @@
"dev": "ts-node src/index.ts",
"test": "jest"
},
"keywords": ["mcp", "outline", "postgresql", "wiki"],
"keywords": [
"mcp",
"outline",
"postgresql",
"wiki"
],
"author": "Descomplicar",
"license": "MIT",
"dependencies": {
@@ -26,4 +31,4 @@
"jest": "^29.7.0",
"@types/jest": "^29.5.11"
}
}
}