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
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,17 @@
3
3
All notable changes to this project will be documented in this file.
4
4
5
5
<!-- git-cliff-unreleased-start -->
6
+
## 3.4.2 - **not yet released**
6
7
7
-
## 4.0.0 - **not yet released**
8
+
### 🚜 Refactor
9
+
10
+
-[**breaking**] Remove deprecated APIs ([#918](https://github.com/apify/apify-sdk-python/pull/918)) ([3e5728d](https://github.com/apify/apify-sdk-python/commit/3e5728d94cb8fd879d5a76e33a03d55792d835d5)) by [@vdusek](https://github.com/vdusek), closes [#635](https://github.com/apify/apify-sdk-python/issues/635)
8
11
9
12
### ⚙️ Miscellaneous Tasks
10
13
11
14
-[**breaking**] Drop Python 3.10 support ([#908](https://github.com/apify/apify-sdk-python/pull/908)) ([a67788e](https://github.com/apify/apify-sdk-python/commit/a67788e4d7845445a3e80a30af70580d2ab84f32)) by [@vdusek](https://github.com/vdusek), closes [#757](https://github.com/apify/apify-sdk-python/issues/757)
@@ -589,4 +593,4 @@ All notable changes to this project will be documented in this file.
589
593
- Key error for storage name ([#28](https://github.com/apify/apify-sdk-python/pull/28)) ([83b30a9](https://github.com/apify/apify-sdk-python/commit/83b30a90df4d3b173302f1c6006b346091fced60)) by [@drobnikj](https://github.com/drobnikj)
Methods and arguments that had been deprecated in v3 are removed in v4.
37
+
38
+
### api_public_base_url argument of storage clients
39
+
40
+
The deprecated `api_public_base_url` argument has been removed from `ApifyDatasetClient` and `ApifyKeyValueStoreClient`. It had no effect already in v3, passing it emitted only a `DeprecationWarning`. Drop it from your call sites. The public base URL is taken from `Configuration.api_public_base_url`, which is unchanged.
41
+
42
+
```python
43
+
# Before (v3)
44
+
client = ApifyDatasetClient(
45
+
api_client=api_client,
46
+
api_public_base_url='https://api.apify.com',
47
+
lock=lock,
48
+
)
49
+
50
+
# After (v4)
51
+
client = ApifyDatasetClient(
52
+
api_client=api_client,
53
+
lock=lock,
54
+
)
55
+
```
56
+
57
+
### Actor.start and Actor.call: RemainingTime
58
+
59
+
The deprecated `RemainingTime` value of the `timeout` argument has been removed from `Actor.start()` and `Actor.call()`. Use `inherit` instead, the signature and behavior are identical.
60
+
61
+
```python
62
+
# Before (v3)
63
+
run =await Actor.call('user/actor', timeout='RemainingTime')
64
+
65
+
# After (v4)
66
+
run =await Actor.call('user/actor', timeout='inherit')
67
+
```
68
+
69
+
### Deprecated Configuration fields
70
+
71
+
The deprecated `latest_sdk_version`, `log_format`, and `standby_port` fields have been removed from `Configuration`:
72
+
- In place of `standby_port`, use `web_server_port`.
73
+
-`latest_sdk_version` and `log_format` don't have replacement. SDK version checking isn't supported for the Python SDK and the log format should be adjusted in code instead.
0 commit comments