Skip to content

Commit f3b6011

Browse files
release: 1.10.0 (#165)
* feat: Cast replay page start/end times as integer * release: 1.10.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent dfaea80 commit f3b6011

6 files changed

Lines changed: 15 additions & 7 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.9.0"
2+
".": "1.10.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 23
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-2118fd938d408dda6ed82d06c48b0785fad91fd54b5397acc3421a49a386c791.yml
3-
openapi_spec_hash: 8e48a39a55a11b128028b47747aea775
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-466614a040e7f31307530bd6ba443e714b6303eaa141904e7d32e6641d5ec55f.yml
3+
openapi_spec_hash: 2d06680e7c17847e4fbcac35124d2456
44
config_hash: 40fbac80e24faaa0dc19e93368bcd821

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.10.0 (2026-05-13)
4+
5+
Full Changelog: [v1.9.0...v1.10.0](https://github.com/browserbase/sdk-python/compare/v1.9.0...v1.10.0)
6+
7+
### Features
8+
9+
* Cast replay page start/end times as integer ([ef3642a](https://github.com/browserbase/sdk-python/commit/ef3642a11680a1cda0de0ad46f15b23ef7de99d3))
10+
311
## 1.9.0 (2026-05-13)
412

513
Full Changelog: [v1.8.0...v1.9.0](https://github.com/browserbase/sdk-python/compare/v1.8.0...v1.9.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "browserbase"
3-
version = "1.9.0"
3+
version = "1.10.0"
44
description = "The official Python library for the Browserbase API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/browserbase/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "browserbase"
4-
__version__ = "1.9.0" # x-release-please-version
4+
__version__ = "1.10.0" # x-release-please-version

src/browserbase/types/sessions/replay_retrieve_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111

1212
class Page(BaseModel):
13-
end_time_ms: float = FieldInfo(alias="endTimeMs")
13+
end_time_ms: int = FieldInfo(alias="endTimeMs")
1414

1515
page_id: str = FieldInfo(alias="pageId")
1616

17-
start_time_ms: float = FieldInfo(alias="startTimeMs")
17+
start_time_ms: int = FieldInfo(alias="startTimeMs")
1818

1919
url: str
2020

0 commit comments

Comments
 (0)