Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a7bdc57
chore: make the `Omit` type public (#78)
stainless-app[bot] Dec 4, 2024
e35a0d8
chore(internal): bump pydantic dependency (#81)
stainless-app[bot] Dec 10, 2024
cc67c77
docs(readme): fix http client proxies example (#82)
stainless-app[bot] Dec 10, 2024
894b4c4
chore(internal): bump pyright (#83)
stainless-app[bot] Dec 18, 2024
64448c6
chore(internal): add support for TypeAliasType (#85)
stainless-app[bot] Dec 13, 2024
ab76578
chore(internal): codegen related update (#86)
stainless-app[bot] Dec 14, 2024
f7f189e
chore(internal): codegen related update (#87)
stainless-app[bot] Dec 14, 2024
85f1492
chore(internal): codegen related update (#88)
stainless-app[bot] Dec 14, 2024
a82ae7d
chore(internal): remove some duplicated imports (#89)
stainless-app[bot] Dec 14, 2024
dc6e187
chore(internal): updated imports (#90)
stainless-app[bot] Dec 14, 2024
950c8af
docs(readme): example snippet for client context manager (#91)
stainless-app[bot] Dec 17, 2024
51d9f42
chore(internal): fix some typos (#92)
stainless-app[bot] Dec 18, 2024
57f0977
chore(internal): codegen related update (#93)
stainless-app[bot] Jan 2, 2025
de5856d
chore: add missing isclass check (#94)
stainless-app[bot] Jan 7, 2025
d592266
chore(internal): bump httpx dependency (#95)
stainless-app[bot] Jan 10, 2025
01d5bd5
fix(client): only call .close() when needed (#97)
stainless-app[bot] Jan 8, 2025
d4f4bae
docs: fix typos (#98)
stainless-app[bot] Jan 9, 2025
f817bcb
chore(internal): codegen related update (#99)
stainless-app[bot] Jan 9, 2025
b617b85
fix: correctly handle deserialising `cls` fields (#100)
stainless-app[bot] Jan 10, 2025
5be14e9
feat(api): api update (#101)
stainless-app[bot] Jan 15, 2025
f648bbb
chore(internal): codegen related update (#102)
stainless-app[bot] Jan 17, 2025
c13b2f9
feat(api): api update (#104)
stainless-app[bot] Jan 17, 2025
fc3b82f
feat(api): api update (#105)
stainless-app[bot] Jan 21, 2025
3fc9cde
chore(internal): codegen related update (#106)
stainless-app[bot] Jan 22, 2025
c97e138
chore(internal): codegen related update (#107)
stainless-app[bot] Jan 22, 2025
faca7e9
feat(api): api update (#109)
stainless-app[bot] Jan 23, 2025
195c595
chore(internal): minor formatting changes (#110)
stainless-app[bot] Jan 24, 2025
42ae774
feat(api): api update (#111)
stainless-app[bot] Jan 28, 2025
90dd0ae
release: 1.1.0
stainless-app[bot] Jan 28, 2025
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
Prev Previous commit
Next Next commit
chore(internal): bump pydantic dependency (#81)
  • Loading branch information
stainless-app[bot] committed Dec 10, 2024
commit e35a0d85ef0e45aed1a5f58757427bf7c16a76f5
4 changes: 2 additions & 2 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ playwright==1.48.0
# via pytest-playwright
pluggy==1.5.0
# via pytest
pydantic==2.9.2
pydantic==2.10.3
# via browserbase
pydantic-core==2.23.4
pydantic-core==2.27.1
# via pydantic
pyee==12.0.0
# via playwright
Expand Down
4 changes: 2 additions & 2 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ httpx==0.25.2
idna==3.4
# via anyio
# via httpx
pydantic==2.9.2
pydantic==2.10.3
# via browserbase
pydantic-core==2.23.4
pydantic-core==2.27.1
# via pydantic
sniffio==1.3.0
# via anyio
Expand Down
6 changes: 2 additions & 4 deletions src/browserbase/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,8 @@ def get(self, __key: str) -> str | None: ...
StrBytesIntFloat = Union[str, bytes, int, float]

# Note: copied from Pydantic
# https://github.com/pydantic/pydantic/blob/32ea570bf96e84234d2992e1ddf40ab8a565925a/pydantic/main.py#L49
IncEx: TypeAlias = Union[
Set[int], Set[str], Mapping[int, Union["IncEx", Literal[True]]], Mapping[str, Union["IncEx", Literal[True]]]
]
# https://github.com/pydantic/pydantic/blob/6f31f8f68ef011f84357330186f603ff295312fd/pydantic/main.py#L79
IncEx: TypeAlias = Union[Set[int], Set[str], Mapping[int, Union["IncEx", bool]], Mapping[str, Union["IncEx", bool]]]

PostParser = Callable[[Any], Any]

Expand Down