You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- CURSOR_SUMMARY -->
> [!NOTE]
> **Medium Risk**
> Removes previously supported (and partially backward-compatible)
persistent browser session identifiers and project limit flags, which
can break existing CLI scripts relying on `--persistent-id` or
`--max-persistent-sessions`. Core changes are localized to CLI wiring
and output formatting.
>
> **Overview**
> **EOLs persistent browser sessions in the CLI.** The `browsers`
commands drop the deprecated persistent-session path: `--persistent-id`
is removed, create no longer sends persistence params, list/get output
no longer shows “Persistent ID”, and delete now only calls `DeleteByID`
(no fallback delete-by-persistent-id).
>
> **Removes persistent-session project limits.** `projects limits` no
longer exposes `--max-persistent-sessions` and stops rendering that
limit in table output; tests are updated accordingly.
>
> <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit
c2440d4. Bugbot is set up for automated
code reviews on this repo. Configure
[here](https://www.cursor.com/dashboard/bugbot).</sup>
<!-- /CURSOR_SUMMARY -->
---------
Co-authored-by: Cursor <cursoragent@cursor.com>
browsersCreateCmd.Flags().StringP("output", "o", "", "Output format: json for raw API response")
2527
-
browsersCreateCmd.Flags().StringP("persistent-id", "p", "", "[DEPRECATED] Use --timeout and profiles instead. Unique identifier for browser session persistence")
2528
-
_=browsersCreateCmd.Flags().MarkDeprecated("persistent-id", "use --timeout (up to 72 hours) and profiles instead")
2529
2493
browsersCreateCmd.Flags().BoolP("stealth", "s", false, "Launch browser in stealth mode to avoid detection")
2530
2494
browsersCreateCmd.Flags().BoolP("headless", "H", false, "Launch browser without GUI access")
2531
2495
browsersCreateCmd.Flags().Bool("gpu", false, "Launch browser with hardware-accelerated GPU rendering")
0 commit comments