@atezer/figma-mcp-bridge 1.5.1 → 1.5.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/CHANGELOG.md +9 -0
- package/README.md +1 -1
- package/dist/core/plugin-bridge-server.js +1 -1
- package/dist/local-plugin-only.js +1 -1
- package/dist/local.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,15 @@ Bu dosya [Keep a Changelog](https://keepachangelog.com/tr/1.1.0/) bicimine uygun
|
|
|
12
12
|
|
|
13
13
|
Bu changelog'a ekleme oncesi surumlerin tam ayrintilari icin `git log` kullanilabilir.
|
|
14
14
|
|
|
15
|
+
## [1.5.2] - 2026-04-02
|
|
16
|
+
|
|
17
|
+
### Test altyapisi
|
|
18
|
+
|
|
19
|
+
- **36 test:** response-guard.ts (18 test) + figma-url.ts (16 test) + basic (2 test)
|
|
20
|
+
- **CI'a test adimi eklendi:** `npm test` her push/PR'da otomatik calisir
|
|
21
|
+
- **Coverage config:** Plugin-only modula odakli; tam mod dosyalari haric tutuldu
|
|
22
|
+
- **Test dosyalari:** `tests/core/response-guard.test.ts`, `tests/core/figma-url.test.ts`
|
|
23
|
+
|
|
15
24
|
## [1.5.1] - 2026-04-02
|
|
16
25
|
|
|
17
26
|
### TypeScript tip guvenligi
|
package/README.md
CHANGED
|
@@ -91,7 +91,7 @@ Varsayılan NPM `main` ve `figma-mcp-bridge` komutu **tam mod**dur; plugin ile y
|
|
|
91
91
|
|
|
92
92
|
| Ne | Nerede |
|
|
93
93
|
| --- | --- |
|
|
94
|
-
| **Sürüm numarası** | [`package.json`](package.json) içindeki `version` (ör. **1.5.
|
|
94
|
+
| **Sürüm numarası** | [`package.json`](package.json) içindeki `version` (ör. **1.5.2**) |
|
|
95
95
|
| **Değişiklik özeti** | [CHANGELOG.md](CHANGELOG.md) |
|
|
96
96
|
| **Yayın bildirimi** | GitHub’da [Releases](https://github.com/atezer/FMCP/releases) — *Watch* → *Custom* → *Releases* ile e-posta bildirimi |
|
|
97
97
|
| **npm paketi** | [@atezer/figma-mcp-bridge](https://www.npmjs.com/package/@atezer/figma-mcp-bridge) — sürüm geçmişi npm sayfasında |
|
|
@@ -247,7 +247,7 @@ export class PluginBridgeServer {
|
|
|
247
247
|
logger.info({ clientId, fileKey: incomingFileKey, fileName: incomingFileName }, "Plugin bridge: client registered (fileKey=%s, fileName=%s)", incomingFileKey, incomingFileName);
|
|
248
248
|
ws.send(JSON.stringify({
|
|
249
249
|
type: "welcome",
|
|
250
|
-
bridgeVersion: "1.5.
|
|
250
|
+
bridgeVersion: "1.5.2",
|
|
251
251
|
port: this.port,
|
|
252
252
|
clientId,
|
|
253
253
|
multiClient: true,
|
|
@@ -89,7 +89,7 @@ export async function main() {
|
|
|
89
89
|
bridge.start();
|
|
90
90
|
const server = new McpServer({
|
|
91
91
|
name: "F-MCP ATezer Bridge (Plugin-only)",
|
|
92
|
-
version: "1.5.
|
|
92
|
+
version: "1.5.2",
|
|
93
93
|
});
|
|
94
94
|
// ---- figma_list_connected_files (multi-client discovery) ----
|
|
95
95
|
server.registerTool("figma_list_connected_files", {
|
package/dist/local.js
CHANGED
package/package.json
CHANGED