bamboo-mcp-server 1.0.11 → 1.1.3
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 +33 -0
- package/README.md +7 -0
- package/package.json +12 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
## [1.1.3](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.1.2...v1.1.3) (2026-01-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci:** only publish to npm when new release is created ([cbbd440](https://github.com/norus/atlassian-bamboo-mcp/commit/cbbd4404aabe16ba2f6faa53f15124f8fe95c8b6))
|
|
7
|
+
|
|
8
|
+
## [1.1.2](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.1.1...v1.1.2) (2026-01-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **ci:** match original publish.yml setup for trusted publishers ([2ff9306](https://github.com/norus/atlassian-bamboo-mcp/commit/2ff930679ee15f91bd8e9b7de78428db3683ba29))
|
|
14
|
+
|
|
15
|
+
## [1.1.1](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.1.0...v1.1.1) (2026-01-09)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **ci:** remove registry-url to fix OIDC auth ([af9ff11](https://github.com/norus/atlassian-bamboo-mcp/commit/af9ff111d95206a422c7bfa90f355750aaacd4a8))
|
|
21
|
+
|
|
22
|
+
# [1.1.0](https://github.com/norus/atlassian-bamboo-mcp/compare/v1.0.11...v1.1.0) (2026-01-09)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **ci:** use native npm publish for trusted publishers ([a24ad47](https://github.com/norus/atlassian-bamboo-mcp/commit/a24ad4716b10284271a9e83b5a789acf6f140401))
|
|
28
|
+
* **ci:** use Node 22 for semantic-release ([8c9db06](https://github.com/norus/atlassian-bamboo-mcp/commit/8c9db06200ecd640b616cc4aaf3188c9159d49dd))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* add automated releases with semantic-release ([9bcaa2d](https://github.com/norus/atlassian-bamboo-mcp/commit/9bcaa2d4e36cc8cccb171e068c709287bb5bf6ef))
|
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# Atlassian Bamboo MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://github.com/norus/atlassian-bamboo-mcp/actions/workflows/ci.yml)
|
|
3
4
|
[](https://www.npmjs.com/package/bamboo-mcp-server)
|
|
4
5
|
[](./LICENSE)
|
|
5
6
|
[](https://www.typescriptlang.org/)
|
|
@@ -322,6 +323,12 @@ npm install
|
|
|
322
323
|
# Build
|
|
323
324
|
npm run build
|
|
324
325
|
|
|
326
|
+
# Run tests
|
|
327
|
+
npm test
|
|
328
|
+
|
|
329
|
+
# Run tests with coverage
|
|
330
|
+
npm run test:coverage
|
|
331
|
+
|
|
325
332
|
# Run locally
|
|
326
333
|
BAMBOO_URL="https://bamboo.example.com" \
|
|
327
334
|
BAMBOO_TOKEN="your-token" \
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bamboo-mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.3",
|
|
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"
|