kubeview-mcp 1.4.4 → 1.4.6
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 +11 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,12 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.4.6] - 2025-11-30
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **Release v1.4.6**
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [1.4.5] - 2025-11-30
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Version bump to 1.4.5
|
|
20
|
+
|
|
10
21
|
## [1.4.4] - 2025-11-30
|
|
11
22
|
|
|
12
23
|
### Changed
|
|
13
24
|
- **Update build-release and update-version scripts for automated version management**
|
|
14
25
|
|
|
15
|
-
|
|
16
26
|
## [1.4.0] - 2025-11-29
|
|
17
27
|
|
|
18
28
|
### 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.6";
|
|
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.4.
|
|
3
|
+
"version": "1.4.6",
|
|
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",
|
|
@@ -34,14 +34,16 @@
|
|
|
34
34
|
"typecheck": "tsc --noEmit",
|
|
35
35
|
"prepare": "husky",
|
|
36
36
|
"command": "node src/cli/run-command.js",
|
|
37
|
-
"release:check": "git diff --exit-code -- package.json server.json CHANGELOG.md && git diff --cached --exit-code -- package.json server.json CHANGELOG.md || { echo 'Error: package.json, server.json, or CHANGELOG.md already have changes. Please commit or stash them before releasing.'; exit 1; }",
|
|
38
37
|
"release:qa": "npm run lint && npm run typecheck && npm run test",
|
|
39
38
|
"release:build": "npm run build",
|
|
40
39
|
"release:version": "node scripts/update-version.js",
|
|
41
|
-
"release": "npm run release:
|
|
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
42
|
"publish:tag": "git tag v$(node -p \"require('./package.json').version\") && echo 'Tagged version v'$(node -p \"require('./package.json').version\")",
|
|
43
|
-
"publish:
|
|
44
|
-
"publish": "
|
|
43
|
+
"publish:npm": "npm publish",
|
|
44
|
+
"publish:git": "git push origin master --tags",
|
|
45
|
+
"publish:mcp": "mcp-publisher login github && mcp-publisher publish server.json",
|
|
46
|
+
"publish": "npm run publish:commit && npm run publish:tag && npm run publish:npm && npm run publish:git && npm run publish:mcp"
|
|
45
47
|
},
|
|
46
48
|
"keywords": [
|
|
47
49
|
"kubernetes",
|