mcp-openapi-schema-explorer 1.0.0 → 1.0.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/.github/workflows/ci.yml +3 -2
- package/CHANGELOG.md +12 -0
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +2 -2
- package/src/version.ts +1 -1
package/.github/workflows/ci.yml
CHANGED
|
@@ -94,7 +94,8 @@ jobs:
|
|
|
94
94
|
steps:
|
|
95
95
|
- name: Checkout
|
|
96
96
|
uses: actions/checkout@v4
|
|
97
|
-
|
|
97
|
+
with:
|
|
98
|
+
persist-credentials: false
|
|
98
99
|
- name: Setup Node.js
|
|
99
100
|
uses: actions/setup-node@v4
|
|
100
101
|
with:
|
|
@@ -107,5 +108,5 @@ jobs:
|
|
|
107
108
|
- name: Semantic Release
|
|
108
109
|
uses: cycjimmy/semantic-release-action@v4
|
|
109
110
|
env:
|
|
110
|
-
GITHUB_TOKEN: ${{ secrets.
|
|
111
|
+
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
111
112
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.0.2](https://github.com/kadykov/mcp-openapi-schema-explorer/compare/v1.0.1...v1.0.2) (2025-04-13)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- update CI workflow to use RELEASE_TOKEN and disable credential persistence ([e7b18f9](https://github.com/kadykov/mcp-openapi-schema-explorer/commit/e7b18f9055b95f0e2c6e2a356cb87482db6205da))
|
|
6
|
+
|
|
7
|
+
## [1.0.1](https://github.com/kadykov/mcp-openapi-schema-explorer/compare/v1.0.0...v1.0.1) (2025-04-12)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- add openapi-types dependency to package.json and package-lock.json ([d348fb9](https://github.com/kadykov/mcp-openapi-schema-explorer/commit/d348fb92a30cdb9d213ee92f1779258f43bbbcd9))
|
|
12
|
+
|
|
1
13
|
# 1.0.0 (2025-04-12)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.0.
|
|
1
|
+
export declare const VERSION = "1.0.2";
|
package/dist/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-openapi-schema-explorer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP OpenAPI schema explorer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@modelcontextprotocol/sdk": "^1.8.0",
|
|
40
40
|
"js-yaml": "^4.1.0",
|
|
41
|
+
"openapi-types": "^12.1.3",
|
|
41
42
|
"swagger2openapi": "7.0.8",
|
|
42
43
|
"zod": "^3.24.2"
|
|
43
44
|
},
|
|
@@ -66,7 +67,6 @@
|
|
|
66
67
|
"jest-silent-reporter": "^0.6.0",
|
|
67
68
|
"license-checker": "^25.0.1",
|
|
68
69
|
"msw": "^2.7.4",
|
|
69
|
-
"openapi-types": "^12.1.3",
|
|
70
70
|
"openapi-typescript": "^7.6.1",
|
|
71
71
|
"prettier": "^3.5.3",
|
|
72
72
|
"semantic-release": "^24.2.3",
|
package/src/version.ts
CHANGED