@tugudush/bitbucket-mcp 1.4.11 → 1.4.12
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/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.4.12] - 2025-08-23
|
|
11
|
+
|
|
12
|
+
### Removed
|
|
13
|
+
- **Build scripts**: Removed `release` script from package.json
|
|
14
|
+
- Eliminated `npm run release` command from available npm scripts
|
|
15
|
+
- Simplified package.json by removing automated release workflow script
|
|
16
|
+
|
|
10
17
|
## [1.4.11] - 2025-08-23
|
|
11
18
|
|
|
12
19
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tugudush/bitbucket-mcp",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.12",
|
|
4
4
|
"description": "A Model Context Protocol server for Bitbucket with read-only operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -18,8 +18,7 @@
|
|
|
18
18
|
"format": "prettier --write src/**/*.ts",
|
|
19
19
|
"lf": "npm run lint && npm run format",
|
|
20
20
|
"ltf": "npm run lint && npm run format && npm run typecheck",
|
|
21
|
-
"ltfb": "npm run lint && npm run typecheck && npm run format && npm run build"
|
|
22
|
-
"release": "npm run ltfb && npm publish && git push && git push --tags"
|
|
21
|
+
"ltfb": "npm run lint && npm run typecheck && npm run format && npm run build"
|
|
23
22
|
},
|
|
24
23
|
"keywords": [
|
|
25
24
|
"mcp",
|