@gala-chain/launchpad-mcp-server 1.8.0 → 1.8.1
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 +17 -0
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix: Pin MCP to SDK v3.12.7 (latest stable with bug fixes)
|
|
8
|
+
|
|
9
|
+
Updated SDK dependency from flexible `*` to pinned `^3.12.7`.
|
|
10
|
+
|
|
11
|
+
**Rationale:**
|
|
12
|
+
- Pinning ensures deliberate, tested updates instead of automatic surprises
|
|
13
|
+
- Provides stability and prevents accidental breaking changes
|
|
14
|
+
- v3.12.7 includes critical bug fixes (File polyfill, version detection)
|
|
15
|
+
- The pin MUST be updated immediately when SDK releases critical fixes
|
|
16
|
+
- Prevents users from falling behind on essential bug fixes
|
|
17
|
+
|
|
18
|
+
**Discipline required:** Every SDK release cycle, update the MCP pin. No lagging behind.
|
|
19
|
+
|
|
3
20
|
## 1.8.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-mcp-server",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "MCP server for Gala Launchpad SDK with 51 tools + 14 slash commands - Production-grade AI agent integration with comprehensive validation, optimized performance, and 80%+ test coverage",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@gala-chain/api": "^2.4.3",
|
|
65
65
|
"@gala-chain/connect": "^2.4.3",
|
|
66
|
-
"@gala-chain/launchpad-sdk": "
|
|
66
|
+
"@gala-chain/launchpad-sdk": "^3.12.7",
|
|
67
67
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
68
68
|
"axios": "^1.12.2",
|
|
69
69
|
"bignumber.js": "^9.1.2",
|