@bdayadev/flutter-ultra-mcp 1.10.8 → 1.10.9

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.
@@ -10,7 +10,7 @@
10
10
  {
11
11
  "name": "flutter",
12
12
  "description": "Durable cross-platform Flutter automation via 8 specialized MCP servers, in-app mixin binding, and an optional DevTools panel. Replaces marionette_mcp and the official dart mcp-server for Claude Code.",
13
- "version": "1.10.8",
13
+ "version": "1.10.9",
14
14
  "author": {
15
15
  "name": "Bdaya-Dev",
16
16
  "url": "https://github.com/Bdaya-Dev"
@@ -23,5 +23,5 @@
23
23
  "tags": ["flutter", "dart", "mcp", "testing", "automation", "patrol", "cross-platform"]
24
24
  }
25
25
  ],
26
- "version": "1.10.8"
26
+ "version": "1.10.9"
27
27
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
3
3
  "name": "flutter",
4
- "version": "1.10.8",
4
+ "version": "1.10.9",
5
5
  "description": "Durable cross-platform Flutter automation via 8 specialized MCP servers, in-app mixin binding, and an optional DevTools panel. Replaces marionette_mcp and the official dart mcp-server for Claude Code.",
6
6
  "author": {
7
7
  "name": "Bdaya-Dev",
@@ -4,7 +4,7 @@ description: >-
4
4
  extensions (gesture, screenshot, inspector, screencast, log collection)
5
5
  for the flutter-ultra-mcp Claude Code plugin. Composable with Sentry and
6
6
  other WidgetsFlutterBinding subclasses via the mixin form.
7
- version: 1.10.8
7
+ version: 1.10.9
8
8
  homepage: https://github.com/Bdaya-Dev/flutter-ultra-mcp
9
9
  repository: https://github.com/Bdaya-Dev/flutter-ultra-mcp
10
10
  issue_tracker: https://github.com/Bdaya-Dev/flutter-ultra-mcp/issues
@@ -2,7 +2,7 @@ name: ultra_flutter_devtools
2
2
  description: >-
3
3
  Flutter DevTools extension showing live MCP activity for the flutter-ultra-mcp
4
4
  Claude Code plugin (sessions, recent tool calls, errors, screenshot grid).
5
- version: 1.10.8
5
+ version: 1.10.9
6
6
  homepage: https://github.com/Bdaya-Dev/flutter-ultra-mcp
7
7
  repository: https://github.com/Bdaya-Dev/flutter-ultra-mcp
8
8
  issue_tracker: https://github.com/Bdaya-Dev/flutter-ultra-mcp/issues
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bdayadev/flutter-ultra-mcp",
3
- "version": "1.10.8",
3
+ "version": "1.10.9",
4
4
  "description": "Flutter Ultra MCP plugin monorepo — 8 MCP servers + ultra_flutter Dart packages + skills for Claude Code.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/Bdaya-Dev/flutter-ultra-mcp",
@@ -156,6 +156,34 @@ User: "Set up flutter-ultra on my app."
156
156
  -> "Setup complete. 2 files changed. Smoke screenshot saved."
157
157
  ```
158
158
 
159
+ ## Known issues
160
+
161
+ ### Sentry zone mismatch warning on web
162
+
163
+ When using the composed binding pattern with Sentry (`SentryWidgetsBindingMixin` + `UltraFlutterBinding`), Flutter may emit a "Zone mismatch" assertion warning on web. This happens because Sentry wraps `appRunner` in `runZonedGuarded`, and the binding is created in a different zone than where `runApp` executes.
164
+
165
+ **This warning is non-fatal** — the app works correctly. To minimize it, create the binding inside Sentry's zone guard:
166
+
167
+ ```dart
168
+ Future<void> main() async {
169
+ await SentryFlutter.init(
170
+ (options) { options.dsn = '...'; },
171
+ appRunner: () {
172
+ if (kDebugMode) {
173
+ AppBinding();
174
+ } else {
175
+ WidgetsFlutterBinding.ensureInitialized();
176
+ }
177
+ runApp(const MyApp());
178
+ },
179
+ );
180
+ }
181
+ ```
182
+
183
+ ### Inspector extensions unavailable on web (DWDS)
184
+
185
+ `ext.flutter.inspector.screenshot` and `ext.flutter.inspector.getRootWidgetSummaryTree` fail on web targets with `(-32000) Server error`. This is a known Flutter DWDS limitation ([flutter/flutter#97898](https://github.com/flutter/flutter/issues/97898)). The runtime server automatically falls back to `ext.flutter.ultra.*` extensions when the inspector fails, and then to CDP `Page.captureScreenshot` for screenshots on web.
186
+
159
187
  ## See also
160
188
 
161
189
  - `flutter-tour` — visual screenshot tour after setup