kubeview-mcp 1.4.5 → 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 +7 -4
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,13 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [1.4.
|
|
10
|
+
## [1.4.6] - 2025-11-30
|
|
11
11
|
|
|
12
12
|
### Changed
|
|
13
|
-
- **
|
|
14
|
-
|
|
15
|
-
- **Update version to 1.4.4 in server.json and add changelog entry for automated version management**
|
|
13
|
+
- **Release v1.4.6**
|
|
14
|
+
|
|
16
15
|
|
|
16
|
+
## [1.4.5] - 2025-11-30
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Version bump to 1.4.5
|
|
17
20
|
|
|
18
21
|
## [1.4.4] - 2025-11-30
|
|
19
22
|
|
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",
|
|
@@ -40,9 +40,10 @@
|
|
|
40
40
|
"release": "npm run release:version && npm run release:qa && npm run release:build",
|
|
41
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:
|
|
43
|
+
"publish:npm": "npm publish",
|
|
44
|
+
"publish:git": "git push origin master --tags",
|
|
44
45
|
"publish:mcp": "mcp-publisher login github && mcp-publisher publish server.json",
|
|
45
|
-
"publish": "npm run
|
|
46
|
+
"publish": "npm run publish:commit && npm run publish:tag && npm run publish:npm && npm run publish:git && npm run publish:mcp"
|
|
46
47
|
},
|
|
47
48
|
"keywords": [
|
|
48
49
|
"kubernetes",
|