bamboo-mcp-server 1.0.11 → 1.1.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 +26 -0
- package/package.json +12 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
## [1.1.2](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.1.1...v1.1.2) (2026-01-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci:** match original publish.yml setup for trusted publishers ([2ff9306](https://github.com/norus/atlassian-bamboo-mcp/commit/2ff930679ee15f91bd8e9b7de78428db3683ba29))
|
|
7
|
+
|
|
8
|
+
## [1.1.1](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.1.0...v1.1.1) (2026-01-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **ci:** remove registry-url to fix OIDC auth ([af9ff11](https://github.com/norus/atlassian-bamboo-mcp/commit/af9ff111d95206a422c7bfa90f355750aaacd4a8))
|
|
14
|
+
|
|
15
|
+
# [1.1.0](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.0.11...v1.1.0) (2026-01-09)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **ci:** use native npm publish for trusted publishers ([a24ad47](https://github.com/norus/atlassian-bamboo-mcp/commit/a24ad4716b10284271a9e83b5a789acf6f140401))
|
|
21
|
+
* **ci:** use Node 22 for semantic-release ([8c9db06](https://github.com/norus/atlassian-bamboo-mcp/commit/8c9db06200ecd640b616cc4aaf3188c9159d49dd))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* add automated releases with semantic-release ([9bcaa2d](https://github.com/norus/atlassian-bamboo-mcp/commit/9bcaa2d4e36cc8cccb171e068c709287bb5bf6ef))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bamboo-mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "MCP server for Atlassian Bamboo",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"build": "tsc",
|
|
12
12
|
"start": "node dist/index.js",
|
|
13
13
|
"dev": "tsc --watch",
|
|
14
|
+
"test": "vitest run",
|
|
15
|
+
"test:watch": "vitest",
|
|
16
|
+
"test:coverage": "vitest run --coverage",
|
|
14
17
|
"prepublishOnly": "npm run build"
|
|
15
18
|
},
|
|
16
19
|
"keywords": [
|
|
@@ -35,6 +38,7 @@
|
|
|
35
38
|
"files": [
|
|
36
39
|
"dist",
|
|
37
40
|
"README.md",
|
|
41
|
+
"CHANGELOG.md",
|
|
38
42
|
"LICENSE"
|
|
39
43
|
],
|
|
40
44
|
"dependencies": {
|
|
@@ -43,8 +47,14 @@
|
|
|
43
47
|
"zod": "^3.22.0"
|
|
44
48
|
},
|
|
45
49
|
"devDependencies": {
|
|
50
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
51
|
+
"@semantic-release/git": "^10.0.1",
|
|
46
52
|
"@types/node": "^20.0.0",
|
|
47
|
-
"
|
|
53
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
54
|
+
"msw": "^2.12.7",
|
|
55
|
+
"semantic-release": "^24.2.9",
|
|
56
|
+
"typescript": "^5.3.0",
|
|
57
|
+
"vitest": "^4.0.16"
|
|
48
58
|
},
|
|
49
59
|
"engines": {
|
|
50
60
|
"node": ">=18.0.0"
|