@daghis/teamcity-mcp 2.2.0 → 2.2.1
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/CLAUDE.md +10 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.2.1](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.2.0...teamcity-mcp-v2.2.1) (2026-02-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** update qs to 6.14.2 to fix DoS vulnerability ([#397](https://github.com/Daghis/teamcity-mcp/issues/397)) ([39f6b28](https://github.com/Daghis/teamcity-mcp/commit/39f6b28489f8e167f62adbf84ac6126ddfbb17f7))
|
|
9
|
+
|
|
3
10
|
## [2.2.0](https://github.com/Daghis/teamcity-mcp/compare/teamcity-mcp-v2.1.10...teamcity-mcp-v2.2.0) (2026-02-12)
|
|
4
11
|
|
|
5
12
|
|
package/CLAUDE.md
CHANGED
|
@@ -68,3 +68,13 @@ When Marc says he wants to "check-in with GitHub", run these steps:
|
|
|
68
68
|
2. Check new issues
|
|
69
69
|
3. Check new PRs
|
|
70
70
|
4. Check security alerts
|
|
71
|
+
|
|
72
|
+
## Git Workflow
|
|
73
|
+
|
|
74
|
+
Before starting any work that will result in a commit/PR, always pull the latest `main` first:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
git checkout main && git pull origin main
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Then create the feature branch from that up-to-date main. This avoids "branch is out-of-date" warnings on PRs.
|
package/dist/index.js
CHANGED
|
@@ -1207,7 +1207,7 @@ function debug2(message, meta) {
|
|
|
1207
1207
|
// package.json
|
|
1208
1208
|
var package_default = {
|
|
1209
1209
|
name: "@daghis/teamcity-mcp",
|
|
1210
|
-
version: "2.2.
|
|
1210
|
+
version: "2.2.1",
|
|
1211
1211
|
description: "Model Control Protocol server for TeamCity CI/CD integration with AI coding assistants",
|
|
1212
1212
|
mcpName: "io.github.Daghis/teamcity",
|
|
1213
1213
|
main: "dist/index.js",
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
9
|
"websiteUrl": "https://github.com/Daghis/teamcity-mcp",
|
|
10
|
-
"version": "2.2.
|
|
10
|
+
"version": "2.2.1",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
15
|
"identifier": "@daghis/teamcity-mcp",
|
|
16
|
-
"version": "2.2.
|
|
16
|
+
"version": "2.2.1",
|
|
17
17
|
"runtimeHint": "npx",
|
|
18
18
|
"runtimeArguments": [
|
|
19
19
|
{
|