@rozenite/network-activity-plugin 1.10.0 → 1.11.0
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/devtools/App.html +2 -2
- package/dist/devtools/assets/{App-DsimzJvx.js → App-CEESZAW_.js} +985 -259
- package/dist/devtools/assets/{App-CUXU0mup.css → App-xppYUJvX.css} +94 -0
- package/dist/rozenite.json +1 -1
- package/package.json +6 -6
- package/src/ui/components/FilterBar.tsx +13 -45
- package/src/ui/components/NetworkTimeline.tsx +422 -0
- package/src/ui/components/RequestList.tsx +6 -185
- package/src/ui/components/Toolbar.tsx +13 -1
- package/src/ui/hooks/useNetworkActivitySessionExport.ts +39 -0
- package/src/ui/state/__tests__/store.test.ts +77 -0
- package/src/ui/state/derived.ts +2 -0
- package/src/ui/state/filter.ts +49 -0
- package/src/ui/state/hooks.ts +2 -2
- package/src/ui/state/model.ts +1 -0
- package/src/ui/state/store.ts +24 -2
- package/src/ui/utils/__tests__/requestFilters.test.ts +32 -0
- package/src/ui/utils/__tests__/sessionExport.test.ts +174 -0
- package/src/ui/utils/__tests__/timelineModel.test.ts +170 -0
- package/src/ui/utils/download.ts +7 -0
- package/src/ui/utils/requestFilters.ts +183 -0
- package/src/ui/utils/sessionExport.ts +185 -0
- package/src/ui/utils/timelineModel.ts +352 -0
- package/src/ui/views/InspectorView.tsx +40 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @rozenite/network-activity-plugin
|
|
2
2
|
|
|
3
|
+
## 1.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#270](https://github.com/callstackincubator/rozenite/pull/270) [`5dea81e`](https://github.com/callstackincubator/rozenite/commit/5dea81e4139aae51ef01b4db0aacdc66c8fb039c) Thanks [@draggie](https://github.com/draggie)! - Add a timeline view to Network Activity that shows requests as a waterfall. Drag a range on the timeline to filter the request list.
|
|
8
|
+
|
|
9
|
+
- [#272](https://github.com/callstackincubator/rozenite/pull/272) [`32d4ea3`](https://github.com/callstackincubator/rozenite/commit/32d4ea34b12b2c1adcc7d24698086bd492825935) Thanks [@draggie](https://github.com/draggie)! - Add a toolbar export button that downloads the current network activity session as a JSON file.
|
|
10
|
+
|
|
11
|
+
The export includes HTTP requests, WebSocket connections, SSE streams, and realtime messages captured during the session, along with a summary (entry counts by type) and metadata (`schemaVersion`, `exportedAt`).
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies []:
|
|
16
|
+
- @rozenite/agent-bridge@1.11.0
|
|
17
|
+
- @rozenite/agent-shared@1.11.0
|
|
18
|
+
- @rozenite/plugin-bridge@1.11.0
|
|
19
|
+
|
|
3
20
|
## 1.10.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/dist/devtools/App.html
CHANGED
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
<script>
|
|
23
23
|
var __ROZENITE_PANEL__ = true;
|
|
24
24
|
</script>
|
|
25
|
-
<script type="module" crossorigin src="../devtools/assets/App-
|
|
26
|
-
<link rel="stylesheet" crossorigin href="../devtools/assets/App-
|
|
25
|
+
<script type="module" crossorigin src="../devtools/assets/App-CEESZAW_.js"></script>
|
|
26
|
+
<link rel="stylesheet" crossorigin href="../devtools/assets/App-xppYUJvX.css">
|
|
27
27
|
</head>
|
|
28
28
|
<body>
|
|
29
29
|
<div id="root"></div>
|