apify 2.7.3__tar.gz → 3.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of apify might be problematic. Click here for more details.

Files changed (261) hide show
  1. {apify-2.7.3 → apify-3.0.0}/.github/workflows/build_and_deploy_docs.yaml +4 -4
  2. {apify-2.7.3 → apify-3.0.0}/.github/workflows/pre_release.yaml +9 -5
  3. {apify-2.7.3 → apify-3.0.0}/.github/workflows/release.yaml +8 -11
  4. {apify-2.7.3 → apify-3.0.0}/.github/workflows/run_code_checks.yaml +9 -5
  5. {apify-2.7.3 → apify-3.0.0}/.github/workflows/update_new_issue.yaml +1 -1
  6. apify-3.0.0/CHANGELOG.md +602 -0
  7. {apify-2.7.3 → apify-3.0.0}/CONTRIBUTING.md +1 -1
  8. {apify-2.7.3 → apify-3.0.0}/Makefile +3 -3
  9. {apify-2.7.3 → apify-3.0.0}/PKG-INFO +25 -9
  10. {apify-2.7.3 → apify-3.0.0}/README.md +16 -1
  11. {apify-2.7.3 → apify-3.0.0}/docs/01_overview/02_running_actors_locally.mdx +1 -1
  12. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/09_running_webserver.mdx +2 -2
  13. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/10_logging.mdx +30 -0
  14. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/12_pay_per_event.mdx +6 -0
  15. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_dataset_exports.py +2 -2
  16. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_rq.py +1 -4
  17. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/07_webhook_preventing.py +1 -1
  18. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/09_webserver.py +2 -2
  19. apify-3.0.0/docs/02_concepts/code/10_redirect_log.py +15 -0
  20. apify-3.0.0/docs/02_concepts/code/10_redirect_log_existing_run.py +24 -0
  21. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/conditional_actor_charge.py +3 -3
  22. apify-3.0.0/docs/03_guides/01_beautifulsoup_httpx.mdx +30 -0
  23. apify-3.0.0/docs/03_guides/02_parsel_impit.mdx +28 -0
  24. apify-3.0.0/docs/03_guides/05_crawlee.mdx +46 -0
  25. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/01_beautifulsoup_httpx.py +7 -4
  26. apify-3.0.0/docs/03_guides/code/02_parsel_impit.py +94 -0
  27. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/03_playwright.py +6 -3
  28. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/04_selenium.py +5 -3
  29. apify-3.0.0/docs/03_guides/code/05_crawlee_beautifulsoup.py +55 -0
  30. apify-3.0.0/docs/03_guides/code/05_crawlee_parsel.py +55 -0
  31. apify-3.0.0/docs/03_guides/code/05_crawlee_playwright.py +58 -0
  32. {apify-2.7.3 → apify-3.0.0}/docs/04_upgrading/upgrading_to_v2.md +2 -2
  33. apify-3.0.0/docs/04_upgrading/upgrading_to_v3.md +159 -0
  34. {apify-2.7.3 → apify-3.0.0}/pyproject.toml +34 -28
  35. {apify-2.7.3 → apify-3.0.0}/src/apify/_actor.py +194 -126
  36. {apify-2.7.3 → apify-3.0.0}/src/apify/_charging.py +34 -9
  37. {apify-2.7.3 → apify-3.0.0}/src/apify/_configuration.py +70 -6
  38. {apify-2.7.3 → apify-3.0.0}/src/apify/_crypto.py +0 -6
  39. {apify-2.7.3 → apify-3.0.0}/src/apify/_models.py +7 -7
  40. {apify-2.7.3 → apify-3.0.0}/src/apify/_proxy_configuration.py +10 -10
  41. {apify-2.7.3 → apify-3.0.0}/src/apify/_utils.py +25 -2
  42. apify-3.0.0/src/apify/events/__init__.py +5 -0
  43. apify-3.0.0/src/apify/events/_apify_event_manager.py +140 -0
  44. apify-3.0.0/src/apify/events/_types.py +102 -0
  45. {apify-2.7.3 → apify-3.0.0}/src/apify/log.py +0 -9
  46. apify-3.0.0/src/apify/request_loaders/__init__.py +18 -0
  47. apify-2.7.3/src/apify/storages/_request_list.py → apify-3.0.0/src/apify/request_loaders/_apify_request_list.py +25 -18
  48. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/_logging_config.py +1 -4
  49. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/extensions/_httpcache.py +9 -5
  50. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/requests.py +3 -3
  51. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/scheduler.py +8 -5
  52. apify-3.0.0/src/apify/storage_clients/__init__.py +12 -0
  53. apify-3.0.0/src/apify/storage_clients/_apify/__init__.py +11 -0
  54. apify-3.0.0/src/apify/storage_clients/_apify/_dataset_client.py +328 -0
  55. apify-3.0.0/src/apify/storage_clients/_apify/_key_value_store_client.py +265 -0
  56. apify-3.0.0/src/apify/storage_clients/_apify/_models.py +131 -0
  57. apify-3.0.0/src/apify/storage_clients/_apify/_request_queue_client.py +327 -0
  58. apify-3.0.0/src/apify/storage_clients/_apify/_request_queue_shared_client.py +527 -0
  59. apify-3.0.0/src/apify/storage_clients/_apify/_request_queue_single_client.py +399 -0
  60. apify-3.0.0/src/apify/storage_clients/_apify/_storage_client.py +106 -0
  61. apify-3.0.0/src/apify/storage_clients/_apify/_utils.py +194 -0
  62. apify-3.0.0/src/apify/storage_clients/_file_system/__init__.py +2 -0
  63. apify-3.0.0/src/apify/storage_clients/_file_system/_key_value_store_client.py +57 -0
  64. apify-3.0.0/src/apify/storage_clients/_file_system/_storage_client.py +41 -0
  65. apify-3.0.0/src/apify/storage_clients/_smart_apify/__init__.py +1 -0
  66. apify-3.0.0/src/apify/storage_clients/_smart_apify/_storage_client.py +117 -0
  67. apify-3.0.0/src/apify/storages/__init__.py +3 -0
  68. {apify-2.7.3 → apify-3.0.0}/tests/integration/README.md +23 -0
  69. apify-3.0.0/tests/integration/_utils.py +17 -0
  70. {apify-2.7.3 → apify-3.0.0}/tests/integration/actor_source_base/Dockerfile +5 -1
  71. {apify-2.7.3 → apify-3.0.0}/tests/integration/actor_source_base/requirements.txt +2 -0
  72. apify-3.0.0/tests/integration/actor_source_base/server.py +101 -0
  73. {apify-2.7.3 → apify-3.0.0}/tests/integration/conftest.py +28 -26
  74. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_api_helpers.py +4 -6
  75. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_create_proxy_configuration.py +4 -1
  76. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_dataset.py +87 -3
  77. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_events.py +3 -1
  78. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_key_value_store.py +101 -16
  79. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_lifecycle.py +41 -0
  80. apify-3.0.0/tests/integration/test_actor_request_queue.py +491 -0
  81. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_scrapy.py +1 -1
  82. apify-3.0.0/tests/integration/test_apify_storages.py +152 -0
  83. apify-3.0.0/tests/integration/test_crawlers_with_storages.py +113 -0
  84. apify-3.0.0/tests/integration/test_request_queue.py +1191 -0
  85. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_create_proxy_configuration.py +37 -28
  86. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_dataset.py +5 -30
  87. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_env_helpers.py +3 -27
  88. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_helpers.py +0 -5
  89. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_key_value_store.py +25 -45
  90. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_lifecycle.py +21 -19
  91. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_log.py +39 -34
  92. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_non_default_instance.py +1 -1
  93. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_actor_request_queue.py +3 -4
  94. apify-3.0.0/tests/unit/actor/test_configuration.py +243 -0
  95. {apify-2.7.3 → apify-3.0.0}/tests/unit/actor/test_request_list.py +42 -28
  96. {apify-2.7.3 → apify-3.0.0}/tests/unit/conftest.py +67 -47
  97. apify-2.7.3/tests/unit/test_platform_event_manager.py → apify-3.0.0/tests/unit/events/test_apify_event_manager.py +13 -11
  98. {apify-2.7.3 → apify-3.0.0}/tests/unit/scrapy/extensions/test_httpcache.py +1 -1
  99. apify-3.0.0/tests/unit/scrapy/pipelines/__init__.py +0 -0
  100. apify-3.0.0/tests/unit/scrapy/requests/__init__.py +0 -0
  101. {apify-2.7.3 → apify-3.0.0}/tests/unit/scrapy/requests/test_to_apify_request.py +0 -2
  102. {apify-2.7.3 → apify-3.0.0}/tests/unit/scrapy/requests/test_to_scrapy_request.py +6 -10
  103. apify-3.0.0/tests/unit/scrapy/utils/__init__.py +0 -0
  104. apify-3.0.0/tests/unit/storage_clients/__init__.py +0 -0
  105. apify-3.0.0/tests/unit/storage_clients/test_apify_request_queue_client.py +38 -0
  106. apify-3.0.0/tests/unit/storage_clients/test_file_system.py +79 -0
  107. apify-3.0.0/tests/unit/test_apify_storages.py +63 -0
  108. {apify-2.7.3 → apify-3.0.0}/tests/unit/test_crypto.py +2 -2
  109. {apify-2.7.3 → apify-3.0.0}/tests/unit/test_proxy_configuration.py +90 -85
  110. apify-3.0.0/uv.lock +2698 -0
  111. apify-3.0.0/website/docusaurus.config.js +289 -0
  112. {apify-2.7.3 → apify-3.0.0}/website/package-lock.json +1528 -1453
  113. {apify-2.7.3 → apify-3.0.0}/website/package.json +7 -6
  114. {apify-2.7.3 → apify-3.0.0}/website/sidebars.js +8 -8
  115. apify-3.0.0/website/src/components/RunnableCodeBlock.jsx +46 -0
  116. {apify-2.7.3 → apify-3.0.0}/website/src/pages/index.module.css +1 -1
  117. apify-3.0.0/website/src/theme/DocItem/Content/index.js +6 -0
  118. apify-3.0.0/website/static/.nojekyll +0 -0
  119. apify-3.0.0/website/static/img/guides/redirected_logs_example.webp +0 -0
  120. apify-2.7.3/CHANGELOG.md +0 -225
  121. apify-2.7.3/docs/02_guides/01_beautifulsoup_httpx.mdx +0 -30
  122. apify-2.7.3/docs/02_guides/02_crawlee.mdx +0 -37
  123. apify-2.7.3/docs/02_guides/code/02_crawlee_beautifulsoup.py +0 -55
  124. apify-2.7.3/docs/02_guides/code/02_crawlee_playwright.py +0 -68
  125. apify-2.7.3/src/apify/_platform_event_manager.py +0 -231
  126. apify-2.7.3/src/apify/apify_storage_client/__init__.py +0 -3
  127. apify-2.7.3/src/apify/apify_storage_client/_apify_storage_client.py +0 -72
  128. apify-2.7.3/src/apify/apify_storage_client/_dataset_client.py +0 -190
  129. apify-2.7.3/src/apify/apify_storage_client/_dataset_collection_client.py +0 -51
  130. apify-2.7.3/src/apify/apify_storage_client/_key_value_store_client.py +0 -109
  131. apify-2.7.3/src/apify/apify_storage_client/_key_value_store_collection_client.py +0 -51
  132. apify-2.7.3/src/apify/apify_storage_client/_request_queue_client.py +0 -176
  133. apify-2.7.3/src/apify/apify_storage_client/_request_queue_collection_client.py +0 -51
  134. apify-2.7.3/src/apify/storages/__init__.py +0 -5
  135. apify-2.7.3/tests/integration/_utils.py +0 -9
  136. apify-2.7.3/tests/integration/test_actor_request_queue.py +0 -88
  137. apify-2.7.3/tests/integration/test_request_queue.py +0 -113
  138. apify-2.7.3/tests/unit/actor/test_configuration.py +0 -21
  139. apify-2.7.3/uv.lock +0 -2855
  140. apify-2.7.3/website/docusaurus.config.js +0 -145
  141. apify-2.7.3/website/src/components/RunnableCodeBlock.jsx +0 -44
  142. {apify-2.7.3 → apify-3.0.0}/.editorconfig +0 -0
  143. {apify-2.7.3 → apify-3.0.0}/.github/CODEOWNERS +0 -0
  144. {apify-2.7.3 → apify-3.0.0}/.github/workflows/check_pr_title.yaml +0 -0
  145. {apify-2.7.3 → apify-3.0.0}/.gitignore +0 -0
  146. {apify-2.7.3 → apify-3.0.0}/.markdownlint.yaml +0 -0
  147. {apify-2.7.3 → apify-3.0.0}/.pre-commit-config.yaml +0 -0
  148. {apify-2.7.3 → apify-3.0.0}/LICENSE +0 -0
  149. {apify-2.7.3 → apify-3.0.0}/docs/01_overview/01_introduction.mdx +0 -0
  150. {apify-2.7.3 → apify-3.0.0}/docs/01_overview/03_actor_structure.mdx +0 -0
  151. {apify-2.7.3 → apify-3.0.0}/docs/01_overview/code/01_introduction.py +0 -0
  152. {apify-2.7.3 → apify-3.0.0}/docs/01_overview/code/actor_structure/__init__.py +0 -0
  153. {apify-2.7.3 → apify-3.0.0}/docs/01_overview/code/actor_structure/__main__.py +0 -0
  154. {apify-2.7.3 → apify-3.0.0}/docs/01_overview/code/actor_structure/main.py +0 -0
  155. {apify-2.7.3 → apify-3.0.0}/docs/01_overview/code/actor_structure/py.typed +0 -0
  156. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/01_actor_lifecycle.mdx +0 -0
  157. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/02_actor_input.mdx +0 -0
  158. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/03_storages.mdx +0 -0
  159. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/04_actor_events.mdx +0 -0
  160. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/05_proxy_management.mdx +0 -0
  161. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/06_interacting_with_other_actors.mdx +0 -0
  162. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/07_webhooks.mdx +0 -0
  163. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/08_access_apify_api.mdx +0 -0
  164. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/11_configuration.mdx +0 -0
  165. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/01_context_manager.py +0 -0
  166. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/01_init_exit.py +0 -0
  167. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/01_reboot.py +0 -0
  168. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/01_status_message.py +0 -0
  169. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/02_input.py +0 -0
  170. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_dataset_read_write.py +0 -0
  171. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_deleting_storages.py +0 -0
  172. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_kvs_iterating.py +0 -0
  173. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_kvs_public_url.py +0 -0
  174. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_kvs_read_write.py +0 -0
  175. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_opening_storages.py +0 -0
  176. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/04_actor_events.py +0 -0
  177. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_apify_proxy.py +0 -0
  178. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_apify_proxy_config.py +0 -0
  179. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_custom_proxy.py +0 -0
  180. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_custom_proxy_function.py +0 -0
  181. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_proxy_actor_input.py +0 -0
  182. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_proxy_httpx.py +0 -0
  183. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_proxy_rotation.py +0 -0
  184. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/06_interacting_call.py +0 -0
  185. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/06_interacting_call_task.py +0 -0
  186. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/06_interacting_metamorph.py +0 -0
  187. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/06_interacting_start.py +0 -0
  188. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/07_webhook.py +0 -0
  189. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/08_actor_client.py +0 -0
  190. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/08_actor_new_client.py +0 -0
  191. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/10_log_config.py +0 -0
  192. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/10_logger_usage.py +0 -0
  193. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/11_config.py +0 -0
  194. {apify-2.7.3/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/actor_charge.py +0 -0
  195. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/03_playwright.mdx +0 -0
  196. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/04_selenium.mdx +0 -0
  197. /apify-2.7.3/docs/02_guides/05_scrapy.mdx → /apify-3.0.0/docs/03_guides/06_scrapy.mdx +0 -0
  198. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/__init__.py +0 -0
  199. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/__main__.py +0 -0
  200. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/items.py +0 -0
  201. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/main.py +0 -0
  202. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/py.typed +0 -0
  203. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/settings.py +0 -0
  204. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/spiders/__init__.py +0 -0
  205. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/spiders/py.typed +0 -0
  206. {apify-2.7.3/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/spiders/title.py +0 -0
  207. {apify-2.7.3 → apify-3.0.0}/docs/pyproject.toml +0 -0
  208. {apify-2.7.3 → apify-3.0.0}/renovate.json +0 -0
  209. {apify-2.7.3 → apify-3.0.0}/src/apify/__init__.py +0 -0
  210. {apify-2.7.3 → apify-3.0.0}/src/apify/_consts.py +0 -0
  211. {apify-2.7.3/src/apify/apify_storage_client → apify-3.0.0/src/apify/events}/py.typed +0 -0
  212. {apify-2.7.3 → apify-3.0.0}/src/apify/py.typed +0 -0
  213. {apify-2.7.3/src/apify/scrapy/middlewares → apify-3.0.0/src/apify/request_loaders}/py.typed +0 -0
  214. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/__init__.py +0 -0
  215. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/_actor_runner.py +0 -0
  216. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/_async_thread.py +0 -0
  217. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/extensions/__init__.py +0 -0
  218. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/middlewares/__init__.py +0 -0
  219. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/middlewares/apify_proxy.py +0 -0
  220. {apify-2.7.3/src/apify/scrapy/pipelines → apify-3.0.0/src/apify/scrapy/middlewares}/py.typed +0 -0
  221. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/pipelines/__init__.py +0 -0
  222. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/pipelines/actor_dataset_push.py +0 -0
  223. {apify-2.7.3/src/apify/scrapy → apify-3.0.0/src/apify/scrapy/pipelines}/py.typed +0 -0
  224. {apify-2.7.3/src/apify/storages → apify-3.0.0/src/apify/scrapy}/py.typed +0 -0
  225. {apify-2.7.3 → apify-3.0.0}/src/apify/scrapy/utils.py +0 -0
  226. /apify-2.7.3/tests/integration/__init__.py → /apify-3.0.0/src/apify/storage_clients/_apify/py.typed +0 -0
  227. /apify-2.7.3/tests/integration/actor_source_base/src/__init__.py → /apify-3.0.0/src/apify/storage_clients/py.typed +0 -0
  228. /apify-2.7.3/tests/unit/__init__.py → /apify-3.0.0/src/apify/storages/py.typed +0 -0
  229. {apify-2.7.3/tests/unit/actor → apify-3.0.0/tests/integration}/__init__.py +0 -0
  230. {apify-2.7.3/tests/unit/scrapy → apify-3.0.0/tests/integration/actor_source_base/src}/__init__.py +0 -0
  231. {apify-2.7.3 → apify-3.0.0}/tests/integration/actor_source_base/src/__main__.py +0 -0
  232. {apify-2.7.3 → apify-3.0.0}/tests/integration/actor_source_base/src/main.py +0 -0
  233. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_call_timeouts.py +0 -0
  234. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_charge.py +0 -0
  235. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_actor_log.py +0 -0
  236. {apify-2.7.3 → apify-3.0.0}/tests/integration/test_fixtures.py +0 -0
  237. {apify-2.7.3/tests/unit/scrapy/extensions → apify-3.0.0/tests/unit}/__init__.py +0 -0
  238. {apify-2.7.3/tests/unit/scrapy/middlewares → apify-3.0.0/tests/unit/actor}/__init__.py +0 -0
  239. {apify-2.7.3/tests/unit/scrapy/pipelines → apify-3.0.0/tests/unit/events}/__init__.py +0 -0
  240. {apify-2.7.3/tests/unit/scrapy/requests → apify-3.0.0/tests/unit/scrapy}/__init__.py +0 -0
  241. {apify-2.7.3/tests/unit/scrapy/utils → apify-3.0.0/tests/unit/scrapy/extensions}/__init__.py +0 -0
  242. /apify-2.7.3/website/static/.nojekyll → /apify-3.0.0/tests/unit/scrapy/middlewares/__init__.py +0 -0
  243. {apify-2.7.3 → apify-3.0.0}/tests/unit/scrapy/middlewares/test_apify_proxy.py +0 -0
  244. {apify-2.7.3 → apify-3.0.0}/tests/unit/scrapy/pipelines/test_actor_dataset_push.py +0 -0
  245. {apify-2.7.3 → apify-3.0.0}/tests/unit/scrapy/utils/test_apply_apify_settings.py +0 -0
  246. {apify-2.7.3 → apify-3.0.0}/tests/unit/scrapy/utils/test_get_basic_auth_header.py +0 -0
  247. {apify-2.7.3 → apify-3.0.0}/website/.eslintrc.json +0 -0
  248. {apify-2.7.3 → apify-3.0.0}/website/babel.config.js +0 -0
  249. {apify-2.7.3 → apify-3.0.0}/website/build_api_reference.sh +0 -0
  250. {apify-2.7.3 → apify-3.0.0}/website/generate_module_shortcuts.py +0 -0
  251. {apify-2.7.3 → apify-3.0.0}/website/src/components/ApiLink.jsx +0 -0
  252. {apify-2.7.3 → apify-3.0.0}/website/src/components/Gradients.jsx +0 -0
  253. {apify-2.7.3 → apify-3.0.0}/website/src/components/Highlights.jsx +0 -0
  254. {apify-2.7.3 → apify-3.0.0}/website/src/components/Highlights.module.css +0 -0
  255. {apify-2.7.3 → apify-3.0.0}/website/src/components/RunnableCodeBlock.module.css +0 -0
  256. {apify-2.7.3 → apify-3.0.0}/website/src/css/custom.css +0 -0
  257. {apify-2.7.3 → apify-3.0.0}/website/src/pages/home_page_example.py +0 -0
  258. {apify-2.7.3 → apify-3.0.0}/website/src/pages/index.js +0 -0
  259. {apify-2.7.3 → apify-3.0.0}/website/static/img/docs-og.png +0 -0
  260. {apify-2.7.3 → apify-3.0.0}/website/tools/docs-prettier.config.js +0 -0
  261. {apify-2.7.3 → apify-3.0.0}/website/tools/utils/externalLink.js +0 -0
@@ -22,12 +22,12 @@ jobs:
22
22
 
23
23
  steps:
24
24
  - name: Checkout repository
25
- uses: actions/checkout@v4
25
+ uses: actions/checkout@v5
26
26
  with:
27
27
  token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
28
28
 
29
29
  - name: Set up Node
30
- uses: actions/setup-node@v4
30
+ uses: actions/setup-node@v5
31
31
  with:
32
32
  node-version: ${{ env.NODE_VERSION }}
33
33
  cache: npm
@@ -50,7 +50,7 @@ jobs:
50
50
  git push
51
51
 
52
52
  - name: Set up Python
53
- uses: actions/setup-python@v5
53
+ uses: actions/setup-python@v6
54
54
  with:
55
55
  python-version: ${{ env.PYTHON_VERSION }}
56
56
 
@@ -72,7 +72,7 @@ jobs:
72
72
  uses: actions/configure-pages@v5
73
73
 
74
74
  - name: Upload GitHub Pages artifact
75
- uses: actions/upload-pages-artifact@v3
75
+ uses: actions/upload-pages-artifact@v4
76
76
  with:
77
77
  path: ./website/build
78
78
 
@@ -11,6 +11,10 @@ on:
11
11
  # Or it can be triggered manually.
12
12
  workflow_dispatch:
13
13
 
14
+ concurrency:
15
+ group: release
16
+ cancel-in-progress: false
17
+
14
18
  jobs:
15
19
  release_metadata:
16
20
  if: "!startsWith(github.event.head_commit.message, 'docs') && !startsWith(github.event.head_commit.message, 'ci') && startsWith(github.repository, 'apify/')"
@@ -20,38 +24,38 @@ jobs:
20
24
  version_number: ${{ steps.release_metadata.outputs.version_number }}
21
25
  tag_name: ${{ steps.release_metadata.outputs.tag_name }}
22
26
  changelog: ${{ steps.release_metadata.outputs.changelog }}
23
- existing_changelog_path: CHANGELOG.md
24
27
  steps:
25
28
  - uses: apify/workflows/git-cliff-release@main
26
29
  id: release_metadata
27
30
  name: Prepare release metadata
28
31
  with:
29
32
  release_type: prerelease
33
+ existing_changelog_path: CHANGELOG.md
30
34
 
31
35
  lint_check:
32
36
  name: Lint check
33
37
  uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
34
38
  with:
35
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
39
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
36
40
 
37
41
  type_check:
38
42
  name: Type check
39
43
  uses: apify/workflows/.github/workflows/python_type_check.yaml@main
40
44
  with:
41
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
45
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
42
46
 
43
47
  unit_tests:
44
48
  name: Unit tests
45
49
  uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
46
50
  with:
47
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
51
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
48
52
 
49
53
  integration_tests:
50
54
  name: Integration tests
51
55
  uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
52
56
  secrets: inherit
53
57
  with:
54
- python-versions: '["3.9", "3.13"]'
58
+ python-versions: '["3.10", "3.13"]'
55
59
 
56
60
  update_changelog:
57
61
  name: Update changelog
@@ -21,6 +21,10 @@ on:
21
21
  type: string
22
22
  default: ""
23
23
 
24
+ concurrency:
25
+ group: release
26
+ cancel-in-progress: false
27
+
24
28
  jobs:
25
29
  release_metadata:
26
30
  name: Prepare release metadata
@@ -43,30 +47,23 @@ jobs:
43
47
  name: Lint check
44
48
  uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
45
49
  with:
46
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
50
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
47
51
 
48
52
  type_check:
49
53
  name: Type check
50
54
  uses: apify/workflows/.github/workflows/python_type_check.yaml@main
51
55
  with:
52
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
56
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
53
57
 
54
58
  unit_tests:
55
59
  name: Unit tests
56
60
  uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
57
61
  with:
58
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
59
-
60
- integration_tests:
61
- name: Integration tests
62
- uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
63
- secrets: inherit
64
- with:
65
- python-versions: '["3.9", "3.13"]'
62
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
66
63
 
67
64
  update_changelog:
68
65
  name: Update changelog
69
- needs: [release_metadata, lint_check, type_check, unit_tests, integration_tests]
66
+ needs: [release_metadata, lint_check, type_check, unit_tests]
70
67
  uses: apify/workflows/.github/workflows/python_bump_and_update_changelog.yaml@main
71
68
  with:
72
69
  version_number: ${{ needs.release_metadata.outputs.version_number }}
@@ -6,24 +6,29 @@ on:
6
6
  # step required for PRs from forks. This prevents their potential exposure.
7
7
  pull_request:
8
8
 
9
+ # Trigger for pushing to the master branch is handled by the pre-release workflow.
10
+
11
+ # It should also be possible to trigger checks manually
12
+ workflow_dispatch:
13
+
9
14
  jobs:
10
15
  lint_check:
11
16
  name: Lint check
12
17
  uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
13
18
  with:
14
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
19
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
15
20
 
16
21
  type_check:
17
22
  name: Type check
18
23
  uses: apify/workflows/.github/workflows/python_type_check.yaml@main
19
24
  with:
20
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
25
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
21
26
 
22
27
  unit_tests:
23
28
  name: Unit tests
24
29
  uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
25
30
  with:
26
- python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
31
+ python-versions: '["3.10", "3.11", "3.12", "3.13"]'
27
32
 
28
33
  docs_check:
29
34
  name: Docs check
@@ -31,8 +36,7 @@ jobs:
31
36
 
32
37
  integration_tests:
33
38
  name: Integration tests
34
- needs: [lint_check, type_check, unit_tests]
35
39
  uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
36
40
  secrets: inherit
37
41
  with:
38
- python-versions: '["3.9", "3.13"]'
42
+ python-versions: '["3.10", "3.13"]'
@@ -14,7 +14,7 @@ jobs:
14
14
 
15
15
  steps:
16
16
  # Add the "t-tooling" label to all new issues
17
- - uses: actions/github-script@v7
17
+ - uses: actions/github-script@v8
18
18
  with:
19
19
  script: |
20
20
  github.rest.issues.addLabels({