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
* chore: rebuild project due to codegen change (#10)
* feat(api): update via SDK Studio (#12)
* chore(internal): fix compat model_dump method when warnings are passed (#13)
* docs: add info log level to readme (#14)
* chore: remove now unused `cached-property` dep (#15)
* feat(api): update via SDK Studio (#16)
* release: 0.1.0-alpha.4
---------
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,26 @@
1
1
# Changelog
2
2
3
+
## 0.1.0-alpha.4 (2024-11-27)
4
+
5
+
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/prelude-so/python-sdk/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
6
+
7
+
### Features
8
+
9
+
***api:** update via SDK Studio ([#12](https://github.com/prelude-so/python-sdk/issues/12)) ([380ea22](https://github.com/prelude-so/python-sdk/commit/380ea22a509deeb05b9b27af7b21aae5a70b4380))
10
+
***api:** update via SDK Studio ([#16](https://github.com/prelude-so/python-sdk/issues/16)) ([a885d0a](https://github.com/prelude-so/python-sdk/commit/a885d0a4aaa978adf582c8743011765dfc65614f))
11
+
12
+
13
+
### Chores
14
+
15
+
***internal:** fix compat model_dump method when warnings are passed ([#13](https://github.com/prelude-so/python-sdk/issues/13)) ([7f9b088](https://github.com/prelude-so/python-sdk/commit/7f9b08842698d0eb6911464089583d56db63e0cf))
16
+
* rebuild project due to codegen change ([#10](https://github.com/prelude-so/python-sdk/issues/10)) ([afd8c51](https://github.com/prelude-so/python-sdk/commit/afd8c5127bce604ba78290aaf62659a3c02471a5))
17
+
* remove now unused `cached-property` dep ([#15](https://github.com/prelude-so/python-sdk/issues/15)) ([292303e](https://github.com/prelude-so/python-sdk/commit/292303e362071f1ba1d7ce2e8311653e4c4ec3f6))
18
+
19
+
20
+
### Documentation
21
+
22
+
* add info log level to readme ([#14](https://github.com/prelude-so/python-sdk/issues/14)) ([ee4b1b2](https://github.com/prelude-so/python-sdk/commit/ee4b1b2cbfbec80d0ec43cb8e7c54cd0acaad7b9))
23
+
3
24
## 0.1.0-alpha.3 (2024-11-14)
4
25
5
26
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/prelude-so/python-sdk/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
Copy file name to clipboardExpand all lines: README.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -193,12 +193,14 @@ Note that requests that time out are [retried twice by default](#retries).
193
193
194
194
We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
195
195
196
-
You can enable logging by setting the environment variable `PRELUDE_LOG` to `debug`.
196
+
You can enable logging by setting the environment variable `PRELUDE_LOG` to `info`.
197
197
198
198
```shell
199
-
$ export PRELUDE_LOG=debug
199
+
$ export PRELUDE_LOG=info
200
200
```
201
201
202
+
Or to `debug` for more verbose logging.
203
+
202
204
### How to tell whether `None` means `null` or missing
203
205
204
206
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