Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.13.0"
".": "3.13.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 3.13.1 (2026-01-31)

Full Changelog: [v3.13.0...v3.13.1](https://github.com/browserbase/stagehand-php/compare/v3.13.0...v3.13.1)

### Bug Fixes

* used redirect count instead of retry count in base client ([d3bab46](https://github.com/browserbase/stagehand-php/commit/d3bab461f31f650a74804f0db19a088a9689bc76))

## 3.13.0 (2026-01-31)

Full Changelog: [v3.12.0...v3.13.0](https://github.com/browserbase/stagehand-php/compare/v3.12.0...v3.13.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ The REST API documentation can be found on [docs.stagehand.dev](https://docs.sta
<!-- x-release-please-start-version -->

```
composer require "browserbase/stagehand 3.13.0"
composer require "browserbase/stagehand 3.13.1"
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion src/Core/BaseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ protected function sendRequest(
throw $exn;
}

$seconds = $this->retryDelay($opts, retryCount: $redirectCount, rsp: $rsp);
$seconds = $this->retryDelay($opts, retryCount: $retryCount, rsp: $rsp);
$floor = floor($seconds);
time_nanosleep((int) $floor, nanoseconds: (int) ($seconds - $floor) * 10 ** 9);

Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
namespace Stagehand;

// x-release-please-start-version
const VERSION = '3.13.0';
const VERSION = '3.13.1';
// x-release-please-end