kubeview-mcp 1.9.1 → 1.9.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 +6 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +8 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.9.2] - 2026-06-13
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- **Add npm source and issue metadata (#2)**
|
|
14
|
+
|
|
15
|
+
|
|
10
16
|
## [1.9.1] - 2026-06-13
|
|
11
17
|
|
|
12
18
|
### Fixed
|
|
13
19
|
- **(fix) Fix the launch issue for claude desktop**
|
|
14
20
|
|
|
15
|
-
|
|
16
21
|
## [1.9.0] - 2026-06-02
|
|
17
22
|
|
|
18
23
|
### Added
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.9.
|
|
1
|
+
export declare const VERSION = "1.9.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubeview-mcp",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.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
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/mikhae1/kubeview-mcp.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/mikhae1/kubeview-mcp/issues"
|
|
12
|
+
},
|
|
6
13
|
"mcpName": "io.github.mikhae1/kubeview",
|
|
7
14
|
"main": "dist/src/index.js",
|
|
8
15
|
"type": "module",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Auto-generated by scripts/build-version.js - DO NOT EDIT
|
|
2
|
-
export const VERSION = '1.9.
|
|
2
|
+
export const VERSION = '1.9.2';
|