xray_inspector 0.0.10
xray_inspector: ^0.0.10 copied to clipboard
Pure Dart inspector package — network, log, and key-value inspectors plus the HTTP server for remote inspection. Works with Flutter and Dart backends (Serverpod, Relic, Dart Frog, Shelf).
For license information, see LICENSE.
0.0.10 #
- Fixed HTTP override response body always being empty.
- Fixed inspector's own internal calls appearing in the "Network (Http)" tab.
- Setting
enableHttpOverride: trueon more than oneXRayNetworkInspectornow throws aStateErrorat startup.
0.0.9 #
- Added opt-in global
dart:ioHttpClientoverride viaenableHttpOverrideflag onXRayNetworkInspector. When enabled, all HTTP traffic made throughdart:io(includingpackage:http, Cronet, and any other client that delegates toHttpClient) is captured automatically. Silently ignored on web. - Exported
XRayHttpOverridesandXRayNetworkInspectorHttpClientfor advanced manual wiring.
0.0.8 #
- Added
repositorylink to pubspec so pub.dev surfaces the GitHub source repository alongside the existing homepage and issue tracker links.
0.0.7 #
- Fixed CORS preflight (
OPTIONS) responses being returned as405 Method Not Allowedwithout CORS headers for theDELETEandPUTendpoints on/api/network/:id/calls,/api/log/:id/entries, and/api/key-value/sources/:sourceId/entries/:key. The CORS middleware is now applied as an outer pipeline wrapper so it also runs for routing misses.
0.0.6 #
- Matching versions
0.0.5 #
- Marked as pure Dart package to support backend usage (Serverpod, Relic, Dart Frog, Shelf).
- Replaced Flutter's
ValueNotifierwith a customWatchableclass to remove the Flutter dependency. - Fixed typos in source files.
- Fixed incorrect import (
network_interceptor_listener→network_inspector_listener).
0.0.4 #
- Improved README.md.
0.0.3 #
- Added support for partnership licenses.
0.0.2 #
- Bug fixes and code cleanup.
- Removed old impaktfull network inspector references.
- Fixed CORS issues.
- Fixed compile issues and import errors.
0.0.1 #
Initial release:
- Core Flutter inspector package with network, log, and key-value inspectors
- Embeds an HTTP/WebSocket server so the app can be inspected remotely
- Works with the official xRay macOS app and the xray_inspector_ui package