appium-mcp 1.1.6 → 1.1.8

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.
@@ -5,6 +5,12 @@ on:
5
5
  push:
6
6
  branches: [main]
7
7
 
8
+ permissions:
9
+ contents: write
10
+ pull-requests: write
11
+ issues: write
12
+ id-token: write # to enable use of OIDC for trusted publishing and npm provenance
13
+
8
14
  jobs:
9
15
  build:
10
16
  runs-on: macos-latest
@@ -27,5 +33,4 @@ jobs:
27
33
  - run: npx semantic-release
28
34
  env:
29
35
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
31
36
  name: Release
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [1.1.8](https://github.com/appium/appium-mcp/compare/v1.1.7...v1.1.8) (2025-11-15)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * add repository and bugs to meet with npm provenance ([9e0ce59](https://github.com/appium/appium-mcp/commit/9e0ce59f751d3446537cb159b61aa14c70ab984f))
6
+
7
+ ## [1.1.7](https://github.com/appium/appium-mcp/compare/v1.1.6...v1.1.7) (2025-11-15)
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * minimize devDeps related to semantic-release ([5249dd9](https://github.com/appium/appium-mcp/commit/5249dd9564b87270bf7a0469e16a1ed393d01780))
12
+ * publish via trusted publisher ([#29](https://github.com/appium/appium-mcp/issues/29)) ([fb5de3e](https://github.com/appium/appium-mcp/commit/fb5de3ebd19cbaadcb4c5dc021f666296cae5a7a))
13
+
1
14
  ## [1.1.6](https://github.com/appium/appium-mcp/compare/v1.1.5...v1.1.6) (2025-11-14)
2
15
 
3
16
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,14 @@
1
1
  {
2
2
  "name": "appium-mcp",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
4
  "type": "module",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/appium/appium-mcp.git"
8
+ },
9
+ "bugs": {
10
+ "url": "https://github.com/appium/appium-mcp/issues"
11
+ },
5
12
  "main": "src/index.ts",
6
13
  "bin": {
7
14
  "mcp-appium": "dist/index.js"
@@ -54,11 +61,7 @@
54
61
  "devDependencies": {
55
62
  "@jest/globals": "^29.7.0",
56
63
  "@semantic-release/changelog": "^6.0.3",
57
- "@semantic-release/commit-analyzer": "^13.0.0",
58
64
  "@semantic-release/git": "^10.0.1",
59
- "@semantic-release/github": "^10.0.2",
60
- "@semantic-release/npm": "^12.0.1",
61
- "@semantic-release/release-notes-generator": "^14.0.1",
62
65
  "@types/jest": "^29.5.12",
63
66
  "@types/lodash": "^4.17.17",
64
67
  "@types/node": "^22.15.18",
@@ -70,6 +73,7 @@
70
73
  "eslint-plugin-prettier": "^5.4.1",
71
74
  "jest": "^29.7.0",
72
75
  "prettier": "^3.5.3",
76
+ "semantic-release": "^25.0.2",
73
77
  "ts-jest": "^29.1.2",
74
78
  "ts-node": "^10.9.2",
75
79
  "typescript": "^5.8.3"