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
***client:** compat with new httpx 0.28.0 release ([#126](https://github.com/writer/writer-python/issues/126)) ([4c04e11](https://github.com/writer/writer-python/commit/4c04e11248fac6aa0cabb94ea4abcc78252077d5))
***internal:** codegen related update ([#125](https://github.com/writer/writer-python/issues/125)) ([a72d9d9](https://github.com/writer/writer-python/commit/a72d9d997ef4e0f14cfd707e143f8ca0c53c6b97))
21
+
***internal:** fix compat model_dump method when warnings are passed ([#121](https://github.com/writer/writer-python/issues/121)) ([51a4ae5](https://github.com/writer/writer-python/commit/51a4ae539ba4cdb9b15d3a60d2ba5998a0521671))
22
+
* remove now unused `cached-property` dep ([#124](https://github.com/writer/writer-python/issues/124)) ([96715e2](https://github.com/writer/writer-python/commit/96715e244454c9b5133cae97187f61f0e6ed9b02))
23
+
24
+
25
+
### Documentation
26
+
27
+
* add info log level to readme ([#123](https://github.com/writer/writer-python/issues/123)) ([126bf74](https://github.com/writer/writer-python/commit/126bf74e40f7a69d08bef5e8d881af7efc56ae1b))
28
+
3
29
## 1.4.0 (2024-11-20)
4
30
5
31
Full Changelog: [v1.3.0...v1.4.0](https://github.com/writer/writer-python/compare/v1.3.0...v1.4.0)
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
@@ -282,12 +282,14 @@ Note that requests that time out are [retried twice by default](#retries).
282
282
283
283
We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
284
284
285
-
You can enable logging by setting the environment variable `WRITER_LOG` to `debug`.
285
+
You can enable logging by setting the environment variable `WRITER_LOG` to `info`.
286
286
287
287
```shell
288
-
$ export WRITER_LOG=debug
288
+
$ export WRITER_LOG=info
289
289
```
290
290
291
+
Or to `debug` for more verbose logging.
292
+
291
293
### How to tell whether `None` means `null` or missing
292
294
293
295
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