@atezer/figma-mcp-bridge 1.9.1 → 1.9.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 CHANGED
@@ -12,6 +12,27 @@ Bu dosya [Keep a Changelog](https://keepachangelog.com/tr/1.1.0/) biçimine uygu
12
12
 
13
13
  Bu changelog'a ekleme öncesi sürümlerin tam ayrıntıları için `git log` kullanılabilir.
14
14
 
15
+ ## [1.9.2] - 2026-04-17
16
+
17
+ ### Plugin Version Sync + Diagnostic Startup Log (v1.9.1 Tamamlayıcı Hotfix)
18
+
19
+ v1.9.1 release'inde plugin tarafındaki `FMCP_PLUGIN_VERSION` string'i (`ui.html` + `code.js`) `'1.8.2'`'de kalmıştı — server-side kod v1.9.1 olarak yayınlanmış olmasına rağmen. Bu hotfix plugin version'unu senkronize eder ve plugin yüklendiğinde belirgin bir startup log ekler.
20
+
21
+ **Değişiklikler:**
22
+
23
+ - `f-mcp-plugin/ui.html`: `FMCP_PLUGIN_VERSION = '1.8.2'` → `'1.9.2'`
24
+ - `f-mcp-plugin/code.js`: aynı
25
+ - `f-mcp-plugin/ui.html`: Plugin yüklendiğinde `console.log('[F-MCP v1.9.2] Plugin loaded — server-side sibling discovery active')` startup log'u eklendi
26
+
27
+ **Neden önemli:**
28
+
29
+ v1.9.1'de plugin tarafı kod düzeltildi (welcome handler'a `activeBridges` branch eklendi, `scanOtherPorts` artık sadece fallback olarak çalışıyor) ama Figma plugin iframe'i bazen eski cache'ini tutuyor. Bu hotfix'teki startup log sayesinde:
30
+
31
+ - Plugin'i açıp DevTools → Console'da `[F-MCP v1.9.2]` log'u görüyorsan → **yeni kod yüklendi, blind scan devre dışı**
32
+ - Log göremiyorsan → eski cache hâlâ aktif, `docs/TROUBLESHOOTING.md`'deki plugin remove + re-add talimatını uygula
33
+
34
+ **Regresyon:** Sıfır. Sadece version string güncellemesi ve tek satır console.log — fonksiyonel davranış aynen kalır.
35
+
15
36
  ## [1.9.1] - 2026-04-17
16
37
 
17
38
  ### Plugin Multi-Bridge Discovery — Server-Side (Console Errors Tamamen Giderildi)
@@ -1,3 +1,3 @@
1
1
  /** F-MCP version — keep in sync with package.json during version bumps. */
2
- export declare const FMCP_VERSION = "1.9.1";
2
+ export declare const FMCP_VERSION = "1.9.2";
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1,3 +1,3 @@
1
1
  /** F-MCP version — keep in sync with package.json during version bumps. */
2
- export const FMCP_VERSION = "1.9.1";
2
+ export const FMCP_VERSION = "1.9.2";
3
3
  //# sourceMappingURL=version.js.map
@@ -6,7 +6,7 @@
6
6
 
7
7
  // v1.8.0+: Plugin version reported in WebSocket "ready" handshake.
8
8
  // Keep in sync with package.json and src/core/version.ts.
9
- var FMCP_PLUGIN_VERSION = '1.8.2';
9
+ var FMCP_PLUGIN_VERSION = '1.9.2';
10
10
 
11
11
  // Console log buffer for figma_get_console_logs (no CDP)
12
12
  var __consoleLogBuffer = [];
@@ -424,7 +424,12 @@
424
424
  window.__figmaFileName = null;
425
425
  // v1.8.0+: Plugin version reported in WebSocket "ready" handshake.
426
426
  // Keep in sync with package.json, src/core/version.ts, f-mcp-plugin/code.js.
427
- var FMCP_PLUGIN_VERSION = '1.8.2';
427
+ var FMCP_PLUGIN_VERSION = '1.9.2';
428
+
429
+ // v1.9.2+ Startup log — Figma plugin iframe'de yeni kod yüklendiğini doğrulamak için.
430
+ // Console'da bu log görünüyorsa plugin güncel. Görünmüyorsa iframe eski kopyayı tutuyor
431
+ // (plugin remove + re-add gerekli). Bkz. docs/TROUBLESHOOTING.md.
432
+ console.log('[F-MCP v' + FMCP_PLUGIN_VERSION + '] Plugin loaded — server-side sibling discovery active');
428
433
 
429
434
  let requestIdCounter = 0;
430
435
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atezer/figma-mcp-bridge",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "F-MCP ATezer: MCP server and Figma plugin bridge for Claude/Cursor. No REST token required.",
5
5
  "type": "module",
6
6
  "main": "dist/local-plugin-only.js",