prepare v0.23.2 (#1093)
This commit is contained in:
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
"agent-browser": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
### New Features
|
||||||
|
|
||||||
|
- **Dashboard session creation** - Sessions can now be created directly from the dashboard UI. A new session dialog provides a unified selector grid for local engines (Chrome, Lightpanda) and cloud providers (Browserbase, Browserless, Browser Use, Kernel) with async creation, loading state, and error display (#1092)
|
||||||
|
- **Dashboard provider icons** - The session sidebar now shows the provider or engine icon for each session, making it easy to identify which backend a session is using (#1092)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Fixed **Browser Use** provider using an intermediate API call instead of connecting directly via WSS (`wss://connect.browser-use.com`), which caused connection failures (#1092)
|
||||||
|
- Fixed **Browserbase** provider not sending an explicit JSON body and `Content-Type` header, causing session creation to fail (#1092)
|
||||||
|
- Fixed **provider navigation** hanging because `wait_for_lifecycle` waited for page load events that remote providers may not emit. Navigation with `--provider` now automatically sets `waitUntil=none` (#1092)
|
||||||
|
- Fixed **remote CDP connections** timing out by increasing the CDP connect timeout from 10s to 25s for cloud providers (#1092)
|
||||||
|
- Fixed **zombie daemon processes** not being cleaned up when a provider connection fails during session creation from the dashboard (#1092)
|
||||||
@@ -626,6 +626,7 @@ The dashboard displays:
|
|||||||
- **Live viewport** -- real-time JPEG frames from the browser
|
- **Live viewport** -- real-time JPEG frames from the browser
|
||||||
- **Activity feed** -- chronological command/result stream with timing and expandable details
|
- **Activity feed** -- chronological command/result stream with timing and expandable details
|
||||||
- **Console output** -- browser console messages (log, warn, error)
|
- **Console output** -- browser console messages (log, warn, error)
|
||||||
|
- **Session creation** -- create new sessions from the UI with local engines (Chrome, Lightpanda) or cloud providers (Browserbase, Browserless, Browser Use, Kernel)
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
|
|||||||
@@ -61,6 +61,10 @@ The dashboard is a single-page web app with three areas:
|
|||||||
<td><strong>Activity feed</strong></td>
|
<td><strong>Activity feed</strong></td>
|
||||||
<td>Chronological stream of commands, results, and console messages with expandable details</td>
|
<td>Chronological stream of commands, results, and console messages with expandable details</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>Session creation</strong></td>
|
||||||
|
<td>Create new sessions from the dashboard with local engines (Chrome, Lightpanda) or cloud providers (Browserbase, Browserless, Browser Use, Kernel)</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><strong>Status bar</strong></td>
|
<td><strong>Status bar</strong></td>
|
||||||
<td>Connection status, viewport dimensions, and WebSocket endpoint</td>
|
<td>Connection status, viewport dimensions, and WebSocket endpoint</td>
|
||||||
|
|||||||
@@ -733,7 +733,7 @@ agent-browser open example.com
|
|||||||
agent-browser dashboard stop
|
agent-browser dashboard stop
|
||||||
```
|
```
|
||||||
|
|
||||||
The dashboard runs independently of browser sessions on port 4848 (configurable with `--port`). All sessions automatically stream to the dashboard.
|
The dashboard runs independently of browser sessions on port 4848 (configurable with `--port`). All sessions automatically stream to the dashboard. Sessions can also be created from the dashboard UI with local engines or cloud providers.
|
||||||
|
|
||||||
## Ready-to-Use Templates
|
## Ready-to-Use Templates
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user