kubeview-mcp 1.7.1 → 1.7.2
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 +7 -0
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.7.2] - 2026-03-14
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **Update dependencies in package-lock.json and modify release script in package.json to include npm install step. Key updates include upgrading minimatch, express, and ajv versions for improved functionality and security.**
|
|
14
|
+
- **Update package-lock.json to version 1.7.1**
|
|
15
|
+
|
|
16
|
+
|
|
10
17
|
## [1.7.1] - 2026-03-07
|
|
11
18
|
|
|
12
19
|
### Changed
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.7.
|
|
1
|
+
export declare const VERSION = "1.7.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubeview-mcp",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "Read-only MCP server enabling code-driven AI analysis of Kubernetes clusters",
|
|
5
5
|
"homepage": "https://github.com/mikhae1/kubeview-mcp",
|
|
6
6
|
"mcpName": "io.github.mikhae1/kubeview",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"release:qa": "npm run lint && npm run typecheck && npm run test",
|
|
39
39
|
"release:build": "npm run build",
|
|
40
40
|
"release:version": "node scripts/update-version.js && node scripts/build-version.js",
|
|
41
|
-
"release": "npm run release:qa && npm run release:version && npm run release:build",
|
|
41
|
+
"release": "npm install && npm run release:qa && npm run release:version && npm run release:build",
|
|
42
42
|
"publish:commit": "tsx scripts/release-publish.ts commit",
|
|
43
43
|
"publish:tag": "tsx scripts/release-publish.ts tag",
|
|
44
44
|
"publish:npm": "tsx scripts/release-publish.ts npm",
|