deploy-mcp 0.6.3 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.6.4] - 2025-12-05
|
|
11
|
+
|
|
12
|
+
### Security
|
|
13
|
+
|
|
14
|
+
- Updated @modelcontextprotocol/sdk from 1.20.2 to 1.24.0 to resolve CVE-2025-66414 (HIGH severity DNS rebinding vulnerability)
|
|
15
|
+
- Updated express from 5.1.0 to 5.2.1 to resolve CVE-2025-13466 (MODERATE severity DoS vulnerability)
|
|
16
|
+
- Updated body-parser from 2.2.0 to 2.2.1 to resolve CVE-2025-13466 (MODERATE severity DoS vulnerability)
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Replaced `description` with `title` property in MCP Server constructor for SDK 1.24.0 compatibility
|
|
21
|
+
|
|
10
22
|
## [0.6.2] - 2025-11-21
|
|
11
23
|
|
|
12
24
|
### Fixed
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deploy-mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "Universal deployment tracker for AI assistants",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"release:major": "npm version major && git push origin main --tags"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
63
|
+
"@modelcontextprotocol/sdk": "^1.24.0",
|
|
64
64
|
"zod": "^4.0.14"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|