kubeview-mcp 1.4.3 → 1.4.5
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 +13 -0
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +2 -2
- package/package.json +9 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.4.5] - 2025-11-30
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **Enhance publishing scripts in package.json for improved version management**
|
|
14
|
+
- **Update server.json description for clarity**
|
|
15
|
+
- **Update version to 1.4.4 in server.json and add changelog entry for automated version management**
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [1.4.4] - 2025-11-30
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- **Update build-release and update-version scripts for automated version management**
|
|
22
|
+
|
|
10
23
|
## [1.4.0] - 2025-11-29
|
|
11
24
|
|
|
12
25
|
### Added
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.4.
|
|
1
|
+
export declare const VERSION = "1.4.5";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/src/version.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
// Auto-generated by scripts/build-
|
|
2
|
-
export const VERSION = '1.4.
|
|
1
|
+
// Auto-generated by scripts/build-release.js - DO NOT EDIT
|
|
2
|
+
export const VERSION = '1.4.5';
|
|
3
3
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubeview-mcp",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "Read-only MCP server enabling code-driven AI analysis of Kubernetes clusters",
|
|
5
5
|
"mcpName": "io.github.mikhae1/kubeview",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"*.md"
|
|
23
23
|
],
|
|
24
24
|
"scripts": {
|
|
25
|
-
"build": "node scripts/build-
|
|
25
|
+
"build": "node scripts/build-release.js && tsc",
|
|
26
26
|
"dev": "tsx --watch src/cli/cli.ts",
|
|
27
27
|
"start": "tsc && node bin/kubeview-mcp.js",
|
|
28
28
|
"setup": "node bin/setup.js",
|
|
@@ -34,12 +34,15 @@
|
|
|
34
34
|
"typecheck": "tsc --noEmit",
|
|
35
35
|
"prepare": "husky",
|
|
36
36
|
"command": "node src/cli/run-command.js",
|
|
37
|
-
"release": "npm run release:check && npm run release:qa && npm run release:build && npm run release:tag",
|
|
38
|
-
"release:check": "git diff --exit-code && git diff --cached --exit-code || (echo 'Error: Working directory not clean. Please commit or stash changes.' && exit 1)",
|
|
39
37
|
"release:qa": "npm run lint && npm run typecheck && npm run test",
|
|
40
38
|
"release:build": "npm run build",
|
|
41
|
-
"release:
|
|
42
|
-
"
|
|
39
|
+
"release:version": "node scripts/update-version.js",
|
|
40
|
+
"release": "npm run release:version && npm run release:qa && npm run release:build",
|
|
41
|
+
"publish:commit": "git commit -m 'Release v$(node -p \"require('./package.json').version\")'",
|
|
42
|
+
"publish:tag": "git tag v$(node -p \"require('./package.json').version\") && echo 'Tagged version v'$(node -p \"require('./package.json').version\")",
|
|
43
|
+
"publish:push": "npm publish && git push origin master --tags",
|
|
44
|
+
"publish:mcp": "mcp-publisher login github && mcp-publisher publish server.json",
|
|
45
|
+
"publish": "npm run release && npm run publish:commit && npm run publish:tag && npm run publish:push && publish:mcp"
|
|
43
46
|
},
|
|
44
47
|
"keywords": [
|
|
45
48
|
"kubernetes",
|