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
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,6 @@ As of 2025-08-29, changes are grouped as follows
99
99
-**global_config**: New setting `follow_redirects` that controls whether or not to follow redirects. Defaults to `False`.
100
100
-**global_config**: New setting `file_download_chunk_size` that allows you to override the chunk size for streaming file downloads. Defaults to `None` (auto).
101
101
-**global_config**: New setting `file_upload_chunk_size` that allows you to override the chunk size for streaming file uploads.
102
-
-**global_config**: New setting `event_loop`, allowing you to override the default event loop used by the SDK.
103
102
-**global_config**: `proxies` have been replaced by `proxy` and follow httpx directly. See: [Proxies - HTTPX](https://www.python-httpx.org/advanced/proxies/)
104
103
-**global_config**: `max_retry_backoff` default has been increased from 30 sec to 60 sec.
105
104
-**global_config**: `max_connection_pool_size` default has been reduced from 50 to 20.
Copy file name to clipboardExpand all lines: MIGRATION_GUIDE.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,13 +63,12 @@ Changes are grouped as follows:
63
63
- For `class Transformation`, which used to have an async `run` method, this is now named `run_async` to unify the overall interface. The same applies to the `cancel` and `jobs` methods for the same class, and `update` and `wait` on `TransformationJob`.
64
64
-**ClientConfig**:
65
65
-`max_workers` has functionally been removed (just throws a warning). Concurrency is now controlled via `global_config.concurrency_settings`.
66
-
See the [Settings documentation](https://cognite-sdk-python.readthedocs-hosted.com/en/v8/settings.html#concurrency-settings) for details.
66
+
See the [Settings documentation](https://cognite-sdk-python.readthedocs-hosted.com/en/latest/settings.html#concurrency-settings) for details.
67
67
-`timeout`: default has been increased from 30 sec to 60 sec
68
68
-**global_config**:
69
69
- New setting `follow_redirects` that controls whether or not to follow redirects. Defaults to `False`.
70
70
- New setting `file_download_chunk_size` that allows you to override the chunk size for streaming file downloads. Defaults to `None` (auto).
71
71
- New setting `file_upload_chunk_size` that allows you to override the chunk size for streaming file uploads.
72
-
- New setting `event_loop`, allowing you to override the default event loop used by the SDK
73
72
-`proxies` have been replaced by `proxy` and follow httpx directly. See: [Proxies - HTTPX](https://www.python-httpx.org/advanced/proxies/)
74
73
-`max_retry_backoff`: default has been increased from 30 sec to 60 sec
75
74
-`max_connection_pool_size`: default has been reduced from 50 to 20
0 commit comments