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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,19 @@
1
1
# Changelog
2
2
3
+
## 1.0.4 (2024-11-29)
4
+
5
+
Full Changelog: [v1.0.3...v1.0.4](https://github.com/browserbase/sdk-python/compare/v1.0.3...v1.0.4)
6
+
7
+
### Bug Fixes
8
+
9
+
***client:** compat with new httpx 0.28.0 release ([#71](https://github.com/browserbase/sdk-python/issues/71)) ([7b87947](https://github.com/browserbase/sdk-python/commit/7b87947d0cdf555c73a1527b3e396cd40175d0b4))
10
+
11
+
12
+
### Chores
13
+
14
+
***internal:** codegen related update ([#68](https://github.com/browserbase/sdk-python/issues/68)) ([3e4372e](https://github.com/browserbase/sdk-python/commit/3e4372ed8790e32850e1196c402e0023cd8a0f9d))
15
+
***internal:** exclude mypy from running on tests ([#70](https://github.com/browserbase/sdk-python/issues/70)) ([edd3628](https://github.com/browserbase/sdk-python/commit/edd3628710ed8f863bce5df336385dd6d380041e))
16
+
3
17
## 1.0.3 (2024-11-22)
4
18
5
19
Full Changelog: [v1.0.2...v1.0.3](https://github.com/browserbase/sdk-python/compare/v1.0.2...v1.0.3)
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,12 +192,14 @@ Note that requests that time out are [retried twice by default](#retries).
192
192
193
193
We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
194
194
195
-
You can enable logging by setting the environment variable `BROWSERBASE_LOG` to `debug`.
195
+
You can enable logging by setting the environment variable `BROWSERBASE_LOG` to `info`.
196
196
197
197
```shell
198
-
$ export BROWSERBASE_LOG=debug
198
+
$ export BROWSERBASE_LOG=info
199
199
```
200
200
201
+
Or to `debug` for more verbose logging.
202
+
201
203
### How to tell whether `None` means `null` or missing
202
204
203
205
In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`:
0 commit comments