zenml-nightly 0.54.1.dev20240123__py3-none-any.whl → 0.72.0.dev20250115__py3-none-any.whl

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.
Files changed (1238) hide show
  1. zenml/VERSION +1 -1
  2. zenml/__init__.py +9 -12
  3. zenml/actions/__init__.py +14 -0
  4. zenml/actions/base_action.py +682 -0
  5. zenml/actions/pipeline_run/__init__.py +0 -0
  6. zenml/actions/pipeline_run/pipeline_run_action.py +223 -0
  7. zenml/analytics/context.py +70 -15
  8. zenml/analytics/enums.py +21 -17
  9. zenml/analytics/models.py +1 -0
  10. zenml/analytics/utils.py +19 -7
  11. zenml/annotators/base_annotator.py +4 -3
  12. zenml/artifact_stores/base_artifact_store.py +155 -72
  13. zenml/artifact_stores/local_artifact_store.py +3 -2
  14. zenml/artifacts/artifact_config.py +67 -58
  15. zenml/artifacts/external_artifact.py +24 -39
  16. zenml/artifacts/external_artifact_config.py +27 -37
  17. zenml/artifacts/preexisting_data_materializer.py +90 -0
  18. zenml/artifacts/unmaterialized_artifact.py +2 -12
  19. zenml/artifacts/utils.py +521 -220
  20. zenml/cli/__init__.py +1511 -456
  21. zenml/cli/annotator.py +48 -14
  22. zenml/cli/artifact.py +22 -4
  23. zenml/cli/authorized_device.py +1 -0
  24. zenml/cli/base.py +185 -22
  25. zenml/cli/code_repository.py +1 -0
  26. zenml/cli/formatter.py +1 -1
  27. zenml/cli/integration.py +119 -24
  28. zenml/cli/login.py +977 -0
  29. zenml/cli/model.py +42 -15
  30. zenml/cli/model_registry.py +1 -2
  31. zenml/cli/pipeline.py +168 -82
  32. zenml/cli/secret.py +1 -2
  33. zenml/cli/served_model.py +56 -26
  34. zenml/cli/server.py +467 -619
  35. zenml/cli/service_accounts.py +55 -14
  36. zenml/cli/service_connectors.py +97 -6
  37. zenml/cli/stack.py +821 -531
  38. zenml/cli/stack_components.py +15 -598
  39. zenml/cli/tag.py +1 -0
  40. zenml/cli/text_utils.py +36 -2
  41. zenml/cli/user_management.py +204 -6
  42. zenml/cli/utils.py +411 -290
  43. zenml/client.py +1742 -298
  44. zenml/client_lazy_loader.py +224 -0
  45. zenml/code_repositories/base_code_repository.py +5 -4
  46. zenml/code_repositories/git/local_git_repository_context.py +1 -0
  47. zenml/code_repositories/local_repository_context.py +1 -0
  48. zenml/config/__init__.py +2 -0
  49. zenml/config/base_settings.py +6 -6
  50. zenml/config/build_configuration.py +43 -17
  51. zenml/config/compiler.py +82 -49
  52. zenml/config/docker_settings.py +139 -83
  53. zenml/config/global_config.py +260 -234
  54. zenml/config/pipeline_configurations.py +32 -11
  55. zenml/config/pipeline_run_configuration.py +15 -3
  56. zenml/config/pipeline_spec.py +6 -6
  57. zenml/config/resource_settings.py +8 -9
  58. zenml/config/retry_config.py +27 -0
  59. zenml/config/schedule.py +27 -18
  60. zenml/config/secret_reference_mixin.py +8 -4
  61. zenml/config/secrets_store_config.py +16 -24
  62. zenml/config/server_config.py +297 -39
  63. zenml/config/settings_resolver.py +2 -1
  64. zenml/config/source.py +97 -31
  65. zenml/config/step_configurations.py +83 -39
  66. zenml/config/step_run_info.py +3 -0
  67. zenml/config/store_config.py +20 -54
  68. zenml/config/strict_base_model.py +2 -6
  69. zenml/console.py +0 -1
  70. zenml/constants.py +241 -74
  71. zenml/container_registries/azure_container_registry.py +1 -0
  72. zenml/container_registries/base_container_registry.py +7 -3
  73. zenml/container_registries/default_container_registry.py +4 -3
  74. zenml/container_registries/dockerhub_container_registry.py +1 -0
  75. zenml/container_registries/gcp_container_registry.py +1 -0
  76. zenml/container_registries/github_container_registry.py +2 -10
  77. zenml/data_validators/base_data_validator.py +2 -2
  78. zenml/entrypoints/base_entrypoint_configuration.py +76 -17
  79. zenml/entrypoints/pipeline_entrypoint_configuration.py +1 -0
  80. zenml/entrypoints/step_entrypoint_configuration.py +21 -2
  81. zenml/enums.py +91 -9
  82. zenml/environment.py +52 -319
  83. zenml/{steps/base_parameters.py → event_hub/__init__.py} +5 -7
  84. zenml/event_hub/base_event_hub.py +196 -0
  85. zenml/event_hub/event_hub.py +181 -0
  86. zenml/event_sources/__init__.py +14 -0
  87. zenml/{lineage_graph/edge.py → event_sources/base_event.py} +5 -7
  88. zenml/event_sources/base_event_source.py +695 -0
  89. zenml/event_sources/webhooks/__init__.py +14 -0
  90. zenml/event_sources/webhooks/base_webhook_event_source.py +231 -0
  91. zenml/exceptions.py +40 -41
  92. zenml/feature_stores/base_feature_store.py +4 -6
  93. zenml/hooks/hook_validators.py +3 -11
  94. zenml/image_builders/base_image_builder.py +5 -2
  95. zenml/image_builders/build_context.py +24 -80
  96. zenml/image_builders/local_image_builder.py +14 -6
  97. zenml/integrations/__init__.py +16 -4
  98. zenml/integrations/airflow/__init__.py +3 -5
  99. zenml/integrations/airflow/flavors/airflow_orchestrator_flavor.py +15 -7
  100. zenml/integrations/airflow/orchestrators/airflow_orchestrator.py +15 -252
  101. zenml/integrations/airflow/orchestrators/dag_generator.py +5 -3
  102. zenml/integrations/argilla/__init__.py +46 -0
  103. zenml/integrations/argilla/annotators/__init__.py +20 -0
  104. zenml/integrations/argilla/annotators/argilla_annotator.py +443 -0
  105. zenml/{post_execution → integrations/argilla/flavors}/__init__.py +9 -13
  106. zenml/integrations/argilla/flavors/argilla_annotator_flavor.py +150 -0
  107. zenml/integrations/aws/__init__.py +7 -3
  108. zenml/integrations/aws/container_registries/aws_container_registry.py +44 -8
  109. zenml/integrations/aws/flavors/__init__.py +6 -0
  110. zenml/integrations/aws/flavors/aws_container_registry_flavor.py +3 -2
  111. zenml/integrations/aws/flavors/aws_image_builder_flavor.py +146 -0
  112. zenml/integrations/aws/flavors/sagemaker_orchestrator_flavor.py +104 -16
  113. zenml/integrations/aws/flavors/sagemaker_step_operator_flavor.py +6 -2
  114. zenml/integrations/aws/image_builders/__init__.py +20 -0
  115. zenml/integrations/aws/image_builders/aws_image_builder.py +307 -0
  116. zenml/integrations/aws/orchestrators/sagemaker_orchestrator.py +421 -133
  117. zenml/integrations/aws/service_connectors/aws_service_connector.py +175 -48
  118. zenml/integrations/aws/step_operators/sagemaker_step_operator.py +1 -1
  119. zenml/integrations/azure/__init__.py +14 -5
  120. zenml/integrations/azure/azureml_utils.py +201 -0
  121. zenml/integrations/azure/flavors/__init__.py +11 -0
  122. zenml/integrations/azure/flavors/azureml.py +139 -0
  123. zenml/integrations/azure/flavors/azureml_orchestrator_flavor.py +166 -0
  124. zenml/integrations/azure/flavors/azureml_step_operator_flavor.py +71 -18
  125. zenml/integrations/azure/orchestrators/__init__.py +19 -0
  126. zenml/integrations/azure/orchestrators/azureml_orchestrator.py +583 -0
  127. zenml/integrations/azure/orchestrators/azureml_orchestrator_entrypoint_config.py +82 -0
  128. zenml/integrations/azure/service_connectors/azure_service_connector.py +15 -6
  129. zenml/integrations/azure/step_operators/azureml_step_operator.py +78 -173
  130. zenml/integrations/bentoml/__init__.py +1 -1
  131. zenml/integrations/bentoml/constants.py +1 -1
  132. zenml/integrations/bentoml/materializers/bentoml_bento_materializer.py +19 -31
  133. zenml/integrations/bentoml/model_deployers/bentoml_model_deployer.py +128 -239
  134. zenml/integrations/bentoml/services/__init__.py +15 -4
  135. zenml/integrations/bentoml/services/bentoml_container_deployment.py +399 -0
  136. zenml/integrations/bentoml/services/{bentoml_deployment.py → bentoml_local_deployment.py} +85 -43
  137. zenml/integrations/bentoml/services/deployment_type.py +23 -0
  138. zenml/integrations/bentoml/steps/bento_builder.py +2 -0
  139. zenml/integrations/bentoml/steps/bentoml_deployer.py +97 -47
  140. zenml/integrations/bitbucket/__init__.py +42 -0
  141. zenml/integrations/bitbucket/plugins/__init__.py +20 -0
  142. zenml/integrations/bitbucket/plugins/bitbucket_webhook_event_source_flavor.py +43 -0
  143. zenml/integrations/bitbucket/plugins/event_sources/__init__.py +0 -0
  144. zenml/integrations/bitbucket/plugins/event_sources/bitbucket_webhook_event_source.py +486 -0
  145. zenml/integrations/comet/__init__.py +49 -0
  146. zenml/integrations/{kserve/services → comet/experiment_trackers}/__init__.py +5 -6
  147. zenml/integrations/comet/experiment_trackers/comet_experiment_tracker.py +175 -0
  148. zenml/integrations/comet/flavors/__init__.py +24 -0
  149. zenml/integrations/comet/flavors/comet_experiment_tracker_flavor.py +129 -0
  150. zenml/integrations/constants.py +14 -2
  151. zenml/integrations/databricks/__init__.py +70 -0
  152. zenml/{lineage_graph → integrations/databricks/flavors}/__init__.py +14 -18
  153. zenml/integrations/databricks/flavors/databricks_model_deployer_flavor.py +118 -0
  154. zenml/integrations/databricks/flavors/databricks_orchestrator_flavor.py +174 -0
  155. zenml/integrations/{kserve → databricks}/model_deployers/__init__.py +5 -5
  156. zenml/integrations/databricks/model_deployers/databricks_model_deployer.py +249 -0
  157. zenml/integrations/databricks/orchestrators/__init__.py +20 -0
  158. zenml/integrations/databricks/orchestrators/databricks_orchestrator.py +501 -0
  159. zenml/integrations/databricks/orchestrators/databricks_orchestrator_entrypoint_config.py +97 -0
  160. zenml/integrations/databricks/services/__init__.py +19 -0
  161. zenml/integrations/databricks/services/databricks_deployment.py +407 -0
  162. zenml/integrations/{gcp/orchestrators/vertex_scheduler → databricks/utils}/__init__.py +2 -2
  163. zenml/integrations/databricks/utils/databricks_utils.py +87 -0
  164. zenml/integrations/deepchecks/__init__.py +30 -10
  165. zenml/integrations/deepchecks/data_validators/deepchecks_data_validator.py +59 -18
  166. zenml/integrations/deepchecks/materializers/deepchecks_dataset_materializer.py +3 -1
  167. zenml/integrations/deepchecks/materializers/deepchecks_results_materializer.py +3 -3
  168. zenml/integrations/deepchecks/validation_checks.py +62 -35
  169. zenml/integrations/discord/__init__.py +1 -0
  170. zenml/integrations/discord/steps/discord_alerter_ask_step.py +1 -0
  171. zenml/integrations/discord/steps/discord_alerter_post_step.py +1 -0
  172. zenml/integrations/evidently/__init__.py +22 -4
  173. zenml/integrations/evidently/column_mapping.py +11 -3
  174. zenml/integrations/evidently/data_validators/evidently_data_validator.py +24 -6
  175. zenml/integrations/evidently/metrics.py +7 -8
  176. zenml/integrations/evidently/tests.py +7 -8
  177. zenml/integrations/facets/__init__.py +22 -5
  178. zenml/integrations/facets/models.py +2 -7
  179. zenml/integrations/feast/__init__.py +19 -3
  180. zenml/integrations/feast/feature_stores/feast_feature_store.py +13 -32
  181. zenml/integrations/gcp/__init__.py +6 -6
  182. zenml/integrations/gcp/artifact_stores/gcp_artifact_store.py +6 -0
  183. zenml/integrations/gcp/flavors/gcp_artifact_store_flavor.py +1 -0
  184. zenml/integrations/gcp/flavors/vertex_orchestrator_flavor.py +24 -2
  185. zenml/integrations/gcp/flavors/vertex_step_operator_flavor.py +14 -1
  186. zenml/integrations/gcp/google_credentials_mixin.py +1 -1
  187. zenml/integrations/gcp/orchestrators/vertex_orchestrator.py +519 -296
  188. zenml/integrations/gcp/service_connectors/gcp_service_connector.py +788 -113
  189. zenml/integrations/gcp/step_operators/vertex_step_operator.py +9 -1
  190. zenml/integrations/github/__init__.py +15 -0
  191. zenml/integrations/github/code_repositories/github_code_repository.py +3 -2
  192. zenml/integrations/github/plugins/__init__.py +19 -0
  193. zenml/integrations/github/plugins/event_sources/__init__.py +0 -0
  194. zenml/integrations/github/plugins/event_sources/github_webhook_event_source.py +510 -0
  195. zenml/integrations/github/plugins/github_webhook_event_source_flavor.py +43 -0
  196. zenml/integrations/gitlab/code_repositories/gitlab_code_repository.py +7 -1
  197. zenml/integrations/great_expectations/__init__.py +22 -10
  198. zenml/integrations/great_expectations/data_validators/ge_data_validator.py +61 -57
  199. zenml/integrations/great_expectations/flavors/great_expectations_data_validator_flavor.py +35 -2
  200. zenml/integrations/great_expectations/ge_store_backend.py +24 -11
  201. zenml/integrations/great_expectations/materializers/ge_materializer.py +9 -9
  202. zenml/integrations/great_expectations/utils.py +5 -5
  203. zenml/integrations/huggingface/__init__.py +52 -1
  204. zenml/integrations/huggingface/flavors/__init__.py +26 -0
  205. zenml/integrations/huggingface/flavors/huggingface_model_deployer_flavor.py +130 -0
  206. zenml/integrations/huggingface/materializers/__init__.py +3 -0
  207. zenml/integrations/huggingface/materializers/huggingface_datasets_materializer.py +102 -19
  208. zenml/integrations/huggingface/materializers/huggingface_pt_model_materializer.py +18 -19
  209. zenml/integrations/huggingface/materializers/huggingface_t5_materializer.py +104 -0
  210. zenml/integrations/huggingface/materializers/huggingface_tf_model_materializer.py +18 -19
  211. zenml/integrations/huggingface/materializers/huggingface_tokenizer_materializer.py +13 -15
  212. zenml/integrations/huggingface/model_deployers/__init__.py +20 -0
  213. zenml/integrations/huggingface/model_deployers/huggingface_model_deployer.py +247 -0
  214. zenml/integrations/huggingface/services/__init__.py +19 -0
  215. zenml/integrations/huggingface/services/huggingface_deployment.py +292 -0
  216. zenml/integrations/huggingface/steps/__init__.py +21 -0
  217. zenml/integrations/huggingface/steps/accelerate_runner.py +166 -0
  218. zenml/integrations/huggingface/steps/huggingface_deployer.py +110 -0
  219. zenml/integrations/hyperai/__init__.py +53 -0
  220. zenml/integrations/hyperai/flavors/__init__.py +20 -0
  221. zenml/integrations/hyperai/flavors/hyperai_orchestrator_flavor.py +170 -0
  222. zenml/integrations/hyperai/orchestrators/__init__.py +21 -0
  223. zenml/integrations/hyperai/orchestrators/hyperai_orchestrator.py +510 -0
  224. zenml/integrations/hyperai/service_connectors/__init__.py +20 -0
  225. zenml/integrations/hyperai/service_connectors/hyperai_service_connector.py +375 -0
  226. zenml/integrations/integration.py +101 -47
  227. zenml/integrations/kaniko/flavors/kaniko_image_builder_flavor.py +6 -44
  228. zenml/integrations/kaniko/image_builders/kaniko_image_builder.py +9 -6
  229. zenml/integrations/kubeflow/__init__.py +4 -1
  230. zenml/integrations/kubeflow/flavors/kubeflow_orchestrator_flavor.py +67 -82
  231. zenml/integrations/kubeflow/orchestrators/kubeflow_orchestrator.py +306 -248
  232. zenml/integrations/kubernetes/__init__.py +6 -3
  233. zenml/integrations/kubernetes/flavors/__init__.py +8 -0
  234. zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py +43 -2
  235. zenml/integrations/kubernetes/flavors/kubernetes_step_operator_flavor.py +166 -0
  236. zenml/integrations/kubernetes/orchestrators/kube_utils.py +67 -12
  237. zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py +89 -21
  238. zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint.py +39 -7
  239. zenml/integrations/kubernetes/orchestrators/manifest_utils.py +42 -19
  240. zenml/integrations/kubernetes/pod_settings.py +21 -31
  241. zenml/integrations/kubernetes/serialization_utils.py +3 -3
  242. zenml/integrations/kubernetes/service_connectors/kubernetes_service_connector.py +14 -11
  243. zenml/integrations/kubernetes/step_operators/__init__.py +22 -0
  244. zenml/integrations/kubernetes/step_operators/kubernetes_step_operator.py +236 -0
  245. zenml/integrations/label_studio/__init__.py +1 -3
  246. zenml/integrations/label_studio/annotators/label_studio_annotator.py +46 -14
  247. zenml/integrations/label_studio/flavors/__init__.py +2 -0
  248. zenml/integrations/label_studio/flavors/label_studio_annotator_flavor.py +20 -5
  249. zenml/integrations/langchain/__init__.py +7 -1
  250. zenml/integrations/langchain/materializers/document_materializer.py +44 -8
  251. zenml/integrations/langchain/materializers/openai_embedding_materializer.py +28 -2
  252. zenml/integrations/lightgbm/__init__.py +1 -0
  253. zenml/integrations/lightgbm/materializers/lightgbm_booster_materializer.py +8 -15
  254. zenml/integrations/lightgbm/materializers/lightgbm_dataset_materializer.py +11 -16
  255. zenml/integrations/lightning/__init__.py +48 -0
  256. zenml/integrations/lightning/flavors/__init__.py +23 -0
  257. zenml/integrations/lightning/flavors/lightning_orchestrator_flavor.py +168 -0
  258. zenml/integrations/lightning/orchestrators/__init__.py +23 -0
  259. zenml/integrations/lightning/orchestrators/lightning_orchestrator.py +617 -0
  260. zenml/integrations/lightning/orchestrators/lightning_orchestrator_entrypoint.py +303 -0
  261. zenml/integrations/lightning/orchestrators/lightning_orchestrator_entrypoint_configuration.py +77 -0
  262. zenml/integrations/lightning/orchestrators/utils.py +67 -0
  263. zenml/integrations/mlflow/__init__.py +55 -8
  264. zenml/integrations/mlflow/experiment_trackers/mlflow_experiment_tracker.py +31 -13
  265. zenml/integrations/mlflow/flavors/mlflow_experiment_tracker_flavor.py +32 -37
  266. zenml/integrations/mlflow/model_deployers/mlflow_model_deployer.py +42 -233
  267. zenml/integrations/mlflow/model_registries/mlflow_model_registry.py +42 -49
  268. zenml/integrations/mlflow/services/mlflow_deployment.py +30 -5
  269. zenml/integrations/mlflow/steps/mlflow_deployer.py +25 -27
  270. zenml/integrations/mlflow/steps/mlflow_registry.py +3 -1
  271. zenml/integrations/modal/__init__.py +46 -0
  272. zenml/integrations/modal/flavors/__init__.py +26 -0
  273. zenml/integrations/modal/flavors/modal_step_operator_flavor.py +125 -0
  274. zenml/integrations/modal/step_operators/__init__.py +22 -0
  275. zenml/integrations/modal/step_operators/modal_step_operator.py +242 -0
  276. zenml/integrations/neptune/experiment_trackers/neptune_experiment_tracker.py +7 -5
  277. zenml/integrations/neptune/experiment_trackers/run_state.py +71 -55
  278. zenml/integrations/neptune/flavors/neptune_experiment_tracker_flavor.py +1 -1
  279. zenml/integrations/neural_prophet/__init__.py +6 -1
  280. zenml/integrations/numpy/__init__.py +32 -0
  281. zenml/integrations/{kserve/constants.py → numpy/materializers/__init__.py} +5 -4
  282. zenml/integrations/numpy/materializers/numpy_materializer.py +246 -0
  283. zenml/integrations/openai/__init__.py +1 -1
  284. zenml/integrations/openai/hooks/open_ai_failure_hook.py +39 -14
  285. zenml/{steps/external_artifact.py → integrations/pandas/__init__.py} +17 -11
  286. zenml/integrations/{kserve/custom_deployer → pandas/materializers}/__init__.py +5 -5
  287. zenml/integrations/pandas/materializers/pandas_materializer.py +192 -0
  288. zenml/integrations/pigeon/__init__.py +44 -0
  289. zenml/integrations/pigeon/annotators/__init__.py +20 -0
  290. zenml/integrations/pigeon/annotators/pigeon_annotator.py +330 -0
  291. zenml/integrations/{kserve → pigeon}/flavors/__init__.py +7 -7
  292. zenml/integrations/pigeon/flavors/pigeon_annotator_flavor.py +104 -0
  293. zenml/integrations/pillow/materializers/pillow_image_materializer.py +17 -20
  294. zenml/integrations/polars/__init__.py +1 -0
  295. zenml/integrations/polars/materializers/dataframe_materializer.py +26 -39
  296. zenml/integrations/prodigy/__init__.py +48 -0
  297. zenml/integrations/prodigy/annotators/__init__.py +20 -0
  298. zenml/integrations/prodigy/annotators/prodigy_annotator.py +275 -0
  299. zenml/integrations/prodigy/flavors/__init__.py +24 -0
  300. zenml/integrations/prodigy/flavors/prodigy_annotator_flavor.py +101 -0
  301. zenml/integrations/pycaret/__init__.py +6 -0
  302. zenml/integrations/pycaret/materializers/model_materializer.py +7 -22
  303. zenml/integrations/pytorch/materializers/base_pytorch_materializer.py +8 -2
  304. zenml/integrations/pytorch/materializers/pytorch_module_materializer.py +4 -1
  305. zenml/integrations/registry.py +38 -1
  306. zenml/integrations/s3/__init__.py +2 -3
  307. zenml/integrations/s3/artifact_stores/s3_artifact_store.py +191 -9
  308. zenml/integrations/s3/flavors/s3_artifact_store_flavor.py +22 -45
  309. zenml/integrations/s3/utils.py +39 -0
  310. zenml/integrations/seldon/__init__.py +18 -2
  311. zenml/integrations/seldon/model_deployers/seldon_model_deployer.py +19 -141
  312. zenml/integrations/seldon/secret_schemas/secret_schemas.py +2 -2
  313. zenml/integrations/seldon/seldon_client.py +55 -70
  314. zenml/integrations/seldon/services/seldon_deployment.py +4 -5
  315. zenml/integrations/seldon/steps/seldon_deployer.py +21 -20
  316. zenml/integrations/sklearn/__init__.py +1 -1
  317. zenml/integrations/skypilot/flavors/skypilot_orchestrator_base_vm_config.py +29 -7
  318. zenml/integrations/skypilot/orchestrators/skypilot_base_vm_orchestrator.py +47 -28
  319. zenml/integrations/skypilot/orchestrators/skypilot_orchestrator_entrypoint.py +2 -2
  320. zenml/integrations/skypilot_aws/__init__.py +3 -2
  321. zenml/integrations/skypilot_aws/flavors/skypilot_orchestrator_aws_vm_flavor.py +1 -1
  322. zenml/integrations/skypilot_azure/__init__.py +2 -4
  323. zenml/integrations/skypilot_azure/flavors/skypilot_orchestrator_azure_vm_flavor.py +1 -1
  324. zenml/integrations/skypilot_gcp/__init__.py +3 -2
  325. zenml/integrations/skypilot_gcp/flavors/skypilot_orchestrator_gcp_vm_flavor.py +1 -1
  326. zenml/integrations/skypilot_kubernetes/__init__.py +52 -0
  327. zenml/integrations/skypilot_kubernetes/flavors/__init__.py +26 -0
  328. zenml/integrations/skypilot_kubernetes/flavors/skypilot_orchestrator_kubernetes_vm_flavor.py +125 -0
  329. zenml/integrations/skypilot_kubernetes/orchestrators/__init__.py +25 -0
  330. zenml/integrations/skypilot_kubernetes/orchestrators/skypilot_kubernetes_vm_orchestrator.py +74 -0
  331. zenml/integrations/skypilot_lambda/__init__.py +50 -0
  332. zenml/integrations/{kserve/secret_schemas → skypilot_lambda/flavors}/__init__.py +9 -12
  333. zenml/integrations/skypilot_lambda/flavors/skypilot_orchestrator_lambda_vm_flavor.py +130 -0
  334. zenml/{lineage_graph/node → integrations/skypilot_lambda/orchestrators}/__init__.py +8 -15
  335. zenml/integrations/skypilot_lambda/orchestrators/skypilot_lambda_vm_orchestrator.py +92 -0
  336. zenml/integrations/slack/__init__.py +1 -0
  337. zenml/integrations/slack/alerters/slack_alerter.py +22 -2
  338. zenml/integrations/slack/flavors/__init__.py +2 -0
  339. zenml/integrations/slack/flavors/slack_alerter_flavor.py +13 -4
  340. zenml/integrations/slack/steps/slack_alerter_ask_step.py +1 -0
  341. zenml/integrations/slack/steps/slack_alerter_post_step.py +1 -0
  342. zenml/integrations/spark/flavors/spark_step_operator_flavor.py +2 -39
  343. zenml/integrations/spark/step_operators/kubernetes_step_operator.py +1 -0
  344. zenml/integrations/spark/step_operators/spark_entrypoint_configuration.py +1 -0
  345. zenml/integrations/spark/step_operators/spark_step_operator.py +2 -0
  346. zenml/integrations/tekton/__init__.py +2 -1
  347. zenml/integrations/tekton/flavors/tekton_orchestrator_flavor.py +66 -23
  348. zenml/integrations/tekton/orchestrators/tekton_orchestrator.py +549 -235
  349. zenml/integrations/tensorboard/__init__.py +1 -13
  350. zenml/integrations/tensorboard/services/tensorboard_service.py +3 -4
  351. zenml/integrations/tensorboard/visualizers/tensorboard_visualizer.py +66 -59
  352. zenml/integrations/tensorflow/__init__.py +10 -15
  353. zenml/integrations/tensorflow/materializers/keras_materializer.py +24 -27
  354. zenml/integrations/tensorflow/materializers/tf_dataset_materializer.py +9 -16
  355. zenml/integrations/vllm/__init__.py +50 -0
  356. zenml/integrations/vllm/flavors/__init__.py +21 -0
  357. zenml/integrations/vllm/flavors/vllm_model_deployer_flavor.py +91 -0
  358. zenml/integrations/vllm/model_deployers/__init__.py +19 -0
  359. zenml/integrations/vllm/model_deployers/vllm_model_deployer.py +263 -0
  360. zenml/integrations/vllm/services/__init__.py +19 -0
  361. zenml/integrations/vllm/services/vllm_deployment.py +206 -0
  362. zenml/integrations/wandb/__init__.py +1 -0
  363. zenml/integrations/wandb/flavors/wandb_experiment_tracker_flavor.py +21 -18
  364. zenml/integrations/whylogs/__init__.py +18 -2
  365. zenml/integrations/whylogs/data_validators/whylogs_data_validator.py +3 -3
  366. zenml/integrations/whylogs/flavors/whylogs_data_validator_flavor.py +1 -1
  367. zenml/integrations/whylogs/materializers/whylogs_materializer.py +14 -21
  368. zenml/integrations/xgboost/materializers/xgboost_booster_materializer.py +11 -22
  369. zenml/integrations/xgboost/materializers/xgboost_dmatrix_materializer.py +10 -19
  370. zenml/io/fileio.py +1 -0
  371. zenml/io/filesystem.py +2 -2
  372. zenml/io/local_filesystem.py +3 -3
  373. zenml/logger.py +41 -17
  374. zenml/logging/__init__.py +5 -0
  375. zenml/logging/step_logging.py +280 -32
  376. zenml/{new/steps → login}/__init__.py +4 -1
  377. zenml/login/credentials.py +346 -0
  378. zenml/login/credentials_store.py +603 -0
  379. zenml/{new/pipelines → login/pro}/__init__.py +4 -1
  380. zenml/login/pro/client.py +496 -0
  381. zenml/login/pro/constants.py +34 -0
  382. zenml/{zen_stores/schemas/identity_schemas.py → login/pro/models.py} +9 -11
  383. zenml/login/pro/organization/__init__.py +14 -0
  384. zenml/login/pro/organization/client.py +79 -0
  385. zenml/{lineage_graph/node/base_node.py → login/pro/organization/models.py} +13 -12
  386. zenml/{_hub → login/pro/tenant}/__init__.py +2 -2
  387. zenml/login/pro/tenant/client.py +92 -0
  388. zenml/login/pro/tenant/models.py +174 -0
  389. zenml/login/pro/utils.py +121 -0
  390. zenml/{cli → login}/web_login.py +66 -21
  391. zenml/materializers/__init__.py +2 -4
  392. zenml/materializers/base_materializer.py +180 -51
  393. zenml/materializers/built_in_materializer.py +50 -23
  394. zenml/materializers/cloudpickle_materializer.py +4 -5
  395. zenml/materializers/numpy_materializer.py +23 -233
  396. zenml/materializers/pandas_materializer.py +22 -174
  397. zenml/materializers/pydantic_materializer.py +2 -2
  398. zenml/materializers/service_materializer.py +12 -10
  399. zenml/materializers/structured_string_materializer.py +12 -6
  400. zenml/materializers/uuid_materializer.py +79 -0
  401. zenml/metadata/lazy_load.py +33 -17
  402. zenml/metadata/metadata_types.py +112 -3
  403. zenml/model/lazy_load.py +85 -4
  404. zenml/model/model.py +236 -226
  405. zenml/model/utils.py +99 -141
  406. zenml/model_deployers/base_model_deployer.py +319 -47
  407. zenml/model_registries/base_model_registry.py +17 -15
  408. zenml/models/__init__.py +254 -175
  409. zenml/models/v2/base/base.py +254 -112
  410. zenml/models/v2/base/base_plugin_flavor.py +76 -0
  411. zenml/models/v2/base/filter.py +530 -199
  412. zenml/models/v2/base/page.py +2 -12
  413. zenml/models/v2/base/scoped.py +292 -22
  414. zenml/models/v2/core/action.py +276 -0
  415. zenml/models/v2/core/action_flavor.py +57 -0
  416. zenml/models/v2/core/api_key.py +35 -12
  417. zenml/models/v2/core/artifact.py +126 -6
  418. zenml/models/v2/core/artifact_version.py +289 -65
  419. zenml/models/v2/core/artifact_visualization.py +10 -4
  420. zenml/models/v2/core/code_reference.py +13 -4
  421. zenml/models/v2/core/code_repository.py +39 -16
  422. zenml/models/v2/core/component.py +113 -61
  423. zenml/models/v2/core/device.py +25 -5
  424. zenml/models/v2/core/event_source.py +244 -0
  425. zenml/models/v2/core/event_source_flavor.py +67 -0
  426. zenml/models/v2/core/flavor.py +90 -27
  427. zenml/models/v2/core/logs.py +81 -12
  428. zenml/models/v2/core/model.py +91 -42
  429. zenml/models/v2/core/model_version.py +100 -55
  430. zenml/models/v2/core/model_version_artifact.py +96 -89
  431. zenml/models/v2/core/model_version_pipeline_run.py +86 -53
  432. zenml/models/v2/core/pipeline.py +205 -80
  433. zenml/models/v2/core/pipeline_build.py +110 -21
  434. zenml/models/v2/core/pipeline_deployment.py +101 -36
  435. zenml/models/v2/core/pipeline_run.py +545 -33
  436. zenml/models/v2/core/run_metadata.py +23 -181
  437. zenml/models/v2/core/run_template.py +439 -0
  438. zenml/models/v2/core/schedule.py +66 -29
  439. zenml/models/v2/core/secret.py +33 -21
  440. zenml/models/v2/core/server_settings.py +224 -0
  441. zenml/models/v2/core/service.py +500 -0
  442. zenml/models/v2/core/service_account.py +40 -15
  443. zenml/models/v2/core/service_connector.py +247 -49
  444. zenml/models/v2/core/stack.py +163 -70
  445. zenml/models/v2/core/step_run.py +210 -48
  446. zenml/models/v2/core/tag.py +21 -8
  447. zenml/models/v2/core/tag_resource.py +13 -4
  448. zenml/models/v2/core/trigger.py +422 -0
  449. zenml/models/v2/core/trigger_execution.py +119 -0
  450. zenml/models/v2/core/user.py +136 -69
  451. zenml/models/v2/core/workspace.py +26 -7
  452. zenml/models/v2/misc/auth_models.py +11 -2
  453. zenml/models/v2/misc/build_item.py +3 -3
  454. zenml/models/v2/misc/external_user.py +3 -6
  455. zenml/models/v2/misc/info_models.py +78 -0
  456. zenml/models/v2/misc/loaded_visualization.py +2 -2
  457. zenml/models/v2/misc/run_metadata.py +38 -0
  458. zenml/models/v2/misc/server_models.py +56 -0
  459. zenml/models/v2/misc/service_connector_type.py +9 -17
  460. zenml/models/v2/misc/stack_deployment.py +96 -0
  461. zenml/models/v2/misc/user_auth.py +7 -9
  462. zenml/orchestrators/__init__.py +4 -0
  463. zenml/orchestrators/base_orchestrator.py +136 -25
  464. zenml/orchestrators/containerized_orchestrator.py +1 -0
  465. zenml/orchestrators/dag_runner.py +18 -3
  466. zenml/orchestrators/input_utils.py +109 -48
  467. zenml/orchestrators/local/local_orchestrator.py +10 -0
  468. zenml/orchestrators/local_docker/local_docker_orchestrator.py +14 -42
  469. zenml/orchestrators/output_utils.py +16 -6
  470. zenml/orchestrators/publish_utils.py +12 -5
  471. zenml/orchestrators/step_launcher.py +142 -194
  472. zenml/orchestrators/step_run_utils.py +386 -0
  473. zenml/orchestrators/step_runner.py +181 -270
  474. zenml/orchestrators/utils.py +219 -84
  475. zenml/orchestrators/wheeled_orchestrator.py +147 -0
  476. zenml/pipelines/__init__.py +3 -16
  477. zenml/{new/pipelines → pipelines}/build_utils.py +287 -47
  478. zenml/{new/pipelines → pipelines}/pipeline_context.py +6 -2
  479. zenml/pipelines/pipeline_decorator.py +40 -64
  480. zenml/{new/pipelines/pipeline.py → pipelines/pipeline_definition.py} +376 -440
  481. zenml/pipelines/run_utils.py +358 -0
  482. zenml/plugins/__init__.py +0 -0
  483. zenml/plugins/base_plugin_flavor.py +88 -0
  484. zenml/plugins/plugin_flavor_registry.py +342 -0
  485. zenml/secret/base_secret.py +7 -8
  486. zenml/secret/schemas/basic_auth_secret_schema.py +0 -1
  487. zenml/service_connectors/docker_service_connector.py +19 -4
  488. zenml/service_connectors/service_connector.py +12 -14
  489. zenml/service_connectors/service_connector_registry.py +71 -55
  490. zenml/service_connectors/service_connector_utils.py +418 -0
  491. zenml/services/__init__.py +0 -2
  492. zenml/services/container/container_service.py +9 -6
  493. zenml/services/container/container_service_endpoint.py +1 -1
  494. zenml/services/container/entrypoint.py +3 -2
  495. zenml/services/local/local_daemon_entrypoint.py +9 -6
  496. zenml/services/local/local_service.py +1 -1
  497. zenml/services/local/local_service_endpoint.py +1 -1
  498. zenml/services/service.py +222 -130
  499. zenml/services/service_status.py +2 -1
  500. zenml/services/service_type.py +6 -5
  501. zenml/stack/flavor.py +25 -18
  502. zenml/stack/flavor_registry.py +4 -4
  503. zenml/stack/stack.py +20 -131
  504. zenml/stack/stack_component.py +136 -110
  505. zenml/stack/utils.py +36 -15
  506. zenml/stack_deployments/__init__.py +14 -0
  507. zenml/stack_deployments/aws_stack_deployment.py +320 -0
  508. zenml/stack_deployments/azure_stack_deployment.py +315 -0
  509. zenml/stack_deployments/gcp_stack_deployment.py +315 -0
  510. zenml/stack_deployments/stack_deployment.py +232 -0
  511. zenml/stack_deployments/utils.py +48 -0
  512. zenml/step_operators/step_operator_entrypoint_configuration.py +2 -1
  513. zenml/steps/__init__.py +3 -9
  514. zenml/steps/base_step.py +172 -315
  515. zenml/{new/steps → steps}/decorated_step.py +1 -0
  516. zenml/steps/entrypoint_function_utils.py +33 -93
  517. zenml/{new/steps → steps}/step_context.py +70 -50
  518. zenml/steps/step_decorator.py +47 -93
  519. zenml/steps/step_invocation.py +22 -60
  520. zenml/steps/utils.py +161 -48
  521. zenml/types.py +14 -1
  522. zenml/utils/archivable.py +178 -0
  523. zenml/utils/callback_registry.py +71 -0
  524. zenml/utils/code_repository_utils.py +1 -0
  525. zenml/utils/code_utils.py +346 -0
  526. zenml/utils/cuda_utils.py +50 -0
  527. zenml/utils/dashboard_utils.py +67 -21
  528. zenml/utils/deprecation_utils.py +22 -24
  529. zenml/utils/dict_utils.py +22 -0
  530. zenml/utils/docker_utils.py +34 -5
  531. zenml/utils/downloaded_repository_context.py +1 -0
  532. zenml/utils/env_utils.py +55 -1
  533. zenml/utils/filesync_model.py +65 -28
  534. zenml/utils/function_utils.py +260 -0
  535. zenml/utils/integration_utils.py +1 -0
  536. zenml/utils/json_utils.py +131 -0
  537. zenml/utils/materializer_utils.py +1 -1
  538. zenml/utils/metadata_utils.py +368 -0
  539. zenml/utils/notebook_utils.py +136 -0
  540. zenml/utils/package_utils.py +89 -0
  541. zenml/utils/pagination_utils.py +9 -7
  542. zenml/utils/pipeline_docker_image_builder.py +152 -149
  543. zenml/utils/pydantic_utils.py +276 -66
  544. zenml/utils/requirements_utils.py +71 -0
  545. zenml/utils/secret_utils.py +66 -12
  546. zenml/utils/settings_utils.py +2 -1
  547. zenml/utils/singleton.py +15 -3
  548. zenml/utils/source_code_utils.py +1 -0
  549. zenml/utils/source_utils.py +236 -14
  550. zenml/utils/string_utils.py +140 -0
  551. zenml/utils/typed_model.py +5 -3
  552. zenml/utils/typing_utils.py +223 -0
  553. zenml/utils/visualization_utils.py +5 -3
  554. zenml/utils/yaml_utils.py +1 -1
  555. zenml/zen_server/auth.py +295 -52
  556. zenml/zen_server/cache.py +208 -0
  557. zenml/zen_server/cloud_utils.py +261 -0
  558. zenml/zen_server/dashboard/assets/404-Dfq64Boz.js +1 -0
  559. zenml/zen_server/dashboard/assets/@radix-DeK6qiuw.js +85 -0
  560. zenml/zen_server/dashboard/assets/@react-router-B3Z5rLr2.js +29 -0
  561. zenml/zen_server/dashboard/assets/@reactflow-BUNIMFeC.js +17 -0
  562. zenml/zen_server/dashboard/assets/@reactflow-C26Olbza.css +1 -0
  563. zenml/zen_server/dashboard/assets/@tanstack-DT5WLu9C.js +22 -0
  564. zenml/zen_server/dashboard/assets/AlertDialogDropdownItem-B73Vs10T.js +1 -0
  565. zenml/zen_server/dashboard/assets/CodeSnippet-Bbx6fIb6.css +1 -0
  566. zenml/zen_server/dashboard/assets/CodeSnippet-DIJRT2NT.js +9 -0
  567. zenml/zen_server/dashboard/assets/CollapsibleCard-BzUHGZOU.js +1 -0
  568. zenml/zen_server/dashboard/assets/Commands-BEGyld4c.js +1 -0
  569. zenml/zen_server/dashboard/assets/ComponentBadge-xyKiek1s.js +1 -0
  570. zenml/zen_server/dashboard/assets/CopyButton-DhW-mapu.js +2 -0
  571. zenml/zen_server/dashboard/assets/CsvVizualization-D8oazBiE.js +15 -0
  572. zenml/zen_server/dashboard/assets/DeleteAlertDialog-WkSIIgfy.js +1 -0
  573. zenml/zen_server/dashboard/assets/DialogItem-Bgroeg29.js +1 -0
  574. zenml/zen_server/dashboard/assets/DisplayDate-CDMUcQHS.js +1 -0
  575. zenml/zen_server/dashboard/assets/EmptyState-BzdlCwp3.js +1 -0
  576. zenml/zen_server/dashboard/assets/Error-CY5tlu17.js +1 -0
  577. zenml/zen_server/dashboard/assets/ExecutionStatus-G8mjIaeA.js +1 -0
  578. zenml/zen_server/dashboard/assets/Helpbox-Bb1ed--O.js +1 -0
  579. zenml/zen_server/dashboard/assets/Infobox-Da6-76M2.js +1 -0
  580. zenml/zen_server/dashboard/assets/InlineAvatar-DqnZaBNq.js +1 -0
  581. zenml/zen_server/dashboard/assets/Lock-CYYy18Mm.js +1 -0
  582. zenml/zen_server/dashboard/assets/MarkdownVisualization-ylXaAxev.js +14 -0
  583. zenml/zen_server/dashboard/assets/NestedCollapsible-aK5ojKoF.js +1 -0
  584. zenml/zen_server/dashboard/assets/NumberBox-Dtp3J6g5.js +1 -0
  585. zenml/zen_server/dashboard/assets/Partials-CqZp5NMX.js +1 -0
  586. zenml/zen_server/dashboard/assets/PasswordChecker-B0nadgh6.js +1 -0
  587. zenml/zen_server/dashboard/assets/ProBadge-B4tRUYve.js +1 -0
  588. zenml/zen_server/dashboard/assets/ProCta-CZuP29Qz.js +1 -0
  589. zenml/zen_server/dashboard/assets/ProviderIcon-Bd7GUQ1_.js +1 -0
  590. zenml/zen_server/dashboard/assets/ProviderRadio-mstdqzsS.js +1 -0
  591. zenml/zen_server/dashboard/assets/RunSelector-CsruSB4i.js +1 -0
  592. zenml/zen_server/dashboard/assets/RunsBody-DxxtWVYz.js +1 -0
  593. zenml/zen_server/dashboard/assets/SearchField-D6tPxyqw.js +1 -0
  594. zenml/zen_server/dashboard/assets/SecretTooltip-CLzJIYW_.js +1 -0
  595. zenml/zen_server/dashboard/assets/SetPassword-Yn50ooBC.js +1 -0
  596. zenml/zen_server/dashboard/assets/StackList-U537qoYd.js +1 -0
  597. zenml/zen_server/dashboard/assets/Tabs-CNv-eTYM.js +1 -0
  598. zenml/zen_server/dashboard/assets/Tick-jEIevzVf.js +1 -0
  599. zenml/zen_server/dashboard/assets/UpdatePasswordSchemas-C16GW-kX.js +1 -0
  600. zenml/zen_server/dashboard/assets/UsageReason-Bf2tzhv1.js +1 -0
  601. zenml/zen_server/dashboard/assets/WizardFooter-D6i-AP1K.js +1 -0
  602. zenml/zen_server/dashboard/assets/acp-DOsXjFc7.webp +0 -0
  603. zenml/zen_server/dashboard/assets/adam-e-y0WnB_.webp +0 -0
  604. zenml/zen_server/dashboard/assets/alex-DcCuDHPg.webp +0 -0
  605. zenml/zen_server/dashboard/assets/all-pipeline-runs-query-DUti43aF.js +1 -0
  606. zenml/zen_server/dashboard/assets/baris-C0ZrZ10g.webp +0 -0
  607. zenml/zen_server/dashboard/assets/check-DloQpStc.js +1 -0
  608. zenml/zen_server/dashboard/assets/check-circle-jNbX5-sR.js +1 -0
  609. zenml/zen_server/dashboard/assets/chevron-down-6JyMkfjR.js +1 -0
  610. zenml/zen_server/dashboard/assets/chevron-right-double-D7ojK9Co.js +1 -0
  611. zenml/zen_server/dashboard/assets/cloud-squares-DeRLMopf.svg +43 -0
  612. zenml/zen_server/dashboard/assets/code-browser-CUFUIHfp.js +1 -0
  613. zenml/zen_server/dashboard/assets/code-snippets-CqONne41.js +13 -0
  614. zenml/zen_server/dashboard/assets/components-Br2ezRib.js +1 -0
  615. zenml/zen_server/dashboard/assets/connectors-video-C9qY4syJ.svg +21 -0
  616. zenml/zen_server/dashboard/assets/copy-C8XQA2Ug.js +1 -0
  617. zenml/zen_server/dashboard/assets/create-stack-Ch2WPs9U.js +1 -0
  618. zenml/zen_server/dashboard/assets/dates-3pMLCNrD.js +1 -0
  619. zenml/zen_server/dashboard/assets/delete-run-Byf9hTjA.js +1 -0
  620. zenml/zen_server/dashboard/assets/docker-BdA9vrnW.js +1 -0
  621. zenml/zen_server/dashboard/assets/dots-horizontal-otGBOSDJ.js +1 -0
  622. zenml/zen_server/dashboard/assets/flyte-Cj-xy_8I.svg +10 -0
  623. zenml/zen_server/dashboard/assets/form-schemas-BZqKBPBF.js +1 -0
  624. zenml/zen_server/dashboard/assets/gcp-CFtm4BA7.js +1 -0
  625. zenml/zen_server/dashboard/assets/hamza-NKKOZz1I.webp +0 -0
  626. zenml/zen_server/dashboard/assets/help-Cc9bBIJH.js +1 -0
  627. zenml/zen_server/dashboard/assets/index-CE0aQlv8.js +55 -0
  628. zenml/zen_server/dashboard/assets/index-CtdYkjUi.js +1 -0
  629. zenml/zen_server/dashboard/assets/index-CyBKZcpO.js +1 -0
  630. zenml/zen_server/dashboard/assets/index-DXvT1_Um.css +1 -0
  631. zenml/zen_server/dashboard/assets/index-Uu49AX48.js +1 -0
  632. zenml/zen_server/dashboard/assets/index-v6gQjDEo.js +1 -0
  633. zenml/zen_server/dashboard/assets/index.esm-Dy6Z9Ung.js +1 -0
  634. zenml/zen_server/dashboard/assets/inter-cyrillic-400-normal-BLGc9T1a.woff2 +0 -0
  635. zenml/zen_server/dashboard/assets/inter-cyrillic-400-normal-ZzOtrSSW.woff +0 -0
  636. zenml/zen_server/dashboard/assets/inter-cyrillic-500-normal-D4Vwzodn.woff2 +0 -0
  637. zenml/zen_server/dashboard/assets/inter-cyrillic-500-normal-DH2hs3aW.woff +0 -0
  638. zenml/zen_server/dashboard/assets/inter-cyrillic-600-normal-BGBWG807.woff2 +0 -0
  639. zenml/zen_server/dashboard/assets/inter-cyrillic-600-normal-BuzJQFbW.woff +0 -0
  640. zenml/zen_server/dashboard/assets/inter-cyrillic-ext-400-normal-BPnxn4xp.woff +0 -0
  641. zenml/zen_server/dashboard/assets/inter-cyrillic-ext-400-normal-Dc4VJyIJ.woff2 +0 -0
  642. zenml/zen_server/dashboard/assets/inter-cyrillic-ext-500-normal-BShVwWPj.woff2 +0 -0
  643. zenml/zen_server/dashboard/assets/inter-cyrillic-ext-500-normal-CUiC4oBV.woff +0 -0
  644. zenml/zen_server/dashboard/assets/inter-cyrillic-ext-600-normal-Bt9VVOA-.woff +0 -0
  645. zenml/zen_server/dashboard/assets/inter-cyrillic-ext-600-normal-CaqZN2hq.woff2 +0 -0
  646. zenml/zen_server/dashboard/assets/inter-greek-400-normal-BZzXV7-1.woff +0 -0
  647. zenml/zen_server/dashboard/assets/inter-greek-400-normal-DxZsaF_h.woff2 +0 -0
  648. zenml/zen_server/dashboard/assets/inter-greek-500-normal-CeQXL5ds.woff2 +0 -0
  649. zenml/zen_server/dashboard/assets/inter-greek-500-normal-d_eO-yCQ.woff +0 -0
  650. zenml/zen_server/dashboard/assets/inter-greek-600-normal-CwicyhtI.woff +0 -0
  651. zenml/zen_server/dashboard/assets/inter-greek-600-normal-Dhlb-90d.woff2 +0 -0
  652. zenml/zen_server/dashboard/assets/inter-greek-ext-400-normal-Bput3-QP.woff2 +0 -0
  653. zenml/zen_server/dashboard/assets/inter-greek-ext-400-normal-DCpCPQOf.woff +0 -0
  654. zenml/zen_server/dashboard/assets/inter-greek-ext-500-normal-B6guLgqG.woff2 +0 -0
  655. zenml/zen_server/dashboard/assets/inter-greek-ext-500-normal-M2hEX8vc.woff +0 -0
  656. zenml/zen_server/dashboard/assets/inter-greek-ext-600-normal-C9WLioJ8.woff +0 -0
  657. zenml/zen_server/dashboard/assets/inter-greek-ext-600-normal-Cnui8OiR.woff2 +0 -0
  658. zenml/zen_server/dashboard/assets/inter-latin-400-normal-BOOGhInR.woff2 +0 -0
  659. zenml/zen_server/dashboard/assets/inter-latin-400-normal-gitzw0hO.woff +0 -0
  660. zenml/zen_server/dashboard/assets/inter-latin-500-normal-D2bGa7uu.woff2 +0 -0
  661. zenml/zen_server/dashboard/assets/inter-latin-500-normal-deR1Tlfd.woff +0 -0
  662. zenml/zen_server/dashboard/assets/inter-latin-600-normal-B5cFAncS.woff +0 -0
  663. zenml/zen_server/dashboard/assets/inter-latin-600-normal-D273HNI0.woff2 +0 -0
  664. zenml/zen_server/dashboard/assets/inter-latin-ext-400-normal-C1t-h-pH.woff +0 -0
  665. zenml/zen_server/dashboard/assets/inter-latin-ext-400-normal-hnt3BR84.woff2 +0 -0
  666. zenml/zen_server/dashboard/assets/inter-latin-ext-500-normal-CIS2RHJS.woff2 +0 -0
  667. zenml/zen_server/dashboard/assets/inter-latin-ext-500-normal-UMdmhHu2.woff +0 -0
  668. zenml/zen_server/dashboard/assets/inter-latin-ext-600-normal-BnYJhD27.woff2 +0 -0
  669. zenml/zen_server/dashboard/assets/inter-latin-ext-600-normal-CAF0vJDd.woff +0 -0
  670. zenml/zen_server/dashboard/assets/inter-vietnamese-400-normal-BUNmGMP1.woff +0 -0
  671. zenml/zen_server/dashboard/assets/inter-vietnamese-400-normal-DMkecbls.woff2 +0 -0
  672. zenml/zen_server/dashboard/assets/inter-vietnamese-500-normal-DOriooB6.woff2 +0 -0
  673. zenml/zen_server/dashboard/assets/inter-vietnamese-500-normal-DQPw2Hwd.woff +0 -0
  674. zenml/zen_server/dashboard/assets/inter-vietnamese-600-normal-Cc8MFFhd.woff2 +0 -0
  675. zenml/zen_server/dashboard/assets/inter-vietnamese-600-normal-Cm6aH8_k.woff +0 -0
  676. zenml/zen_server/dashboard/assets/key-icon-aH-QIa5R.js +1 -0
  677. zenml/zen_server/dashboard/assets/kubernetes-B2wmAJ1d.js +1 -0
  678. zenml/zen_server/dashboard/assets/layout-BtHBmE4w.js +1 -0
  679. zenml/zen_server/dashboard/assets/link-external-b9AXw_sW.js +1 -0
  680. zenml/zen_server/dashboard/assets/login-command-CkqxPtV3.js +1 -0
  681. zenml/zen_server/dashboard/assets/login-mutation-DNDVp_2H.js +1 -0
  682. zenml/zen_server/dashboard/assets/logs-WMSM52RF.js +1 -0
  683. zenml/zen_server/dashboard/assets/mcp-Cb1aMeoq.webp +0 -0
  684. zenml/zen_server/dashboard/assets/metaflow-weOkWNyT.svg +10 -0
  685. zenml/zen_server/dashboard/assets/not-found-Bmup4ctE.js +1 -0
  686. zenml/zen_server/dashboard/assets/package-C6uypY4h.js +1 -0
  687. zenml/zen_server/dashboard/assets/page--XLMzHrn.js +1 -0
  688. zenml/zen_server/dashboard/assets/page-ANYGfEUL.js +1 -0
  689. zenml/zen_server/dashboard/assets/page-B5Sr8pib.js +1 -0
  690. zenml/zen_server/dashboard/assets/page-BC27C_OI.js +2 -0
  691. zenml/zen_server/dashboard/assets/page-BNxYrN0q.js +1 -0
  692. zenml/zen_server/dashboard/assets/page-BYJfqgLN.js +1 -0
  693. zenml/zen_server/dashboard/assets/page-B_0XkV48.js +1 -0
  694. zenml/zen_server/dashboard/assets/page-BrmJp1Wt.js +1 -0
  695. zenml/zen_server/dashboard/assets/page-C2nU3Gxn.js +1 -0
  696. zenml/zen_server/dashboard/assets/page-C70wZtV2.js +1 -0
  697. zenml/zen_server/dashboard/assets/page-CHRn1fQm.js +1 -0
  698. zenml/zen_server/dashboard/assets/page-CWr96ZKN.js +1 -0
  699. zenml/zen_server/dashboard/assets/page-CXAbSyp9.js +1 -0
  700. zenml/zen_server/dashboard/assets/page-CaeI9ptC.js +1 -0
  701. zenml/zen_server/dashboard/assets/page-Cc8ZEuj4.js +1 -0
  702. zenml/zen_server/dashboard/assets/page-CltCNL0T.js +1 -0
  703. zenml/zen_server/dashboard/assets/page-CmlYj7Nl.js +1 -0
  704. zenml/zen_server/dashboard/assets/page-D6Ev5P8V.js +1 -0
  705. zenml/zen_server/dashboard/assets/page-D9Oh05fl.js +1 -0
  706. zenml/zen_server/dashboard/assets/page-DGlm1RVc.js +1 -0
  707. zenml/zen_server/dashboard/assets/page-DN4BVIOL.js +1 -0
  708. zenml/zen_server/dashboard/assets/page-Dif8CWyZ.js +1 -0
  709. zenml/zen_server/dashboard/assets/page-DlIi5ThM.js +1 -0
  710. zenml/zen_server/dashboard/assets/page-DoW7YxTu.js +1 -0
  711. zenml/zen_server/dashboard/assets/page-Dth9X1Ih.js +1 -0
  712. zenml/zen_server/dashboard/assets/page-DweqqCkF.js +1 -0
  713. zenml/zen_server/dashboard/assets/page-DyOJ_pq3.js +1 -0
  714. zenml/zen_server/dashboard/assets/page-Hn8q9iJZ.js +1 -0
  715. zenml/zen_server/dashboard/assets/page-IhckKFnD.js +6 -0
  716. zenml/zen_server/dashboard/assets/page-LyZ_l8vR.js +1 -0
  717. zenml/zen_server/dashboard/assets/page-PamGpk0j.js +1 -0
  718. zenml/zen_server/dashboard/assets/page-PxOWfKgF.js +2 -0
  719. zenml/zen_server/dashboard/assets/persist-DeXRG61d.js +1 -0
  720. zenml/zen_server/dashboard/assets/persist-vP0-Xl4f.js +1 -0
  721. zenml/zen_server/dashboard/assets/plus-tf1V2hTJ.js +1 -0
  722. zenml/zen_server/dashboard/assets/refresh-BjOeWlEq.js +1 -0
  723. zenml/zen_server/dashboard/assets/repos-video-D8kpu60k.svg +9 -0
  724. zenml/zen_server/dashboard/assets/rocket-DjT2cDvG.js +1 -0
  725. zenml/zen_server/dashboard/assets/service-DH_oUqQj.js +2 -0
  726. zenml/zen_server/dashboard/assets/settings_preview-0JLrRgHP.webp +0 -0
  727. zenml/zen_server/dashboard/assets/sharedSchema-Bw1_Wa7l.js +14 -0
  728. zenml/zen_server/dashboard/assets/stack-detail-query-B_0R_fd6.js +1 -0
  729. zenml/zen_server/dashboard/assets/stefan-B08Ftbba.webp +0 -0
  730. zenml/zen_server/dashboard/assets/templates-1S_8WeSK.webp +0 -0
  731. zenml/zen_server/dashboard/assets/tick-circle-BEX_Tp4v.js +1 -0
  732. zenml/zen_server/dashboard/assets/tour-cover-BYfeen6M.webp +0 -0
  733. zenml/zen_server/dashboard/assets/trash-arLUMWMS.js +1 -0
  734. zenml/zen_server/dashboard/assets/update-server-settings-mutation-D9qYhfaN.js +1 -0
  735. zenml/zen_server/dashboard/assets/upgrade-form-CwRHBuXB.webp +0 -0
  736. zenml/zen_server/dashboard/assets/url-Dh93fvh0.js +1 -0
  737. zenml/zen_server/dashboard/assets/zod-BwEbpOxH.js +1 -0
  738. zenml/zen_server/dashboard/index.html +19 -1
  739. zenml/zen_server/deploy/__init__.py +7 -16
  740. zenml/zen_server/deploy/base_provider.py +49 -78
  741. zenml/zen_server/deploy/{local → daemon}/__init__.py +3 -3
  742. zenml/zen_server/deploy/{local/local_provider.py → daemon/daemon_provider.py} +48 -66
  743. zenml/zen_server/deploy/{local/local_zen_server.py → daemon/daemon_zen_server.py} +78 -62
  744. zenml/zen_server/deploy/deployer.py +94 -175
  745. zenml/zen_server/deploy/deployment.py +23 -17
  746. zenml/zen_server/deploy/docker/docker_provider.py +15 -31
  747. zenml/zen_server/deploy/docker/docker_zen_server.py +30 -35
  748. zenml/zen_server/deploy/helm/Chart.yaml +1 -1
  749. zenml/zen_server/deploy/helm/README.md +3 -13
  750. zenml/zen_server/deploy/helm/templates/NOTES.txt +2 -8
  751. zenml/zen_server/deploy/helm/templates/_environment.tpl +129 -3
  752. zenml/zen_server/deploy/helm/templates/server-db-job.yaml +45 -18
  753. zenml/zen_server/deploy/helm/templates/server-db-pvc.yaml +25 -0
  754. zenml/zen_server/deploy/helm/templates/server-deployment.yaml +22 -6
  755. zenml/zen_server/deploy/helm/templates/server-secret.yaml +2 -12
  756. zenml/zen_server/deploy/helm/values.yaml +134 -21
  757. zenml/zen_server/exceptions.py +20 -1
  758. zenml/zen_server/feature_gate/__init__.py +13 -0
  759. zenml/zen_server/feature_gate/endpoint_utils.py +61 -0
  760. zenml/zen_server/feature_gate/feature_gate_interface.py +49 -0
  761. zenml/zen_server/feature_gate/zenml_cloud_feature_gate.py +125 -0
  762. zenml/zen_server/jwt.py +48 -31
  763. zenml/zen_server/rate_limit.py +200 -0
  764. zenml/zen_server/rbac/endpoint_utils.py +92 -9
  765. zenml/zen_server/rbac/models.py +21 -17
  766. zenml/zen_server/rbac/rbac_sql_zen_store.py +175 -0
  767. zenml/zen_server/rbac/utils.py +71 -30
  768. zenml/zen_server/rbac/zenml_cloud_rbac.py +13 -188
  769. zenml/zen_server/routers/actions_endpoints.py +324 -0
  770. zenml/zen_server/routers/artifact_version_endpoints.py +28 -2
  771. zenml/zen_server/routers/auth_endpoints.py +205 -110
  772. zenml/zen_server/routers/code_repositories_endpoints.py +1 -0
  773. zenml/zen_server/routers/devices_endpoints.py +56 -49
  774. zenml/zen_server/routers/event_source_endpoints.py +327 -0
  775. zenml/zen_server/routers/logs_endpoints.py +66 -0
  776. zenml/zen_server/routers/model_versions_endpoints.py +59 -0
  777. zenml/zen_server/routers/models_endpoints.py +8 -1
  778. zenml/zen_server/routers/pipeline_builds_endpoints.py +6 -1
  779. zenml/zen_server/routers/pipeline_deployments_endpoints.py +35 -0
  780. zenml/zen_server/routers/pipelines_endpoints.py +19 -32
  781. zenml/zen_server/routers/plugin_endpoints.py +107 -0
  782. zenml/zen_server/routers/run_templates_endpoints.py +212 -0
  783. zenml/zen_server/routers/runs_endpoints.py +91 -32
  784. zenml/zen_server/routers/schedule_endpoints.py +1 -0
  785. zenml/zen_server/routers/secrets_endpoints.py +4 -2
  786. zenml/zen_server/routers/server_endpoints.py +186 -4
  787. zenml/zen_server/routers/service_connectors_endpoints.py +56 -0
  788. zenml/zen_server/routers/service_endpoints.py +180 -0
  789. zenml/zen_server/routers/stack_components_endpoints.py +2 -1
  790. zenml/zen_server/routers/stack_deployment_endpoints.py +164 -0
  791. zenml/zen_server/routers/steps_endpoints.py +21 -12
  792. zenml/zen_server/routers/triggers_endpoints.py +336 -0
  793. zenml/zen_server/routers/users_endpoints.py +280 -45
  794. zenml/zen_server/routers/webhook_endpoints.py +127 -0
  795. zenml/zen_server/routers/workspaces_endpoints.py +220 -185
  796. zenml/zen_server/secure_headers.py +120 -0
  797. zenml/{new → zen_server/template_execution}/__init__.py +1 -1
  798. zenml/zen_server/template_execution/runner_entrypoint_configuration.py +42 -0
  799. zenml/zen_server/template_execution/utils.py +474 -0
  800. zenml/zen_server/template_execution/workload_manager_interface.py +92 -0
  801. zenml/zen_server/utils.py +310 -74
  802. zenml/zen_server/zen_server_api.py +294 -52
  803. zenml/zen_stores/base_zen_store.py +71 -57
  804. zenml/zen_stores/migrations/alembic.py +22 -9
  805. zenml/zen_stores/migrations/env.py +2 -2
  806. zenml/zen_stores/migrations/utils.py +731 -0
  807. zenml/zen_stores/migrations/versions/0.21.0_release.py +0 -1
  808. zenml/zen_stores/migrations/versions/0.21.1_release.py +0 -1
  809. zenml/zen_stores/migrations/versions/0.22.0_release.py +0 -1
  810. zenml/zen_stores/migrations/versions/0.23.0_release.py +0 -1
  811. zenml/zen_stores/migrations/versions/0.30.0_release.py +0 -1
  812. zenml/zen_stores/migrations/versions/0.31.0_release.py +0 -1
  813. zenml/zen_stores/migrations/versions/0.31.1_release.py +0 -1
  814. zenml/zen_stores/migrations/versions/0.32.0_release.py +0 -1
  815. zenml/zen_stores/migrations/versions/0.32.1_release.py +0 -1
  816. zenml/zen_stores/migrations/versions/0.33.0_release.py +0 -1
  817. zenml/zen_stores/migrations/versions/0.34.0_release.py +0 -1
  818. zenml/zen_stores/migrations/versions/0.35.0_release.py +0 -1
  819. zenml/zen_stores/migrations/versions/0.35.1_release.py +0 -1
  820. zenml/zen_stores/migrations/versions/0.36.0_release.py +0 -1
  821. zenml/zen_stores/migrations/versions/0.36.1_release.py +0 -1
  822. zenml/zen_stores/migrations/versions/0.37.0_release.py +0 -1
  823. zenml/zen_stores/migrations/versions/0.38.0_release.py +0 -1
  824. zenml/zen_stores/migrations/versions/0.39.0_release.py +0 -1
  825. zenml/zen_stores/migrations/versions/0.39.1_release.py +0 -1
  826. zenml/zen_stores/migrations/versions/0.40.0_release.py +0 -1
  827. zenml/zen_stores/migrations/versions/0.40.1_release.py +0 -1
  828. zenml/zen_stores/migrations/versions/0.40.2_release.py +0 -1
  829. zenml/zen_stores/migrations/versions/0.40.3_release.py +0 -1
  830. zenml/zen_stores/migrations/versions/0.41.0_release.py +0 -1
  831. zenml/zen_stores/migrations/versions/0.42.0_release.py +0 -1
  832. zenml/zen_stores/migrations/versions/0.42.1_release.py +0 -1
  833. zenml/zen_stores/migrations/versions/0.43.0_release.py +0 -1
  834. zenml/zen_stores/migrations/versions/0.44.0_release.py +0 -1
  835. zenml/zen_stores/migrations/versions/0.44.1_release.py +0 -1
  836. zenml/zen_stores/migrations/versions/0.44.2_release.py +0 -1
  837. zenml/zen_stores/migrations/versions/0.44.3_release.py +0 -1
  838. zenml/zen_stores/migrations/versions/0.45.0_release.py +0 -1
  839. zenml/zen_stores/migrations/versions/0.45.1_release_0_45_1.py +0 -1
  840. zenml/zen_stores/migrations/versions/0.45.2_release.py +0 -1
  841. zenml/zen_stores/migrations/versions/0.45.3_release.py +0 -1
  842. zenml/zen_stores/migrations/versions/0.45.4_release.py +0 -1
  843. zenml/zen_stores/migrations/versions/0.45.5_release.py +0 -1
  844. zenml/zen_stores/migrations/versions/0.45.6_release.py +0 -1
  845. zenml/zen_stores/migrations/versions/0.46.0_release.py +0 -1
  846. zenml/zen_stores/migrations/versions/0.46.1_release.py +0 -1
  847. zenml/zen_stores/migrations/versions/0.47.0_release.py +0 -1
  848. zenml/zen_stores/migrations/versions/0.50.0_release.py +0 -1
  849. zenml/zen_stores/migrations/versions/0.51.0_release.py +0 -1
  850. zenml/zen_stores/migrations/versions/0.52.0_release.py +0 -1
  851. zenml/zen_stores/migrations/versions/0.53.0_release.py +0 -1
  852. zenml/zen_stores/migrations/versions/0.53.1_release.py +0 -1
  853. zenml/zen_stores/migrations/versions/0.54.0_release.py +0 -1
  854. zenml/zen_stores/migrations/versions/0.54.1_release.py +0 -1
  855. zenml/zen_stores/migrations/versions/0.55.0_release.py +23 -0
  856. zenml/zen_stores/migrations/versions/0.55.1_release.py +23 -0
  857. zenml/zen_stores/migrations/versions/0.55.2_release.py +23 -0
  858. zenml/zen_stores/migrations/versions/0.55.3_release.py +23 -0
  859. zenml/zen_stores/migrations/versions/0.55.4_release.py +23 -0
  860. zenml/zen_stores/migrations/versions/0.55.5_release.py +23 -0
  861. zenml/zen_stores/migrations/versions/0.56.0_release.py +23 -0
  862. zenml/zen_stores/migrations/versions/0.56.1_release.py +23 -0
  863. zenml/zen_stores/migrations/versions/0.56.2_release.py +23 -0
  864. zenml/zen_stores/migrations/versions/0.56.3_release.py +23 -0
  865. zenml/zen_stores/migrations/versions/0.56.4_release.py +23 -0
  866. zenml/zen_stores/migrations/versions/0.57.0.rc1_release.py +23 -0
  867. zenml/zen_stores/migrations/versions/0.57.0.rc2_release.py +23 -0
  868. zenml/zen_stores/migrations/versions/0.57.0_release.py +23 -0
  869. zenml/zen_stores/migrations/versions/0.57.1_release.py +23 -0
  870. zenml/zen_stores/migrations/versions/0.58.0_release.py +23 -0
  871. zenml/zen_stores/migrations/versions/0.58.1_release.py +23 -0
  872. zenml/zen_stores/migrations/versions/0.58.2_release.py +23 -0
  873. zenml/zen_stores/migrations/versions/0.60.0_release.py +23 -0
  874. zenml/zen_stores/migrations/versions/0.61.0_release.py +23 -0
  875. zenml/zen_stores/migrations/versions/0.62.0_release.py +23 -0
  876. zenml/zen_stores/migrations/versions/0.63.0_release.py +23 -0
  877. zenml/zen_stores/migrations/versions/0.64.0_release.py +23 -0
  878. zenml/zen_stores/migrations/versions/0.65.0_release.py +23 -0
  879. zenml/zen_stores/migrations/versions/0.66.0_release.py +23 -0
  880. zenml/zen_stores/migrations/versions/0.67.0_release.py +23 -0
  881. zenml/zen_stores/migrations/versions/0.68.0_release.py +23 -0
  882. zenml/zen_stores/migrations/versions/0.68.1_release.py +23 -0
  883. zenml/zen_stores/migrations/versions/0.70.0_release.py +23 -0
  884. zenml/zen_stores/migrations/versions/0.71.0_release.py +23 -0
  885. zenml/zen_stores/migrations/versions/0.72.0_release.py +23 -0
  886. zenml/zen_stores/migrations/versions/026d4577b6a0_add_code_path.py +39 -0
  887. zenml/zen_stores/migrations/versions/03742aa7fdd7_add_secrets.py +1 -0
  888. zenml/zen_stores/migrations/versions/0701da9951a0_added_service_table.py +94 -0
  889. zenml/zen_stores/migrations/versions/0b06faa59c93_add_service_connectors.py +1 -0
  890. zenml/zen_stores/migrations/versions/0d707865f404_adding_labels_to_stacks.py +30 -0
  891. zenml/zen_stores/migrations/versions/0e4735b23577_increase_pipeline_spec_field_length.py +1 -0
  892. zenml/zen_stores/migrations/versions/1041bc644e0d_remove_secrets_manager.py +6 -3
  893. zenml/zen_stores/migrations/versions/10a907dad202_delete_mlmd_tables.py +2 -1
  894. zenml/zen_stores/migrations/versions/14d687c8fa1c_rename_model_config_to_model_version.py +1 -0
  895. zenml/zen_stores/migrations/versions/19f27d5b234e_add_build_and_deployment_tables.py +1 -0
  896. zenml/zen_stores/migrations/versions/1a9a9d2a836d_admin_users.py +56 -0
  897. zenml/zen_stores/migrations/versions/1ac1b9c04da1_make_secrets_values_optional.py +1 -0
  898. zenml/zen_stores/migrations/versions/1cb6477f72d6_move_artifact_save_type.py +99 -0
  899. zenml/zen_stores/migrations/versions/1d74e596abb8_add_run_once_start_time_to_schedule.py +36 -0
  900. zenml/zen_stores/migrations/versions/1d8f30c54477_migrate_to_new_.py +124 -0
  901. zenml/zen_stores/migrations/versions/248dfd320b68_update_size_of_flavor_config_schema.py +1 -0
  902. zenml/zen_stores/migrations/versions/25155145c545_separate_actions_and_triggers.py +228 -0
  903. zenml/zen_stores/migrations/versions/26351d482b9e_add_step_run_unique_constraint.py +37 -0
  904. zenml/zen_stores/migrations/versions/26b776ad583e_redesign_artifacts.py +9 -10
  905. zenml/zen_stores/migrations/versions/2d201872e23c_remove_db_dependency_loop.py +29 -0
  906. zenml/zen_stores/migrations/versions/37835ce041d2_optimizing_database.py +4 -3
  907. zenml/zen_stores/migrations/versions/389046140cad_data_versioning.py +1 -0
  908. zenml/zen_stores/migrations/versions/3944116bbd56_rename_project_to_workspace.py +1 -0
  909. zenml/zen_stores/migrations/versions/3b68abe58f44_add_model_watchtower_entities.py +1 -0
  910. zenml/zen_stores/migrations/versions/3c5a367730c2_add_environment_info_to_runs.py +1 -0
  911. zenml/zen_stores/migrations/versions/3dcc5d20e82f_add_last_user_activity.py +51 -0
  912. zenml/zen_stores/migrations/versions/43a86093b60e_add_labels_for_stack_components.py +1 -0
  913. zenml/zen_stores/migrations/versions/46506f72f0ed_add_server_settings.py +123 -0
  914. zenml/zen_stores/migrations/versions/479103df60b6_add_triggers.py +162 -0
  915. zenml/zen_stores/migrations/versions/4a3087070f4e_add_step_source_code.py +1 -0
  916. zenml/zen_stores/migrations/versions/4c41c0ca42db_add_code_repository_table.py +1 -0
  917. zenml/zen_stores/migrations/versions/4d688d8f7aff_rename_model_version_to_model.py +1 -0
  918. zenml/zen_stores/migrations/versions/4e1972485075_endpoint_artifact_deployment_artifact.py +1 -0
  919. zenml/zen_stores/migrations/versions/4f66af55fbb9_rename_model_config_model_to_model_.py +1 -0
  920. zenml/zen_stores/migrations/versions/5330ba58bf20_rename_tables_and_foreign_keys.py +8 -9
  921. zenml/zen_stores/migrations/versions/5994f9ad0489_introduce_role_permissions.py +4 -2
  922. zenml/zen_stores/migrations/versions/5cc3f41cf048_add_save_models_to_registry.py +1 -0
  923. zenml/zen_stores/migrations/versions/6119cd9b93c2_tags_table.py +1 -0
  924. zenml/zen_stores/migrations/versions/623a234c11f5_add_sdk_docs_url_to_flavors.py +1 -0
  925. zenml/zen_stores/migrations/versions/6917bce75069_add_pipeline_run_unique_constraint.py +5 -4
  926. zenml/zen_stores/migrations/versions/6a28c4fd0ef2_add_caching_info.py +1 -0
  927. zenml/zen_stores/migrations/versions/6f707b385dc1_fix_model_artifacts.py +1 -0
  928. zenml/zen_stores/migrations/versions/722392c91006_make_is_service_account_mandatory.py +1 -0
  929. zenml/zen_stores/migrations/versions/72675226b2de_unique_users.py +31 -0
  930. zenml/zen_stores/migrations/versions/72722dee4686_track_server_version.py +1 -0
  931. zenml/zen_stores/migrations/versions/7280c14811d6_use_text_type.py +1 -0
  932. zenml/zen_stores/migrations/versions/728c6369cfaa_add_name_column_to_input_artifact_pk.py +4 -2
  933. zenml/zen_stores/migrations/versions/729263e47b55_fix_external_input_artifacts.py +1 -0
  934. zenml/zen_stores/migrations/versions/743ec82b1b3c_update_size_of_build_images.py +3 -2
  935. zenml/zen_stores/migrations/versions/7500f434b71c_remove_shared_columns.py +4 -2
  936. zenml/zen_stores/migrations/versions/76a7b9451ccd_add_build_template_deployment_id.py +52 -0
  937. zenml/zen_stores/migrations/versions/7834208cc3f6_artifact_project_scoping.py +9 -7
  938. zenml/zen_stores/migrations/versions/7b651bf6822e_track_secrets_in_db.py +7 -7
  939. zenml/zen_stores/migrations/versions/7d1919bb1ef0_add_run_templates.py +100 -0
  940. zenml/zen_stores/migrations/versions/7e4a481d17f7_add_identity_table.py +3 -2
  941. zenml/zen_stores/migrations/versions/7f603e583dd7_fixed_migration.py +2 -1
  942. zenml/zen_stores/migrations/versions/86fa52918b54_remove_teams_and_roles.py +1 -0
  943. zenml/zen_stores/migrations/versions/8a64fbfecda0_add_num_outputs_to_run_step.py +1 -0
  944. zenml/zen_stores/migrations/versions/8ed03137cacc_polymorthic_run_metadata.py +1 -0
  945. zenml/zen_stores/migrations/versions/904464ea4041_add_pipeline_model_run_unique_constraints.py +192 -0
  946. zenml/zen_stores/migrations/versions/909550c7c4da_remove_user_hub_token.py +36 -0
  947. zenml/zen_stores/migrations/versions/93cbda80a732_add_service_accounts.py +1 -0
  948. zenml/zen_stores/migrations/versions/979eff8fc4b1_add_code_repo_description_and_logo_url.py +1 -0
  949. zenml/zen_stores/migrations/versions/9971237fa937_artifact_visualizations.py +1 -0
  950. zenml/zen_stores/migrations/versions/9d8020441014_increase_step_configuration_length.py +1 -0
  951. zenml/zen_stores/migrations/versions/a1237ba94fd8_add_model_version_producer_run_unique_.py +68 -0
  952. zenml/zen_stores/migrations/versions/a39c4184c8ce_remove_secrets_manager_flavors.py +3 -2
  953. zenml/zen_stores/migrations/versions/a91762e6be36_artifact_version_table.py +5 -4
  954. zenml/zen_stores/migrations/versions/ade72effebaf_added_logs_table.py +1 -0
  955. zenml/zen_stores/migrations/versions/alembic_start.py +2 -1
  956. zenml/zen_stores/migrations/versions/b4eccf34dfa3_add_hub_token_to_user_model.py +1 -0
  957. zenml/zen_stores/migrations/versions/b4fca5241eea_migrate_onboarding_state.py +167 -0
  958. zenml/zen_stores/migrations/versions/b557b2871693_update_step_run_input_types.py +33 -0
  959. zenml/zen_stores/migrations/versions/b59aa68fdb1f_simplify_pipelines.py +139 -0
  960. zenml/zen_stores/migrations/versions/b73bc71f1106_remove_component_spec_path.py +36 -0
  961. zenml/zen_stores/migrations/versions/bf2120261b5a_add_configured_model_version_id.py +74 -0
  962. zenml/zen_stores/migrations/versions/c1b18cec3a48_increase_length_on_flavor_config_schema.py +1 -0
  963. zenml/zen_stores/migrations/versions/c22561cbb3a9_add_artifact_unique_constraints.py +86 -0
  964. zenml/zen_stores/migrations/versions/cc269488e5a9_separate_run_metadata.py +135 -0
  965. zenml/zen_stores/migrations/versions/cc9894cb58aa_add_user_metadata.py +41 -0
  966. zenml/zen_stores/migrations/versions/ccd68b7825ae_add_status_to_pipeline_and_step_run.py +1 -0
  967. zenml/zen_stores/migrations/versions/d02b3d3464cf_add_orchestrator_run_id_column.py +1 -0
  968. zenml/zen_stores/migrations/versions/d26471b6fe8f_update_build_filtering.py +1 -0
  969. zenml/zen_stores/migrations/versions/d7b3acf9aa46_create_schedule_table.py +1 -0
  970. zenml/zen_stores/migrations/versions/e1d66d91a099_add_stack_and_component_spec_paths_to_.py +1 -0
  971. zenml/zen_stores/migrations/versions/e5225281b4d3_add_connector_skew_tolerance.py +1 -0
  972. zenml/zen_stores/migrations/versions/e65aa6708ff7_pipeline_versioning.py +1 -0
  973. zenml/zen_stores/migrations/versions/ec0d785ca296_create_run_metadata_table.py +1 -0
  974. zenml/zen_stores/migrations/versions/ec6307720f92_simplify_model_version_links.py +119 -0
  975. zenml/zen_stores/migrations/versions/f3b3964e3a0f_add_oauth_devices.py +1 -0
  976. zenml/zen_stores/migrations/versions/f49904a80aa7_increase_length_of_artifact_table_sources.py +1 -0
  977. zenml/zen_stores/migrations/versions/fbd7f18ced1e_increase_step_run_field_lengths.py +5 -4
  978. zenml/zen_stores/rest_zen_store.py +1315 -304
  979. zenml/zen_stores/schemas/__init__.py +22 -3
  980. zenml/zen_stores/schemas/action_schemas.py +192 -0
  981. zenml/zen_stores/schemas/api_key_schemas.py +23 -10
  982. zenml/zen_stores/schemas/artifact_schemas.py +112 -49
  983. zenml/zen_stores/schemas/artifact_visualization_schemas.py +17 -8
  984. zenml/zen_stores/schemas/base_schemas.py +27 -0
  985. zenml/zen_stores/schemas/code_repository_schemas.py +25 -10
  986. zenml/zen_stores/schemas/component_schemas.py +74 -11
  987. zenml/zen_stores/schemas/constants.py +16 -0
  988. zenml/zen_stores/schemas/device_schemas.py +29 -15
  989. zenml/zen_stores/schemas/event_source_schemas.py +188 -0
  990. zenml/zen_stores/schemas/flavor_schemas.py +19 -9
  991. zenml/zen_stores/schemas/logs_schemas.py +12 -6
  992. zenml/zen_stores/schemas/model_schemas.py +192 -139
  993. zenml/zen_stores/schemas/pipeline_build_schemas.py +16 -16
  994. zenml/zen_stores/schemas/pipeline_deployment_schemas.py +58 -17
  995. zenml/zen_stores/schemas/pipeline_run_schemas.py +170 -35
  996. zenml/zen_stores/schemas/pipeline_schemas.py +51 -33
  997. zenml/zen_stores/schemas/run_metadata_schemas.py +28 -78
  998. zenml/zen_stores/schemas/run_template_schemas.py +267 -0
  999. zenml/zen_stores/schemas/schedule_schema.py +15 -5
  1000. zenml/zen_stores/schemas/secret_schemas.py +18 -10
  1001. zenml/zen_stores/schemas/server_settings_schemas.py +129 -0
  1002. zenml/zen_stores/schemas/service_connector_schemas.py +13 -6
  1003. zenml/zen_stores/schemas/service_schemas.py +258 -0
  1004. zenml/zen_stores/schemas/stack_schemas.py +23 -6
  1005. zenml/zen_stores/schemas/step_run_schemas.py +132 -41
  1006. zenml/zen_stores/schemas/tag_schemas.py +31 -50
  1007. zenml/zen_stores/schemas/trigger_schemas.py +316 -0
  1008. zenml/zen_stores/schemas/user_schemas.py +66 -23
  1009. zenml/zen_stores/schemas/utils.py +112 -0
  1010. zenml/zen_stores/schemas/workspace_schemas.py +36 -19
  1011. zenml/zen_stores/secrets_stores/aws_secrets_store.py +41 -32
  1012. zenml/zen_stores/secrets_stores/azure_secrets_store.py +20 -23
  1013. zenml/zen_stores/secrets_stores/base_secrets_store.py +80 -12
  1014. zenml/zen_stores/secrets_stores/gcp_secrets_store.py +42 -33
  1015. zenml/zen_stores/secrets_stores/hashicorp_secrets_store.py +7 -11
  1016. zenml/zen_stores/secrets_stores/secrets_store_interface.py +1 -0
  1017. zenml/zen_stores/secrets_stores/service_connector_secrets_store.py +15 -8
  1018. zenml/zen_stores/secrets_stores/sql_secrets_store.py +8 -9
  1019. zenml/zen_stores/sql_zen_store.py +4062 -799
  1020. zenml/zen_stores/template_utils.py +263 -0
  1021. zenml/zen_stores/zen_store_interface.py +614 -44
  1022. zenml_nightly-0.72.0.dev20250115.dist-info/METADATA +484 -0
  1023. zenml_nightly-0.72.0.dev20250115.dist-info/RECORD +1292 -0
  1024. {zenml_nightly-0.54.1.dev20240123.dist-info → zenml_nightly-0.72.0.dev20250115.dist-info}/WHEEL +1 -1
  1025. CLA.md +0 -110
  1026. CODE-OF-CONDUCT.md +0 -132
  1027. CONTRIBUTING.md +0 -260
  1028. README.md +0 -304
  1029. RELEASE_NOTES.md +0 -3882
  1030. ROADMAP.md +0 -5
  1031. SECURITY.md +0 -15
  1032. zenml/_hub/client.py +0 -285
  1033. zenml/_hub/constants.py +0 -21
  1034. zenml/_hub/utils.py +0 -80
  1035. zenml/api.py +0 -61
  1036. zenml/cli/hub.py +0 -1115
  1037. zenml/cli/stack_recipes.py +0 -469
  1038. zenml/integrations/gcp/google_cloud_function.py +0 -187
  1039. zenml/integrations/gcp/google_cloud_scheduler.py +0 -83
  1040. zenml/integrations/gcp/orchestrators/vertex_scheduler/main.py +0 -91
  1041. zenml/integrations/gcp/orchestrators/vertex_scheduler/requirements.txt +0 -2
  1042. zenml/integrations/kserve/__init__.py +0 -57
  1043. zenml/integrations/kserve/custom_deployer/zenml_custom_model.py +0 -175
  1044. zenml/integrations/kserve/flavors/kserve_model_deployer_flavor.py +0 -137
  1045. zenml/integrations/kserve/model_deployers/kserve_model_deployer.py +0 -1003
  1046. zenml/integrations/kserve/secret_schemas/secret_schemas.py +0 -65
  1047. zenml/integrations/kserve/services/kserve_deployment.py +0 -596
  1048. zenml/integrations/kserve/steps/__init__.py +0 -22
  1049. zenml/integrations/kserve/steps/kserve_deployer.py +0 -472
  1050. zenml/integrations/kserve/steps/kserve_step_utils.py +0 -293
  1051. zenml/integrations/kubeflow/utils.py +0 -96
  1052. zenml/lineage_graph/lineage_graph.py +0 -244
  1053. zenml/lineage_graph/node/artifact_node.py +0 -52
  1054. zenml/lineage_graph/node/step_node.py +0 -41
  1055. zenml/models/v2/base/internal.py +0 -37
  1056. zenml/models/v2/base/update.py +0 -40
  1057. zenml/models/v2/misc/hub_plugin_models.py +0 -79
  1058. zenml/new/pipelines/deserialization_utils.py +0 -291
  1059. zenml/new/pipelines/model_utils.py +0 -72
  1060. zenml/new/pipelines/pipeline_decorator.py +0 -109
  1061. zenml/new/steps/step_decorator.py +0 -160
  1062. zenml/pipelines/base_pipeline.py +0 -274
  1063. zenml/post_execution/pipeline.py +0 -58
  1064. zenml/post_execution/pipeline_run.py +0 -55
  1065. zenml/services/service_registry.py +0 -214
  1066. zenml/services/terraform/__init__.py +0 -14
  1067. zenml/services/terraform/terraform_service.py +0 -441
  1068. zenml/steps/step_environment.py +0 -108
  1069. zenml/steps/step_output.py +0 -36
  1070. zenml/utils/mlstacks_utils.py +0 -635
  1071. zenml/utils/terraform_utils.py +0 -42
  1072. zenml/zen_server/dashboard/_redirects +0 -1
  1073. zenml/zen_server/dashboard/asset-manifest.json +0 -131
  1074. zenml/zen_server/dashboard/manifest.json +0 -25
  1075. zenml/zen_server/dashboard/precache-manifest.c139638dcc4d9d3425353266447a2fad.js +0 -462
  1076. zenml/zen_server/dashboard/robots.txt +0 -2
  1077. zenml/zen_server/dashboard/service-worker.js +0 -39
  1078. zenml/zen_server/dashboard/static/css/2.5b37d44a.chunk.css +0 -16
  1079. zenml/zen_server/dashboard/static/css/2.5b37d44a.chunk.css.map +0 -1
  1080. zenml/zen_server/dashboard/static/css/main.77e46c35.chunk.css +0 -2
  1081. zenml/zen_server/dashboard/static/css/main.77e46c35.chunk.css.map +0 -1
  1082. zenml/zen_server/dashboard/static/js/2.bb4cef22.chunk.js +0 -3
  1083. zenml/zen_server/dashboard/static/js/2.bb4cef22.chunk.js.LICENSE.txt +0 -95
  1084. zenml/zen_server/dashboard/static/js/2.bb4cef22.chunk.js.map +0 -1
  1085. zenml/zen_server/dashboard/static/js/main.270838b4.chunk.js +0 -2
  1086. zenml/zen_server/dashboard/static/js/main.270838b4.chunk.js.map +0 -1
  1087. zenml/zen_server/dashboard/static/js/runtime-main.bfca2edd.js +0 -2
  1088. zenml/zen_server/dashboard/static/js/runtime-main.bfca2edd.js.map +0 -1
  1089. zenml/zen_server/dashboard/static/media/AlertTriangle.28aee535.svg +0 -5
  1090. zenml/zen_server/dashboard/static/media/ArrowSquareOut.abfb9bc7.svg +0 -5
  1091. zenml/zen_server/dashboard/static/media/Back.86c23a22.svg +0 -4
  1092. zenml/zen_server/dashboard/static/media/BookOpen.5cb101ff.svg +0 -4
  1093. zenml/zen_server/dashboard/static/media/BoundingBox.1eb98717.svg +0 -10
  1094. zenml/zen_server/dashboard/static/media/Burger.9b1c67d7.svg +0 -3
  1095. zenml/zen_server/dashboard/static/media/Cached.2381fb8d.svg +0 -1
  1096. zenml/zen_server/dashboard/static/media/Calendar.356e11c7.svg +0 -3
  1097. zenml/zen_server/dashboard/static/media/ChartBarHorizontal.0247447b.svg +0 -6
  1098. zenml/zen_server/dashboard/static/media/ChartLine.0d79e18d.svg +0 -4
  1099. zenml/zen_server/dashboard/static/media/ChatDots.2e1c9211.svg +0 -6
  1100. zenml/zen_server/dashboard/static/media/Check.dad6beb2.svg +0 -3
  1101. zenml/zen_server/dashboard/static/media/CheckCircleFilled.c19566d0.svg +0 -3
  1102. zenml/zen_server/dashboard/static/media/Checkbox.af50e31e.svg +0 -3
  1103. zenml/zen_server/dashboard/static/media/ChevronDown.f860ce32.svg +0 -3
  1104. zenml/zen_server/dashboard/static/media/ChevronDownLight.6642d756.svg +0 -3
  1105. zenml/zen_server/dashboard/static/media/ChevronLeft.f6edfcdb.svg +0 -3
  1106. zenml/zen_server/dashboard/static/media/CircleCheck.f98fd6ca.svg +0 -1
  1107. zenml/zen_server/dashboard/static/media/Clock.ffc9de95.svg +0 -3
  1108. zenml/zen_server/dashboard/static/media/Close.74e9efbc.svg +0 -5
  1109. zenml/zen_server/dashboard/static/media/CloseWithBorder.6960930a.svg +0 -3
  1110. zenml/zen_server/dashboard/static/media/CloseWithoutBorder.cd6f71df.svg +0 -3
  1111. zenml/zen_server/dashboard/static/media/CloudArrowUp.0aecb235.svg +0 -6
  1112. zenml/zen_server/dashboard/static/media/Code.ef0f33b5.svg +0 -3
  1113. zenml/zen_server/dashboard/static/media/Config.0be63f8a.svg +0 -1
  1114. zenml/zen_server/dashboard/static/media/Connector.9fd46ef1.svg +0 -10
  1115. zenml/zen_server/dashboard/static/media/Copy.36e2112a.svg +0 -1
  1116. zenml/zen_server/dashboard/static/media/Dashboard.d05787e0.svg +0 -3
  1117. zenml/zen_server/dashboard/static/media/Data.b1c3b5f8.svg +0 -3
  1118. zenml/zen_server/dashboard/static/media/Delete.3c361b28.svg +0 -8
  1119. zenml/zen_server/dashboard/static/media/Docs.7541d478.svg +0 -7
  1120. zenml/zen_server/dashboard/static/media/Download.fba04d87.svg +0 -5
  1121. zenml/zen_server/dashboard/static/media/Edit.490eb294.svg +0 -6
  1122. zenml/zen_server/dashboard/static/media/EmptyRightArrow.23749d01.svg +0 -3
  1123. zenml/zen_server/dashboard/static/media/Example.6396cd37.svg +0 -5
  1124. zenml/zen_server/dashboard/static/media/Extension.1394cd4a.svg +0 -3
  1125. zenml/zen_server/dashboard/static/media/Eye.d9e4ee62.svg +0 -4
  1126. zenml/zen_server/dashboard/static/media/Failed.0213c1a0.svg +0 -1
  1127. zenml/zen_server/dashboard/static/media/FileText.1f15bacd.svg +0 -7
  1128. zenml/zen_server/dashboard/static/media/Filter.ab6b9c0d.svg +0 -3
  1129. zenml/zen_server/dashboard/static/media/Folders.12b29887.svg +0 -5
  1130. zenml/zen_server/dashboard/static/media/FunnelFill.6df4c143.svg +0 -3
  1131. zenml/zen_server/dashboard/static/media/GitCommit.7dd9c2aa.svg +0 -5
  1132. zenml/zen_server/dashboard/static/media/GitHub_Logo.cefc2023.png +0 -0
  1133. zenml/zen_server/dashboard/static/media/Graph.2c63a892.svg +0 -11
  1134. zenml/zen_server/dashboard/static/media/History.08329240.svg +0 -3
  1135. zenml/zen_server/dashboard/static/media/Home.0843b0d5.svg +0 -3
  1136. zenml/zen_server/dashboard/static/media/ImageBuilder.ea762d9c.svg +0 -6
  1137. zenml/zen_server/dashboard/static/media/InProgress.304a0edc.svg +0 -1
  1138. zenml/zen_server/dashboard/static/media/Info.9fe10c5c.svg +0 -3
  1139. zenml/zen_server/dashboard/static/media/KeyboardReturn.491afbe3.svg +0 -3
  1140. zenml/zen_server/dashboard/static/media/Link.72bbb55d.svg +0 -4
  1141. zenml/zen_server/dashboard/static/media/Lock.30f5e1fe.svg +0 -5
  1142. zenml/zen_server/dashboard/static/media/Lock2.a769ea52.svg +0 -3
  1143. zenml/zen_server/dashboard/static/media/LockKey.92f21621.svg +0 -6
  1144. zenml/zen_server/dashboard/static/media/Logs.8bf4d005.svg +0 -5
  1145. zenml/zen_server/dashboard/static/media/MinusCircle.4188f418.svg +0 -4
  1146. zenml/zen_server/dashboard/static/media/ModelRegistry.f0de050a.svg +0 -6
  1147. zenml/zen_server/dashboard/static/media/MultiUser.a2ba7c67.svg +0 -10
  1148. zenml/zen_server/dashboard/static/media/PaginationFirst.92628634.svg +0 -4
  1149. zenml/zen_server/dashboard/static/media/PaginationLast.00d3c732.svg +0 -4
  1150. zenml/zen_server/dashboard/static/media/PaginationNext.86158845.svg +0 -3
  1151. zenml/zen_server/dashboard/static/media/PaginationPrev.60c18a88.svg +0 -3
  1152. zenml/zen_server/dashboard/static/media/Pen.f2d831d4.svg +0 -6
  1153. zenml/zen_server/dashboard/static/media/PhotoCamera.179d6d4c.svg +0 -3
  1154. zenml/zen_server/dashboard/static/media/Pipeline.30d298b0.svg +0 -7
  1155. zenml/zen_server/dashboard/static/media/Plus.5aa1c16b.svg +0 -3
  1156. zenml/zen_server/dashboard/static/media/PlusCircle.92d860dd.svg +0 -5
  1157. zenml/zen_server/dashboard/static/media/Repositories.71a36b8c.svg +0 -3
  1158. zenml/zen_server/dashboard/static/media/RightArrow.f30d3871.svg +0 -29
  1159. zenml/zen_server/dashboard/static/media/Rocket.63bf7b9d.svg +0 -3
  1160. zenml/zen_server/dashboard/static/media/RocketLaunch.1bff2b59.svg +0 -6
  1161. zenml/zen_server/dashboard/static/media/Rubik-Medium.c87313aa.ttf +0 -0
  1162. zenml/zen_server/dashboard/static/media/Rubik-Regular.b3d0902b.ttf +0 -0
  1163. zenml/zen_server/dashboard/static/media/Run.daec4fb2.svg +0 -6
  1164. zenml/zen_server/dashboard/static/media/Search.d1afcce5.svg +0 -4
  1165. zenml/zen_server/dashboard/static/media/Settings.59ca73ae.svg +0 -4
  1166. zenml/zen_server/dashboard/static/media/Share2.46c3ff66.svg +0 -3
  1167. zenml/zen_server/dashboard/static/media/SignOut.6aa718c5.svg +0 -3
  1168. zenml/zen_server/dashboard/static/media/SimplePlus.5cf7ec20.svg +0 -3
  1169. zenml/zen_server/dashboard/static/media/SingleUser.bef3a095.svg +0 -4
  1170. zenml/zen_server/dashboard/static/media/SourceCodePro-Regular.b484b32f.ttf +0 -0
  1171. zenml/zen_server/dashboard/static/media/Stack.19b604ac.svg +0 -5
  1172. zenml/zen_server/dashboard/static/media/StackComponent.b1ba90b5.svg +0 -4
  1173. zenml/zen_server/dashboard/static/media/Star.f0c25022.svg +0 -9
  1174. zenml/zen_server/dashboard/static/media/StarOutline.94ca8cd9.svg +0 -3
  1175. zenml/zen_server/dashboard/static/media/Storefront.4b4796fe.svg +0 -3
  1176. zenml/zen_server/dashboard/static/media/Stream.543e3039.svg +0 -3
  1177. zenml/zen_server/dashboard/static/media/SupportAgent.510ddf1f.svg +0 -8
  1178. zenml/zen_server/dashboard/static/media/Table.77033750.svg +0 -6
  1179. zenml/zen_server/dashboard/static/media/Tool.d5785486.svg +0 -3
  1180. zenml/zen_server/dashboard/static/media/UserPlus.741a99d7.svg +0 -6
  1181. zenml/zen_server/dashboard/static/media/Verified.0625b2a0.svg +0 -3
  1182. zenml/zen_server/dashboard/static/media/addNew.4fb6c939.svg +0 -8
  1183. zenml/zen_server/dashboard/static/media/arrowClose.cbd53f3f.svg +0 -3
  1184. zenml/zen_server/dashboard/static/media/arrowOpen.6ceef0af.svg +0 -3
  1185. zenml/zen_server/dashboard/static/media/check_small.30bc0138.svg +0 -3
  1186. zenml/zen_server/dashboard/static/media/circleArrowSideClose.98d6013e.svg +0 -18
  1187. zenml/zen_server/dashboard/static/media/circleArrowSideOpen.63653df6.svg +0 -18
  1188. zenml/zen_server/dashboard/static/media/image.104fd14b.png +0 -0
  1189. zenml/zen_server/dashboard/static/media/imageAddIcon.e83004a9.svg +0 -7
  1190. zenml/zen_server/dashboard/static/media/logo.93333e5c.svg +0 -1
  1191. zenml/zen_server/dashboard/static/media/logo_small.4204397d.svg +0 -3
  1192. zenml/zen_server/dashboard/static/media/logo_white.d4b4414e.svg +0 -20
  1193. zenml/zen_server/dashboard/static/media/notConnected.5e2c8ea7.svg +0 -8
  1194. zenml/zen_server/dashboard/static/media/plugin-fallback.72c294e6.svg +0 -6
  1195. zenml/zen_server/dashboard/static/media/share.bcd998b0.svg +0 -5
  1196. zenml/zen_server/dashboard/static/media/stars.08a9b19a.svg +0 -8
  1197. zenml/zen_server/deploy/terraform/__init__.py +0 -41
  1198. zenml/zen_server/deploy/terraform/providers/__init__.py +0 -14
  1199. zenml/zen_server/deploy/terraform/providers/aws_provider.py +0 -61
  1200. zenml/zen_server/deploy/terraform/providers/azure_provider.py +0 -59
  1201. zenml/zen_server/deploy/terraform/providers/gcp_provider.py +0 -59
  1202. zenml/zen_server/deploy/terraform/providers/terraform_provider.py +0 -332
  1203. zenml/zen_server/deploy/terraform/recipes/aws/.gitignore +0 -8
  1204. zenml/zen_server/deploy/terraform/recipes/aws/helm.tf +0 -20
  1205. zenml/zen_server/deploy/terraform/recipes/aws/ingress.tf +0 -30
  1206. zenml/zen_server/deploy/terraform/recipes/aws/outputs.tf +0 -14
  1207. zenml/zen_server/deploy/terraform/recipes/aws/printf.cmd +0 -2
  1208. zenml/zen_server/deploy/terraform/recipes/aws/sql.tf +0 -62
  1209. zenml/zen_server/deploy/terraform/recipes/aws/terraform.tf +0 -44
  1210. zenml/zen_server/deploy/terraform/recipes/aws/variables.tf +0 -179
  1211. zenml/zen_server/deploy/terraform/recipes/aws/vpc.tf +0 -47
  1212. zenml/zen_server/deploy/terraform/recipes/aws/zen_server.tf +0 -111
  1213. zenml/zen_server/deploy/terraform/recipes/azure/.gitignore +0 -8
  1214. zenml/zen_server/deploy/terraform/recipes/azure/helm.tf +0 -20
  1215. zenml/zen_server/deploy/terraform/recipes/azure/ingress.tf +0 -30
  1216. zenml/zen_server/deploy/terraform/recipes/azure/key_vault.tf +0 -73
  1217. zenml/zen_server/deploy/terraform/recipes/azure/outputs.tf +0 -14
  1218. zenml/zen_server/deploy/terraform/recipes/azure/printf.cmd +0 -2
  1219. zenml/zen_server/deploy/terraform/recipes/azure/rg.tf +0 -36
  1220. zenml/zen_server/deploy/terraform/recipes/azure/sql.tf +0 -65
  1221. zenml/zen_server/deploy/terraform/recipes/azure/terraform.tf +0 -52
  1222. zenml/zen_server/deploy/terraform/recipes/azure/variables.tf +0 -188
  1223. zenml/zen_server/deploy/terraform/recipes/azure/zen_server.tf +0 -111
  1224. zenml/zen_server/deploy/terraform/recipes/gcp/.gitignore +0 -8
  1225. zenml/zen_server/deploy/terraform/recipes/gcp/helm.tf +0 -20
  1226. zenml/zen_server/deploy/terraform/recipes/gcp/ingress.tf +0 -30
  1227. zenml/zen_server/deploy/terraform/recipes/gcp/outputs.tf +0 -14
  1228. zenml/zen_server/deploy/terraform/recipes/gcp/printf.cmd +0 -2
  1229. zenml/zen_server/deploy/terraform/recipes/gcp/sql.tf +0 -64
  1230. zenml/zen_server/deploy/terraform/recipes/gcp/terraform.tf +0 -44
  1231. zenml/zen_server/deploy/terraform/recipes/gcp/variables.tf +0 -183
  1232. zenml/zen_server/deploy/terraform/recipes/gcp/zen_server.tf +0 -122
  1233. zenml/zen_server/deploy/terraform/terraform_zen_server.py +0 -255
  1234. zenml/zen_server/routers/run_metadata_endpoints.py +0 -97
  1235. zenml_nightly-0.54.1.dev20240123.dist-info/METADATA +0 -435
  1236. zenml_nightly-0.54.1.dev20240123.dist-info/RECORD +0 -1071
  1237. {zenml_nightly-0.54.1.dev20240123.dist-info → zenml_nightly-0.72.0.dev20250115.dist-info}/LICENSE +0 -0
  1238. {zenml_nightly-0.54.1.dev20240123.dist-info → zenml_nightly-0.72.0.dev20250115.dist-info}/entry_points.txt +0 -0
RELEASE_NOTES.md DELETED
@@ -1,3882 +0,0 @@
1
- <!-- markdown-link-check-disable -->
2
-
3
- # 0.54.1
4
-
5
- Release 0.54.1, includes a mix of updates and new additions and bug fixes. The most notable changes are the new production guide,
6
- allowing multi step VMs for the Skypilot orchestrator which allows you to configure a step to run on a specific VM or run the entire pipeline on a single VM,
7
- and some improvements to the Model Control Plane.
8
-
9
- ## What's Changed
10
- * Bump aquasecurity/trivy-action from 0.16.0 to 0.16.1 by @dependabot in https://github.com/zenml-io/zenml/pull/2244
11
- * Bump crate-ci/typos from 1.16.26 to 1.17.0 by @dependabot in https://github.com/zenml-io/zenml/pull/2245
12
- * Add YAML formatting standardisation to formatting & linting scripts by @strickvl in https://github.com/zenml-io/zenml/pull/2224
13
- * Remove text annotation by @strickvl in https://github.com/zenml-io/zenml/pull/2246
14
- * Add MariaDB migration testing by @strickvl in https://github.com/zenml-io/zenml/pull/2170
15
- * Delete artifact links from model version via Client, ModelVersion and API by @avishniakov in https://github.com/zenml-io/zenml/pull/2191
16
- * Default/Non-Default step params produce conflict with yaml ones as defaults are set in code by @avishniakov in https://github.com/zenml-io/zenml/pull/2247
17
- * Prune of unused artifacts links via client by @avishniakov in https://github.com/zenml-io/zenml/pull/2192
18
- * Rename nlp example by @safoinme in https://github.com/zenml-io/zenml/pull/2221
19
- * Support refreshing service connector credentials in the Vertex step operator to support long-running jobs by @stefannica in https://github.com/zenml-io/zenml/pull/2198
20
- * Refactor secrets stores to store all secret metadata in the DB by @stefannica in https://github.com/zenml-io/zenml/pull/2193
21
- * Add `latest_version_id` to the `ModelResponse` by @avishniakov in https://github.com/zenml-io/zenml/pull/2266
22
- * Remove `link_artifact` from docs for MCP by @strickvl in https://github.com/zenml-io/zenml/pull/2272
23
- * Improve action by adding advice to KeyError when configured steps are not present in pipeline by @christianversloot in https://github.com/zenml-io/zenml/pull/2265
24
- * Allow multi step configuration for skypilot by @safoinme in https://github.com/zenml-io/zenml/pull/2166
25
- * Reworking the examples by @bcdurak in https://github.com/zenml-io/zenml/pull/2259
26
- * A docs update for incorrect import in docs/book/user-guide/starter-guide/track-ml-models.md by @yo-harsh in https://github.com/zenml-io/zenml/pull/2279
27
- * Allow `sklearn` versions > 1.3 by @Vishal-Padia in https://github.com/zenml-io/zenml/pull/2271
28
- * Free `sklearn` dependency to allow all versions by @strickvl in https://github.com/zenml-io/zenml/pull/2281
29
- * Misc CI bugfixes by @strickvl in https://github.com/zenml-io/zenml/pull/2260
30
- * Fix `yamlfix` script to use `--no-yamlfix` flag by @strickvl in https://github.com/zenml-io/zenml/pull/2280
31
- * Fix dependabot settings autoformatting by `yamlfix` by @strickvl in https://github.com/zenml-io/zenml/pull/2282
32
- * Add advice for next step to error on AuthorizationException by @christianversloot in https://github.com/zenml-io/zenml/pull/2264
33
- * Allow skypilot to configure step or run full pipeline in one VM by @safoinme in https://github.com/zenml-io/zenml/pull/2276
34
- * A docs update with production guide + restructured advanced guide by @htahir1 in https://github.com/zenml-io/zenml/pull/2232
35
-
36
- ## New Contributors
37
- * @yo-harsh made their first contribution in https://github.com/zenml-io/zenml/pull/2279
38
- * @Vishal-Padia made their first contribution in https://github.com/zenml-io/zenml/pull/2271
39
-
40
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.54.0...0.54.1
41
-
42
-
43
- # 0.54.0
44
-
45
- This release brings a range of new features, bug fixes and documentation
46
- updates. The Model Control Plane has received a number of small bugfixes and
47
- improvements, notably the ability to change model and model version names.
48
-
49
- We've also added a whole new starter guide that walks you through
50
- how to get started with ZenML, from creating your first pipeline to fetching
51
- objects once your pipelines have run and much more. Be sure to [check it out](https://docs.zenml.io/user-guide/starter-guide) if
52
- you're new to ZenML!
53
-
54
- Speaking of documentation improvements, the Model Control Plane now has [its own
55
- dedicated documentation section](https://docs.zenml.io/user-guide/advanced-guide/data-management/model-management) introducing the concepts and features of the
56
- Model Control Plane.
57
-
58
- As always, this release comes with number of bug fixes, docs additions and
59
- smaller improvements to our internal processes.
60
-
61
- ## Breaking Change
62
-
63
- This PR introduces breaking changes in the areas of the REST API concerning secrets and tags. As a consequence, the ZenML Client running the previous ZenML version is no longer compatible with a ZenML Server running the new version and vice-versa. To address this, simply ensure that all your ZenML clients use the same version as the server(s) they connect to.
64
-
65
- ## 🥳 Community Contributions 🥳
66
-
67
- We'd like to give a special thanks to @christianversloot for two PRs he
68
- contributed to this release. One of them [fixes a bug](https://github.com/zenml-io/zenml/pull/2195) that prevented ZenML from
69
- running on Windows and the other one [adds a new materializer for the Polars library](https://github.com/zenml-io/zenml/pull/2229).
70
-
71
- Also many thanks to @sean-hickey-wf for his contribution of [an improvement to
72
- the Slack Alerter stack component](https://github.com/zenml-io/zenml/pull/2153)
73
- which allows you to define custom blocks for the Slack message.
74
-
75
- ## What's Changed
76
- * Completing the hydration story with the remaining models by @bcdurak in https://github.com/zenml-io/zenml/pull/2151
77
- * Remove secrets manager flavors from DB by @stefannica in https://github.com/zenml-io/zenml/pull/2182
78
- * Prepare 0.53.1 release by @stefannica in https://github.com/zenml-io/zenml/pull/2183
79
- * Update package name for nightly build by @strickvl in https://github.com/zenml-io/zenml/pull/2172
80
- * Remove space saver action + upgrade other actions by @strickvl in https://github.com/zenml-io/zenml/pull/2174
81
- * mutable names in Model and MV by @avishniakov in https://github.com/zenml-io/zenml/pull/2185
82
- * Fix image building for nightly container builds by @strickvl in https://github.com/zenml-io/zenml/pull/2189
83
- * Test that artifacts not get linked to model version not from context by @avishniakov in https://github.com/zenml-io/zenml/pull/2188
84
- * Warn if Model(Version) config fluctuates from DB state by @avishniakov in https://github.com/zenml-io/zenml/pull/2144
85
- * Add blocks field to SlackAlerterParameters for custom slack blocks by @sean-hickey-wf in https://github.com/zenml-io/zenml/pull/2153
86
- * Model control plane technical documentation by @strickvl in https://github.com/zenml-io/zenml/pull/2111
87
- * Alembic branching issue fix by @avishniakov in https://github.com/zenml-io/zenml/pull/2197
88
- * Bump github/codeql-action from 2 to 3 by @dependabot in https://github.com/zenml-io/zenml/pull/2201
89
- * Bump google-github-actions/get-gke-credentials from 0 to 2 by @dependabot in https://github.com/zenml-io/zenml/pull/2202
90
- * Bump google-github-actions/auth from 1 to 2 by @dependabot in https://github.com/zenml-io/zenml/pull/2203
91
- * Bump aws-actions/amazon-ecr-login from 1 to 2 by @dependabot in https://github.com/zenml-io/zenml/pull/2200
92
- * Bump crate-ci/typos from 1.16.25 to 1.16.26 by @dependabot in https://github.com/zenml-io/zenml/pull/2207
93
- * Fix unreliable test behaviour when using hypothesis by @strickvl in https://github.com/zenml-io/zenml/pull/2208
94
- * Added more pod spec properties for k8s orchestrator by @htahir1 in https://github.com/zenml-io/zenml/pull/2097
95
- * Fix API docs environment setup by @strickvl in https://github.com/zenml-io/zenml/pull/2190
96
- * Use placeholder runs to show pipeline runs in the dashboard without delay by @schustmi in https://github.com/zenml-io/zenml/pull/2048
97
- * Update README and CONTRIBUTING.md docs with links to good first issues for contribution by @strickvl in https://github.com/zenml-io/zenml/pull/2220
98
- * Bump supported `mlstacks` version to 0.8.0 by @strickvl in https://github.com/zenml-io/zenml/pull/2196
99
- * Misc cleanup by @schustmi in https://github.com/zenml-io/zenml/pull/2126
100
- * Refactor pipeline run updates by @schustmi in https://github.com/zenml-io/zenml/pull/2117
101
- * Rename log_model_version_metadata to log_model_metadata by @htahir1 in https://github.com/zenml-io/zenml/pull/2215
102
- * Update starter and create new production guide by @htahir1 in https://github.com/zenml-io/zenml/pull/2143
103
- * Fix typo by @strickvl in https://github.com/zenml-io/zenml/pull/2223
104
- * Consolidate Custom Filter Logic by @fa9r in https://github.com/zenml-io/zenml/pull/2116
105
- * Force forward slashes when saving artifacts by @christianversloot in https://github.com/zenml-io/zenml/pull/2195
106
- * Temporarily disable two MLflow tests for MacOS with Python 3.9 and 3.10 by @strickvl in https://github.com/zenml-io/zenml/pull/2186
107
- * Disable template updates for forked repositories by @strickvl in https://github.com/zenml-io/zenml/pull/2222
108
- * Remove Label Studio text annotation example by @strickvl in https://github.com/zenml-io/zenml/pull/2225
109
- * Add scarf checker script and CI workflow by @strickvl in https://github.com/zenml-io/zenml/pull/2227
110
- * Add `mlstacks` installation instructions to docs by @strickvl in https://github.com/zenml-io/zenml/pull/2228
111
- * Adding the `hydrate` flag to the client methods by @bcdurak in https://github.com/zenml-io/zenml/pull/2120
112
- * Fixing the remaining docs pages for `run_metadata` by @bcdurak in https://github.com/zenml-io/zenml/pull/2230
113
- * Fix CI check to disallow template testing on forked repositories by @strickvl in https://github.com/zenml-io/zenml/pull/2231
114
- * Fix fork check syntax by @strickvl in https://github.com/zenml-io/zenml/pull/2237
115
- * Add missing annotations section to zenml service account by @wjayesh in https://github.com/zenml-io/zenml/pull/2234
116
- * Allow filtering artifacts with/without custom names by @schustmi in https://github.com/zenml-io/zenml/pull/2226
117
- * Adjust migration settings based on database engine by @strickvl in https://github.com/zenml-io/zenml/pull/2236
118
- * Added one more chapter to starter guide by @htahir1 in https://github.com/zenml-io/zenml/pull/2238
119
- * Add Polars materializer by @christianversloot in https://github.com/zenml-io/zenml/pull/2229
120
-
121
- ## New Contributors
122
- * @sean-hickey-wf made their first contribution in https://github.com/zenml-io/zenml/pull/2153
123
- * @dependabot 🤖 made their first contribution in https://github.com/zenml-io/zenml/pull/2201
124
-
125
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.53.1...0.54.0
126
-
127
- # 0.53.1
128
-
129
- This minor release contains a hot fix for a bug that was introduced in 0.53.0
130
- where the secrets manager flavors were not removed from the database
131
- properly. This release fixes that issue.
132
-
133
- ## What's Changed
134
- * Remove secrets manager flavors from DB by @stefannica in https://github.com/zenml-io/zenml/pull/2182
135
-
136
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.53.0...0.53.1
137
-
138
- # 0.53.0
139
-
140
- This release is packed with a deeply reworked quickstart example and starter template, the removal of secret manager stack component, improved experience with Cloud Secret Stores, support for tags and metadata directly in Model Versions, some breaking changes for Model Control Plane and a few bugfixes.
141
-
142
- ## Breaking changes
143
-
144
- ### Secret Manager stack components sunset
145
-
146
- Upon upgrading, all Secrets Manager stack components will be removed from the Stacks that still contain them and from the database. This also implies that access to any remaining secrets managed through Secrets Manager stack components will be lost. If you still have secrets configured and managed through Secrets Manager stack components, please consider migrating all your existing secrets to the centralized secrets store *before upgrading* by means of the `zenml secrets-manager secret migrate` CLI command. Also see the `zenml secret --help` command for more information.
147
-
148
- ### Renaming "endpoints" to "deployments" in Model Control Plane
149
-
150
- This is just a renaming to provide better alignment with industry standards. Though, it will affect:
151
- - `ArtifactConfig(..., is_endpoint_artifact=True)` now is `ArtifactConfig(..., is_deployment_artifact=True)`
152
- - CLI command `zenml model endpoint_artifacts ...` now is `zenml model deployment_artifacts ...`
153
- - `Client().list_model_version_artifact_links(..., only_endpoint_artifacts=True)` now is `Client().list_model_version_artifact_links(..., only_deployment_artifacts=True)`
154
- - `ModelVersion(...).get_endpoint_artifact(...)` now is `ModelVersion(...).get_deployment_artifact(...)`
155
-
156
- ## Major bugfixes
157
- * Fix various bugs by @stefannica in https://github.com/zenml-io/zenml/pull/2147
158
- * Adding a link from pipeline runs to code repositories by @bcdurak in https://github.com/zenml-io/zenml/pull/2146
159
- * Fix Client doesn't recover from remote connection resets by @avishniakov in https://github.com/zenml-io/zenml/pull/2129
160
- * Bugfix: `run_metadata` value returns string instead of other types by @avishniakov in https://github.com/zenml-io/zenml/pull/2149
161
- * `KubernetesSparkStepOperator` imports fails by @avishniakov in https://github.com/zenml-io/zenml/pull/2159
162
- * Fix `get_pipeline_context().model_version.get_artifact(...)` flow by @avishniakov in https://github.com/zenml-io/zenml/pull/2162
163
-
164
- ## What's Changed
165
- * Model Versions are taggable by @avishniakov in https://github.com/zenml-io/zenml/pull/2102
166
- * Adding a condition to the PR template by @bcdurak in https://github.com/zenml-io/zenml/pull/2140
167
- * trying local caching for custom runners by @safoinme in https://github.com/zenml-io/zenml/pull/2148
168
- * make template tests runs on ubuntu latest instead of custom runners by @safoinme in https://github.com/zenml-io/zenml/pull/2150
169
- * Fix various bugs by @stefannica in https://github.com/zenml-io/zenml/pull/2147
170
- * Fix `importlib` calling to `importlib.metadata` by @safoinme in https://github.com/zenml-io/zenml/pull/2160
171
- * Debugging `zenml clean` by @bcdurak in https://github.com/zenml-io/zenml/pull/2119
172
- * Add metadata to model versions by @avishniakov in https://github.com/zenml-io/zenml/pull/2109
173
- * Adding a link from pipeline runs to code repositories by @bcdurak in https://github.com/zenml-io/zenml/pull/2146
174
- * Moving tags to the body for artifacts and artifact versions by @bcdurak in https://github.com/zenml-io/zenml/pull/2138
175
- * Fix MLFlow test by @avishniakov in https://github.com/zenml-io/zenml/pull/2161
176
- * Fix Client doesn't recover from remote connection resets by @avishniakov in https://github.com/zenml-io/zenml/pull/2129
177
- * Bugfix: `run_metadata` value returns string instead of other types by @avishniakov in https://github.com/zenml-io/zenml/pull/2149
178
- * `KubernetesSparkStepOperator` imports fails by @avishniakov in https://github.com/zenml-io/zenml/pull/2159
179
- * Endpoint artifacts rename to deployment artifacts by @avishniakov in https://github.com/zenml-io/zenml/pull/2134
180
- * Fix `get_pipeline_context().model_version.get_artifact(...)` flow by @avishniakov in https://github.com/zenml-io/zenml/pull/2162
181
- * Add CodeRabbit config to repo base by @strickvl in https://github.com/zenml-io/zenml/pull/2165
182
- * Feature: use service connectors to authenticate secrets stores. by @stefannica in https://github.com/zenml-io/zenml/pull/2154
183
- * Add dependabot updates for Github Actions on CI by @strickvl in https://github.com/zenml-io/zenml/pull/2087
184
- * Run DB migration testing using MySQL alongside SQLite by @strickvl in https://github.com/zenml-io/zenml/pull/2113
185
- * Remove `precommit` by @strickvl in https://github.com/zenml-io/zenml/pull/2164
186
- * Remove support for secrets managers by @stefannica in https://github.com/zenml-io/zenml/pull/2163
187
- * Add MariaDB test harnesses by @christianversloot in https://github.com/zenml-io/zenml/pull/2155
188
- * Feature/update quickstart from template by @AlexejPenner in https://github.com/zenml-io/zenml/pull/2157
189
- * Bump MLFlow to 2.9.2 by @christianversloot in https://github.com/zenml-io/zenml/pull/2156
190
-
191
-
192
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.52.0...0.53.0
193
-
194
- # 0.52.0
195
-
196
- This adds the ability to pass in pipeline parameters as YAML configuration and fixes a couple of minor issues affecting the W&B integration and the way expiring credentials are refreshed when service connectors are used.
197
-
198
- ## Breaking Change
199
-
200
- The current pipeline YAML configurations are now being validated to ensure that configured parameters match what is available in the code. This means that if you have a pipeline that is configured with a parameter that has a different value that what is provided through code, the pipeline will fail to run. This is a breaking change, but it is a good thing as it will help you catch errors early on.
201
-
202
- This is an example of a pipeline configuration that will fail to run:
203
-
204
- ```yaml
205
- parameters:
206
- some_param: 24
207
-
208
- steps:
209
- my_step:
210
- parameters:
211
- input_2: 42
212
- ```
213
-
214
- ```python
215
- # run.py
216
- @step
217
- def my_step(input_1: int, input_2: int) -> None:
218
- pass
219
-
220
- @pipeline
221
- def my_pipeline(some_param: int):
222
- # here an error will be raised since `input_2` is
223
- # `42` in config, but `43` was provided in the code
224
- my_step(input_1=42, input_2=43)
225
-
226
- if __name__=="__main__":
227
- # here an error will be raised since `some_param` is
228
- # `24` in config, but `23` was provided in the code
229
- my_pipeline(23)
230
- ```
231
-
232
- ## What's Changed
233
- * Passing pipeline parameters as yaml config by @avishniakov in https://github.com/zenml-io/zenml/pull/2058
234
- * Side-effect free tests by @avishniakov in https://github.com/zenml-io/zenml/pull/2065
235
- * Fix various bugs by @stefannica in https://github.com/zenml-io/zenml/pull/2124
236
-
237
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.51.0...0.52.0
238
-
239
- # 0.51.0
240
-
241
- This release comes with a breaking change to the model version model, a new use-case example for NLP, and a range of bug fixes and enhancements to the artifact management and pipeline run management features.
242
-
243
- ## Breaking Change
244
- * Artifact Version Table + Artifact Tagging by @fa9r in https://github.com/zenml-io/zenml/pull/2081
245
- * Converting model models to use the new hydration paradigm by @bcdurak in https://github.com/zenml-io/zenml/pull/2101
246
-
247
- ## New Example
248
- * NLP Template Example is a new example that demonstrates how to use ZenML for NLP tasks. by @safoinme in https://github.com/zenml-io/zenml/pull/2070
249
-
250
-
251
- ## What's Changed
252
- * Updated to one quickstart again by @htahir1 in https://github.com/zenml-io/zenml/pull/2092
253
- * Fix Nightly Build workflow files by @strickvl in https://github.com/zenml-io/zenml/pull/2090
254
- * Make PyPi release depend on DB migration tests passing by @strickvl in https://github.com/zenml-io/zenml/pull/2088
255
- * Bump `mlstacks` version in ZenML extra by @strickvl in https://github.com/zenml-io/zenml/pull/2091
256
- * Fix SQL schema imports by @stefannica in https://github.com/zenml-io/zenml/pull/2098
257
- * Fix migration for unowned stacks/components by @schustmi in https://github.com/zenml-io/zenml/pull/2099
258
- * Polymorthic `run_metadata` by @avishniakov in https://github.com/zenml-io/zenml/pull/2064
259
- * Update ruff formatter (for bugfixes) by @strickvl in https://github.com/zenml-io/zenml/pull/2106
260
- * Lock in airflow version as higher versions will fail by @AlexejPenner in https://github.com/zenml-io/zenml/pull/2108
261
- * Swap contents for HTMLString and MarkdownString in docs by @christianversloot in https://github.com/zenml-io/zenml/pull/2110
262
- * Fix secrets list with cloud secrets stores and RBAC by @stefannica in https://github.com/zenml-io/zenml/pull/2107
263
- * More track events by @htahir1 in https://github.com/zenml-io/zenml/pull/2112
264
- * Fix pipeline run cascade deletion by @fa9r in https://github.com/zenml-io/zenml/pull/2104
265
- * Take integrations tests out of unit tests folder by @safoinme in https://github.com/zenml-io/zenml/pull/2100
266
- * Allow extra values when dehydrating response models by @schustmi in https://github.com/zenml-io/zenml/pull/2114
267
- * Request optimizations by @schustmi in https://github.com/zenml-io/zenml/pull/2103
268
- * Pagination in model versions by @avishniakov in https://github.com/zenml-io/zenml/pull/2115
269
- * Add `StepContext.inputs` property by @fa9r in https://github.com/zenml-io/zenml/pull/2105
270
-
271
-
272
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.50.0...0.51.0
273
-
274
-
275
- # 0.50.0
276
-
277
- In this release, we introduce key updates aimed at improving user experience and security.
278
- The `ModelConfig` object has been renamed to `ModelVersion` for a more intuitive interface.
279
- Additionally, the release features enhancements such as optimized model hydration for better performance,
280
- alongside a range of bug fixes and contributions from both new and returning community members.
281
-
282
- ## Breaking Change
283
- - We have renamed the `ModelConfig` object to `ModelVersion` with other related changes to the model control plane,
284
- the goal of this is to bring a simplified user-interface experience, so once ModelVersion is configured in
285
- @pipeline or @step it will travel into all other user-facing places: step context, client, etc. by @avishniakov in [#2044](https://github.com/zenml-io/zenml/pull/2044)
286
- - introducing RBAC for server endpoints, ensuring users have appropriate permissions for actions on resources.
287
- Additionally, it improves data handling by dehydrating response models to redact inaccessible information, while
288
- service accounts retain full permissions due to current database constraints. by @schustmi in [#1999](https://github.com/zenml-io/zenml/pull/1999)
289
-
290
- ## Enhancements
291
- - Optimizing model hydration by @bcdurak in [#1971](https://github.com/zenml-io/zenml/pull/1971)
292
- - Improve alembic migration safety by @fa9r in [#2073](https://github.com/zenml-io/zenml/pull/2073)
293
- - Model Link Filtering by Artifact / Run Name by @fa9r in [#2074](https://github.com/zenml-io/zenml/pull/2074)
294
-
295
- ## Bug Fixes
296
- - Fix tag<>resource ID generator to fix the issue of manipulating migrated tags properly [#2056](https://github.com/zenml-io/zenml/pull/2056)
297
- - Fixes for `k3d` deployments via `mlstacks` using the ZenML CLI wrapper [#2059](https://github.com/zenml-io/zenml/pull/2059)
298
- - Fix some filter options for pipeline runs by @schustmi [#2078](https://github.com/zenml-io/zenml/pull/2078)
299
- - Fix Label Studio image annotation example by @strickvl [#2010](https://github.com/zenml-io/zenml/pull/2010)
300
- - Alembic migration fix for databases with scheduled pipelines with 2+ runs by @bcdurak [#2072](https://github.com/zenml-io/zenml/pull/2072)
301
- - Model version endpoint fixes by @schustmi in [#2060](https://github.com/zenml-io/zenml/pull/2060)
302
-
303
- ## ZenML Helm Chart Changes
304
- - Make helm chart more robust to accidental secret deletions by @stefannica in [#2053](https://github.com/zenml-io/zenml/pull/2053)
305
- - Separate helm hook resources from regular resources by @stefannica in [#2055](https://github.com/zenml-io/zenml/pull/2055)
306
-
307
- ## Other Changes
308
- * Connectors docs small fixes by @strickvl in https://github.com/zenml-io/zenml/pull/2050
309
- * Feature/configurable service account for seldon predictor service by @Johnyz21 in https://github.com/zenml-io/zenml/pull/1725
310
- * Adding NLP Template Example by @safoinme in https://github.com/zenml-io/zenml/pull/2051
311
- * Fix CI by @fa9r in https://github.com/zenml-io/zenml/pull/2069
312
- * Depaginate step runs to allow running pipelines with arbitrary step count by @schustmi in https://github.com/zenml-io/zenml/pull/2068
313
- * Remove user name from orchestrator run name by @schustmi in https://github.com/zenml-io/zenml/pull/2067
314
- * Artifacts Tab by @fa9r in https://github.com/zenml-io/zenml/pull/1943
315
- * Add warnings/updates to Huggingface Spaces deployment docs by @strickvl in https://github.com/zenml-io/zenml/pull/2052
316
- * Nightly builds by @strickvl in https://github.com/zenml-io/zenml/pull/2031
317
- * Allow for custom disk size and type when using VertexAI Step Operator by @strickvl in https://github.com/zenml-io/zenml/pull/2054
318
- * Set nightly builds to run at half-past the hour by @strickvl in https://github.com/zenml-io/zenml/pull/2077
319
- * Set DCP template tag by @avishniakov in https://github.com/zenml-io/zenml/pull/2076
320
- * Add missing dehydration in get_service_connector endpoint by @schustmi in https://github.com/zenml-io/zenml/pull/2080
321
- * Replace `black` with `ruff format` / bump `mypy` by @strickvl in https://github.com/zenml-io/zenml/pull/2082
322
- * ModelVersion in pipeline context to pass in steps by @avishniakov in https://github.com/zenml-io/zenml/pull/2079
323
- * Pin `bcrypt` by @strickvl in https://github.com/zenml-io/zenml/pull/2083
324
-
325
- ## New Contributors
326
- * @Johnyz21 made their first contribution in https://github.com/zenml-io/zenml/pull/1725
327
-
328
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.47.0...0.50.0
329
-
330
-
331
- # 0.47.0
332
- This release fixes a bug that was introduced in 0.46.1 where the default user
333
- was made inaccessible and was inadvertently duplicated. This release rescues
334
- the original user and renames the duplicate.
335
-
336
- ## What's Changed
337
- * Create tags table by @avishniakov in https://github.com/zenml-io/zenml/pull/2036
338
- * Bring dashboard back to the release by @avishniakov in https://github.com/zenml-io/zenml/pull/2046
339
- * Fix duplicate default user by @stefannica in https://github.com/zenml-io/zenml/pull/2045
340
-
341
-
342
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.46.1...tmp
343
-
344
- # 0.46.1
345
-
346
- The 0.46.1 release introduces support for Service Accounts and API Keys that
347
- can be used to authenticate with the ZenML server from environments that do not
348
- support the web login flow, such as CI/CD environments, for example.
349
-
350
- Also included in this release are some documentation updates and bug fixes,
351
- notably moving the database migration logic deployed with the Helm chart out of
352
- the init containers and into a Kubernetes Job, which makes it possible to scale
353
- out the ZenML server deployments without the risk of running into database
354
- migration conflicts.
355
-
356
- ## What's Changed
357
- * Small improvements to Hub docs page by @strickvl in https://github.com/zenml-io/zenml/pull/2015
358
- * Pin OpenAI integration to `<1.0.0` by @strickvl in https://github.com/zenml-io/zenml/pull/2027
359
- * Make error message nicer for when two artifacts that share a prefix are found by @strickvl in https://github.com/zenml-io/zenml/pull/2023
360
- * Move db-migration to `job` instead of `init-container` to allow replicas by @safoinme in https://github.com/zenml-io/zenml/pull/2021
361
- * Fix stuck/broken CI by @strickvl in https://github.com/zenml-io/zenml/pull/2032
362
- * Increase `step.source_code` Cut-Off Limit by @fa9r in https://github.com/zenml-io/zenml/pull/2025
363
- * Improve artifact linkage logging in MCP by @avishniakov in https://github.com/zenml-io/zenml/pull/2016
364
- * Upgrade feast so apidocs don't fail no mo by @AlexejPenner in https://github.com/zenml-io/zenml/pull/2028
365
- * Remove NumPy Visualizations for 2D Arrays by @fa9r in https://github.com/zenml-io/zenml/pull/2033
366
- * Fix user activation bug by @stefannica in https://github.com/zenml-io/zenml/pull/2037
367
- * Remove `create_new_model_version` arg of `ModelConfig` by @avishniakov in https://github.com/zenml-io/zenml/pull/2030
368
- * Extend the wait period in between PyPi package publication and Docker image building for releases by @strickvl in https://github.com/zenml-io/zenml/pull/2029
369
- * Make `zenml up` prefill username when launching dashboard by @strickvl in https://github.com/zenml-io/zenml/pull/2024
370
- * Add warning when artifact store cannot be loaded by @strickvl in https://github.com/zenml-io/zenml/pull/2011
371
- * Add extra config to `Kaniko` docs by @safoinme in https://github.com/zenml-io/zenml/pull/2019
372
- * ZenML API Keys and Service Accounts by @stefannica in https://github.com/zenml-io/zenml/pull/1840
373
-
374
-
375
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.46.0..0.46.1
376
-
377
-
378
- # 0.46.0
379
-
380
- This release brings some upgrades, documentation updates and bug fixes. Notably,
381
- our `langchain` integration now supports more modern versions and has been
382
- upgraded to a new version at the lower edge of supported packages on account of
383
- a security vulnerability.
384
-
385
- Other fixes related to the Model Control Plane which was updated to support the
386
- deletion of model versions via the CLI, for example.
387
-
388
- ## Breaking Change
389
-
390
- We removed the `llama_index` integration in this release. This related to
391
- unsolvable dependency clashes that relate to `sqlmodel` and our database. We
392
- expect these clashes to be resolved in the future and then we will add our
393
- integration back in. If you were using the `llama_index` materializer that was
394
- part of the integration, you will have to use a custom materializer in the
395
- meanwhile. We apologize for the inconvenience.
396
-
397
- ## What's Changed
398
- * MCP-driven E2E template by @avishniakov in https://github.com/zenml-io/zenml/pull/2004
399
- * Model scoped endpoints by @avishniakov in https://github.com/zenml-io/zenml/pull/2003
400
- * Delete model version in cli by @avishniakov in https://github.com/zenml-io/zenml/pull/2006
401
- * Add latest version to model list response by @avishniakov in https://github.com/zenml-io/zenml/pull/2007
402
- * Fix `gcs bucket` docs error message by @safoinme in https://github.com/zenml-io/zenml/pull/2018
403
- * Fix `Skypilot` docs configuration by @safoinme in https://github.com/zenml-io/zenml/pull/2017
404
- * Bump `langchain`, disable `llama_index`, and fix Vector Store materializer by @strickvl in https://github.com/zenml-io/zenml/pull/2013
405
- * Fix Build Options of `GCPImageBuilder` by @fa9r in https://github.com/zenml-io/zenml/pull/1992
406
- * Fix the stack component describe CLI output by @stefannica in https://github.com/zenml-io/zenml/pull/2001
407
-
408
-
409
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.45.6...0.46.0
410
-
411
- # 0.45.6
412
-
413
- This release brings an array of enhancements and refinements. Notable improvements include
414
- allowing for `disconnecting` service connectors from stack components, adding connector support to the
415
- sagemaker step operator, turning synchronous mode on by default for all orchestrators, and enabling
416
- server-side component config validation.
417
-
418
- ## What's Changed
419
- * Updating `README.md` and update images by @znegrin in https://github.com/zenml-io/zenml/pull/1986
420
- * Always set the active workspace to be the default workspace server side by @stefannica in https://github.com/zenml-io/zenml/pull/1989
421
- * Update outdated CLI docs by @strickvl in https://github.com/zenml-io/zenml/pull/1990
422
- * Turn synchronous mode on by default for all orchestrators by @stefannica in https://github.com/zenml-io/zenml/pull/1991
423
- * Use docker credentials in the skypilot orchestrator by @stefannica in https://github.com/zenml-io/zenml/pull/1983
424
- * Add missing space to `@step` warning message by @strickvl in https://github.com/zenml-io/zenml/pull/1994
425
- * Fix sagemaker orchestrator and step operator env vars and other minor bugs by @stefannica in https://github.com/zenml-io/zenml/pull/1993
426
- * fix: `BasePyTorchMaterliazer` -> `Materializer` by @cameronraysmith in https://github.com/zenml-io/zenml/pull/1969
427
- * allow calling old base pytorch materilizzer by @safoinme in https://github.com/zenml-io/zenml/pull/1997
428
- * Add connector support to sagemaker step operator. by @stefannica in https://github.com/zenml-io/zenml/pull/1996
429
- * Server-Side Component Config Validation by @fa9r in https://github.com/zenml-io/zenml/pull/1988
430
- * Allow disconnecting service-connector from stack component by @safoinme in https://github.com/zenml-io/zenml/pull/1864
431
-
432
- ## New Contributors
433
- * @znegrin made their first contribution in https://github.com/zenml-io/zenml/pull/1986
434
-
435
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.45.5...0.45.6
436
-
437
-
438
- # 0.45.5
439
-
440
- This minor release contains bugfixes and documentation improvements. Notably,
441
- our `sqlmodel` dependency has been pinned to 0.0.8 which fixes installation
442
- errors following the release of 0.0.9.
443
-
444
- ## What's Changed
445
- * Add a 'how do I...' section into docs by @strickvl in https://github.com/zenml-io/zenml/pull/1953
446
- * Bump `mypy`, `ruff` and `black` by @strickvl in https://github.com/zenml-io/zenml/pull/1963
447
- * Fix double slashes in weblogin by @schustmi in https://github.com/zenml-io/zenml/pull/1972
448
- * SQLModel docs backport fixes by @strickvl in https://github.com/zenml-io/zenml/pull/1975
449
- * Updated quickstart command in cloud quickstart by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1977
450
- * Make sure vertex job id is only lower case letter, number or dash by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1978
451
- * Fix DB initialization when using external authentication by @schustmi in https://github.com/zenml-io/zenml/pull/1965
452
- * Pin SQLModel dependency to `0.0.8` by @strickvl in https://github.com/zenml-io/zenml/pull/1973
453
-
454
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.45.4...0.45.5
455
-
456
- # 0.45.4
457
-
458
- This minor update fixes a database migration bug that you could potentially
459
- encounter while upgrading your ZenML version and relates to use of the
460
- `ExternalArtifact` object.
461
- If you are upgrading from <0.45.x version, this is the recommended release.
462
-
463
- **PROBLEMS?**: If you upgraded to ZenML v0.45.2 or v0.45.3 and are experiencing
464
- issues with your database, please consider upgrading to v0.45.4 instead.
465
-
466
- ## What's Changed
467
- * Increase reuse of `ModelConfig` by @avishniakov in https://github.com/zenml-io/zenml/pull/1954
468
- * resolve alembic branches by @avishniakov in https://github.com/zenml-io/zenml/pull/1964
469
- * Fix corrupted migration for old dbs by @avishniakov in https://github.com/zenml-io/zenml/pull/1966
470
-
471
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.45.3...0.45.4
472
-
473
- # 0.45.3
474
-
475
- This minor update fixes a database migration bug that you could potentially
476
- encounter while upgrading your ZenML version and relates to use of the
477
- `ExternalArtifact` object.
478
-
479
- **PROBLEMS?**: If you upgraded to ZenML v0.45.2 and are experiencing
480
- issues with your database, please either [reach out to us on Slack directly](https://zenml.io/slack-invite/) or
481
- feel free to [use this migration
482
- script](https://gist.github.com/strickvl/2178d93c8693f068768a82587fd4db75) that will
483
- manually fix the issue.
484
-
485
- This release also includes a bugfix from @cameronraysmith relating to the
486
- resolution of our Helm chart OCI location. Thank you!
487
-
488
- ## What's Changed
489
- * fix: match chart name in docs to publish workflow by @cameronraysmith in https://github.com/zenml-io/zenml/pull/1942
490
- * Evaluate YAML based config early + OSS-2511 by @avishniakov in https://github.com/zenml-io/zenml/pull/1876
491
- * Fixing nullable parameter to avoid extra migrations by @bcdurak in https://github.com/zenml-io/zenml/pull/1955
492
- * Pin Helm version to avoid 400 Bad Request error by @wjayesh in https://github.com/zenml-io/zenml/pull/1958
493
- * `external_input_artifact` backward compatibility with alembic by @avishniakov in https://github.com/zenml-io/zenml/pull/1957
494
-
495
- ## New Contributors
496
- * @cameronraysmith made their first contribution in https://github.com/zenml-io/zenml/pull/1942
497
-
498
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.45.2...0.45.3
499
-
500
- # 0.45.2
501
-
502
- This release replaces 0.45.0 and 0.45.1, and fixes the major migration bugs that were in
503
- that yanked release. Please upgrade directly to 0.45.2 and avoid upgrading to
504
- 0.45.0 to avoid unexpected migration issues.
505
-
506
- Note that 0.45.0 and 0.45.1 were removed from PyPI due to an issue with the
507
- alembic versions + migration which could affect the database state. This release
508
- fixes that issue.
509
-
510
- If you have already upgraded to 0.45.0 please [let us know in Slack](https://zenml.io/slack-invite/) and we'll happy to assist in rollback and recovery.
511
-
512
- This release introduces a major upgrade to ZenML, featuring a new authentication mechanism, performance improvements, the introduction of the model control plane, and internal enhancements.
513
-
514
- ## New Authentication Mechanism (#4303)
515
-
516
- Our improved authentication mechanism offers a more secure way of connecting to the ZenML server. It initiates a device flow that prompts you to log in via the browser dashboard:
517
-
518
- ```
519
- zenml connect --url <YOUR_SERVER_URL>
520
- ```
521
-
522
- This eliminates the need for explicit credential input. The previous method (`zenml connect --url <URL> --username <USERNAME> --password <PASSWORD>`) remains operational but is less recommended due to security concerns.
523
-
524
- **Critical** This change disrupts existing pipeline schedules. After upgrading, manually cancel and reschedule pipelines using the updated version of ZenML.
525
-
526
- For more information, read about the device flow in our [documentation](https://docs.zenml.io/user-guide/starter-guide/switch-to-production).
527
-
528
- ## Performance enhancements (#3207)
529
-
530
- Internal API adjustments have reduced the footprint of ZenML API objects by up to 35%. This will particularly benefit users with large step and pipeline configurations. Further reductions will be implemented in our next release.
531
-
532
- ## Model Control Plane debut (#5648)
533
-
534
- ZenML now includes a preliminary version of the model control plane, a feature for registering models and their metadata on a single ZenML dashboard view. Future releases will provide more details. To test this early version, follow this [example](https://github.com/zenml-io/zenml-plugins/tree/main/model_control_plane).
535
-
536
- ## Breaking Changes
537
-
538
- - Environment variables `ZENML_AUTH_TYPE` and `ZENML_JWT_SECRET_KEY` have been renamed to `ZENML_SERVER_AUTH_SCHEME` and `ZENML_SERVER_JWT_SECRET_KEY`, respectively.
539
- - All ZenML server-issued JWT tokens now include an issuer and an audience. After the server update, current scheduled pipelines become invalidated. Reset your schedules and reconnect all clients to the server to obtain new tokens.
540
- - `UnmaterializedArtifact` has been relocated to `zenml.artifacts`. Change your import statement from `from zenml.materializers import UnmaterializedArtifact` to `from zenml.artifacts.unmaterialized_artifact import UnmaterializedArtifact`.
541
-
542
- ## Deprecations
543
-
544
- - `zenml.steps.external_artifact.ExternalArtifact` has moved to `zenml.artifacts.external_artifact.ExternalArtifact`.
545
-
546
-
547
- ## And the rest:
548
-
549
- * Discord alerter integration by @bhatt-priyadutt in https://github.com/zenml-io/zenml/pull/1818. Huge shoutout to you priyadutt - we're sending some swag your way!
550
- * Update Neptune dependency: `neptune-client` > `neptune` by @fa9r in https://github.com/zenml-io/zenml/pull/1837
551
- * Disable codeql on pushes to `develop` by @strickvl in https://github.com/zenml-io/zenml/pull/1842
552
- * Template not updating due to git diff misuse by @avishniakov in https://github.com/zenml-io/zenml/pull/1844
553
- * Bump feast version to fix api docs generation by @fa9r in https://github.com/zenml-io/zenml/pull/1845
554
- * CI Fixes / Improvements by @fa9r in https://github.com/zenml-io/zenml/pull/1848
555
- * Fix MLflow registry methods with empty metadata by @fa9r in https://github.com/zenml-io/zenml/pull/1843
556
- * Use configured template REF in CI by @avishniakov in https://github.com/zenml-io/zenml/pull/1851
557
- * Fix template REF in CI by @avishniakov in https://github.com/zenml-io/zenml/pull/1852
558
- * Fix AWS service connector installation requirements by @stefannica in https://github.com/zenml-io/zenml/pull/1850
559
- * [Docs] Improvements to custom flavor and custom orchestrator pages by @htahir1 in https://github.com/zenml-io/zenml/pull/1747
560
- * Optimizing the performance through database changes by @bcdurak in https://github.com/zenml-io/zenml/pull/1835
561
- * Add `README` for `examples` folder by @strickvl in https://github.com/zenml-io/zenml/pull/1860
562
- * Free up disk space in CI by @strickvl in https://github.com/zenml-io/zenml/pull/1863
563
- * Make Terraform Optional Again by @fa9r in https://github.com/zenml-io/zenml/pull/1855
564
- * Model watchtower becomes Model control plane by @strickvl in https://github.com/zenml-io/zenml/pull/1868
565
- * Update documentation by @VishalKumar-S in https://github.com/zenml-io/zenml/pull/1872
566
- * Fix CI by freeing up space on runner by @strickvl in https://github.com/zenml-io/zenml/pull/1866
567
- * Allow for `user` param to be specified (successfully) in `DockerSettings` by @strickvl in https://github.com/zenml-io/zenml/pull/1857
568
- * Add `get_pipeline_context` by @avishniakov in https://github.com/zenml-io/zenml/pull/1870
569
- * [Helm] Use GCP creds directly instead of a file. by @wjayesh in https://github.com/zenml-io/zenml/pull/1874
570
- * External authenticator support, authorized devices and web login by @stefannica in https://github.com/zenml-io/zenml/pull/1814
571
- * Connect to Service-connector at component registration by @safoinme in https://github.com/zenml-io/zenml/pull/1858
572
- * Fixing the `upgrade` migration script after the database changes by @bcdurak in https://github.com/zenml-io/zenml/pull/1877
573
- * [Model Control Plane] v0.1 mega-branch by @avishniakov in https://github.com/zenml-io/zenml/pull/1816
574
- * Update to templates by @htahir1 in https://github.com/zenml-io/zenml/pull/1878
575
- * Docs for orgs, rbac and sso by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1875
576
- * Convert network_config dict to NetworkConfig object in SageMaker orchestrator by @christianversloot in https://github.com/zenml-io/zenml/pull/1873
577
- * Add missing Docker build options for GCP image builder by @strickvl in https://github.com/zenml-io/zenml/pull/1856
578
- * Solve alembic branching issue by @avishniakov in https://github.com/zenml-io/zenml/pull/1879
579
- * Fix typo for 0.45 release by @strickvl in https://github.com/zenml-io/zenml/pull/1881
580
- * Only import ipinfo when necessary by @schustmi in https://github.com/zenml-io/zenml/pull/1888
581
- * [Model Control Plane] Suppress excessive logging in model control plane by @avishniakov in https://github.com/zenml-io/zenml/pull/1885
582
- * Add warning generation scripts for Gitbook docs by @strickvl in https://github.com/zenml-io/zenml/pull/1929
583
- * Fix calling `click` decorator in model CLI command by @safoinme in https://github.com/zenml-io/zenml/pull/1932
584
- * Lightweight template CI by @avishniakov in https://github.com/zenml-io/zenml/pull/1930
585
- * Update `Skypilot` orchestrator setting docs section by @safoinme in https://github.com/zenml-io/zenml/pull/1931
586
-
587
- ### New Contributors
588
- * @VishalKumar-S made their first contribution in https://github.com/zenml-io/zenml/pull/1872
589
-
590
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.44.3...0.45.0
591
-
592
-
593
- # 0.44.3
594
-
595
- ## New Orchestrator: SkyPilot (#1765)
596
-
597
- This release introduces a new orchestrator called SkyPilot. SkyPilot is a VM orchestrator
598
- that can be used to run ZenML pipelines on a VM of choice in one of the three supported
599
- cloud providers. It is a great choice for users who want to run ZenML pipelines on a GPU
600
- instance, but don't want to use Kubernetes or serverless orchestrators like SageMaker.
601
-
602
- ## Fixes and Improvements
603
-
604
- This release fixes several bugs and improves the user experience of the CLI and the
605
- documentation. The most notable changes are:
606
- * The new `connect` command that allows connecting all stack components within a stack to a
607
- service connector with a single command.
608
- * Adding an interactive flow to the `zenml stack deploy` command that allows users to
609
- configure their stack in a guided manner.
610
- * Add documentation on how to debug the SageMaker orchestrator, how to get started with
611
- a quick cloud stack on GCP, and documentation on the use of service connectors with
612
- enabled MFA.
613
-
614
- ## What's Changed
615
- * Add support for empty API token in Kubernetes service connector. by @stefannica in https://github.com/zenml-io/zenml/pull/1808
616
- * Use the container registry credentials to build images with the local image builder by @stefannica in https://github.com/zenml-io/zenml/pull/1804
617
- * Fix CI by @fa9r in https://github.com/zenml-io/zenml/pull/1809
618
- * Add documentation on how to debug the SageMaker orchestrator by @fa9r in https://github.com/zenml-io/zenml/pull/1810
619
- * Bump `rich` and `uvicorn` by @jlopezpena in https://github.com/zenml-io/zenml/pull/1750
620
- * SageMaker: Enable configuring authentication credentials explicitly by @fa9r in https://github.com/zenml-io/zenml/pull/1805
621
- * Fix: ZenML DB migrations don't run if zenml is installed in path with spaces by @stefannica in https://github.com/zenml-io/zenml/pull/1815
622
- * Fix mlflow 'run_name' variable overwriting by @iraadit in https://github.com/zenml-io/zenml/pull/1821
623
- * Add `SECURITY.md` file for vulnerability disclosures. by @strickvl in https://github.com/zenml-io/zenml/pull/1824
624
- * Add MFA limitation to service-connectors docs by @safoinme in https://github.com/zenml-io/zenml/pull/1827
625
- * Improve `zenml stack describe` to show `mlstacks` outputs by @strickvl in https://github.com/zenml-io/zenml/pull/1826
626
- * Documentation to get started with a quick cloud stack on GCP by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1807
627
- * Fix missing text in git repo docs by @strickvl in https://github.com/zenml-io/zenml/pull/1831
628
- * Handle irregular plural of `code_repository` for error message by @strickvl in https://github.com/zenml-io/zenml/pull/1832
629
- * Connect stack to a service account by @safoinme in https://github.com/zenml-io/zenml/pull/1828
630
- * SkyPilot Integration with VM Orchestrators by @htahir1 in https://github.com/zenml-io/zenml/pull/1765
631
- * Add interactive CLI flow for `zenml stack deploy` by @strickvl in https://github.com/zenml-io/zenml/pull/1829
632
- * Add `README` file for helm chart by @strickvl in https://github.com/zenml-io/zenml/pull/1830
633
- * Fix slack environment variable in in `generative_chat` example README by @bhatt-priyadutt in https://github.com/zenml-io/zenml/pull/1836
634
-
635
- ## New Contributors
636
- * @iraadit made their first contribution in https://github.com/zenml-io/zenml/pull/1821
637
-
638
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.44.2...0.44.3
639
-
640
-
641
- # 0.44.2
642
-
643
- This release contains updates for some of the most popular integrations, as well as several bug fixes and documentation improvements.
644
-
645
- ## Minor Default Behavior Changes
646
- * The default page size for `zenml list` commands was reduced to 20 (from 50) to speed up the runtime of such commands.
647
- * Simultaneous connection to local and remote ZenML servers is no longer possible since this caused several unexpected behaviors in the past.
648
-
649
- ## Integration Updates
650
- - The `mlflow` integration now supports the newest MLflow version `2.6.0`.
651
- - The `evidently` integration now supports the latest Evidently version `0.4.4`.
652
- - The SageMaker orchestrator of the `aws` integration now supports authentication via service connectors.
653
-
654
- ## What's Changed
655
-
656
- * Add `bandit` to CI for security linting by @strickvl in https://github.com/zenml-io/zenml/pull/1775
657
- * Add `mlstacks` compatibility check to CI by @strickvl in https://github.com/zenml-io/zenml/pull/1767
658
- * extend `StepContext` visibility to materializers by @avishniakov in https://github.com/zenml-io/zenml/pull/1769
659
- * Revert GH changes to fix colima bug in macos gh by @safoinme in https://github.com/zenml-io/zenml/pull/1779
660
- * Reduce CI runner count by @strickvl in https://github.com/zenml-io/zenml/pull/1777
661
- * Add E2E template as example by @avishniakov in https://github.com/zenml-io/zenml/pull/1766
662
- * Fix CI step names by @avishniakov in https://github.com/zenml-io/zenml/pull/1784
663
- * Add vulnerability scanner by @strickvl in https://github.com/zenml-io/zenml/pull/1776
664
- * Stop CI from running on push to `develop` by @strickvl in https://github.com/zenml-io/zenml/pull/1788
665
- * Skip update templates outside PR by @avishniakov in https://github.com/zenml-io/zenml/pull/1786
666
- * Fix azure service connector docs by @stefannica in https://github.com/zenml-io/zenml/pull/1778
667
- * fix: use k8s V1CronJob instead of V1beta1CronJob (#1781) by @francoisserra in https://github.com/zenml-io/zenml/pull/1787
668
- * Page limit adjustment by @bcdurak in https://github.com/zenml-io/zenml/pull/1791
669
- * Prevent simultaneous connection to local and remote servers by @fa9r in https://github.com/zenml-io/zenml/pull/1792
670
- * Update `MLflow` version to allow support for 2.6.0 by @safoinme in https://github.com/zenml-io/zenml/pull/1782
671
- * Improve `ConnectionError` error message by @fa9r in https://github.com/zenml-io/zenml/pull/1783
672
- * Stop old MLflow services when deploying new ones by @fa9r in https://github.com/zenml-io/zenml/pull/1793
673
- * Prevent adding private components into shared stacks by @fa9r in https://github.com/zenml-io/zenml/pull/1794
674
- * Publish server helm chart as part of CI by @wjayesh in https://github.com/zenml-io/zenml/pull/1740
675
- * Docs on the use of ZenML-specific environment variables by @strickvl in https://github.com/zenml-io/zenml/pull/1796
676
- * Add support for newer Evidently versions by @fa9r in https://github.com/zenml-io/zenml/pull/1780
677
- * Link E2E example to docs by @avishniakov in https://github.com/zenml-io/zenml/pull/1790
678
- * Copy step instance before applying configuration by @schustmi in https://github.com/zenml-io/zenml/pull/1798
679
- * Fix AWS container registry image pushing with service connectors by @fa9r in https://github.com/zenml-io/zenml/pull/1797
680
- * Make Sagemaker orchestrator work with connectors by @fa9r in https://github.com/zenml-io/zenml/pull/1799
681
- * Add rebase Pre-requisite to PRs template by @safoinme in https://github.com/zenml-io/zenml/pull/1801
682
-
683
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.44.1...0.44.2
684
-
685
- # 0.44.1
686
-
687
- This release brings various improvements over the previous version, mainly
688
- focusing on the usage of newly refactored `mlstacks` package, ZenML's `logging`
689
- module and the changes in our analytics.
690
-
691
- **Note:** *0.44.0 was removed from pypi due to an issue with the alembic versions which could affect the database state. A branch occurred in the versions: 0.42.1 -> [0.43.0, e1d66d91a099] -> 0.44.0. This release fixes the issue.<br>
692
- The primary issue arises when deploying version 0.44.0 using a MySQL backend. Although the alembic migration executes all tasks up to 0.44.0, the alembic version represented in the database remains at 0.43.0. This issue persists irrespective of the measures taken, including trying various versions after 0.43.0.<br>
693
- This imbalance leads to failure when running a second replica migration because the database's state is at 0.44.0 while the alembic version remains at 0.43.0. Similarly, attempts to run a second replica or restart the pod fail as the alembic tries to migrate from 0.43.0 to 0.44.0, which is not possible because these changes already exist in the database.<br>
694
- Please note: If you encounter this problem, we recommend that you rollback to previous versions and then upgrade to 0.43.0. If you still experience difficulties, please join our Slack community at https://zenml.io/slack. We're ready to help you work through this issue.*
695
-
696
- ## What's Changed
697
-
698
- * Remove e2e example and point to templates by @avishniakov in https://github.com/zenml-io/zenml/pull/1752
699
- * Add cloud architecture docs by @htahir1 in https://github.com/zenml-io/zenml/pull/1751
700
- * Update docs/docstrings following `mlstacks` repo name change by @strickvl in https://github.com/zenml-io/zenml/pull/1754
701
- * Update Cloud deployment scenarios by @stefannica in https://github.com/zenml-io/zenml/pull/1757
702
- * Fixing the logging message regarding caching by @bcdurak in https://github.com/zenml-io/zenml/pull/1748
703
- * Improvements to the step logs storage functionality by @bcdurak in https://github.com/zenml-io/zenml/pull/1733
704
- * Fix `qemu`/`colima` Github Actions bug by @safoinme in https://github.com/zenml-io/zenml/pull/1760
705
- * Bump `ruff` and `mypy` by @strickvl in https://github.com/zenml-io/zenml/pull/1762
706
- * Add Template Testing in Core by @avishniakov in https://github.com/zenml-io/zenml/pull/1745
707
- * Removing analytics v1 and optimizing v2 by @bcdurak in https://github.com/zenml-io/zenml/pull/1753
708
- * Update publish script to take a token by @strickvl in https://github.com/zenml-io/zenml/pull/1758
709
- * Update variable name for release publication token by @strickvl in https://github.com/zenml-io/zenml/pull/1764
710
- * Lock `MYSQL` Database during DB migrations by @safoinme in https://github.com/zenml-io/zenml/pull/1763
711
- * `mlstacks` integration (and deprecation of old deployment logic) by @strickvl in https://github.com/zenml-io/zenml/pull/1721
712
- * Upgrade typing extensions within api docs build workflow by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1741
713
- * Fix branching alembic history by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1772
714
- * Remove pinned `zenml` version specified in TOC for SDK docs by @strickvl in https://github.com/zenml-io/zenml/pull/1770
715
- * Modified the track metadata for the opt-in event by @bcdurak in https://github.com/zenml-io/zenml/pull/1774
716
- * Check alembic branch divergence in CI by @strickvl in https://github.com/zenml-io/zenml/pull/1773
717
- * Remove the DB lock by @safoinme in https://github.com/zenml-io/zenml/pull/1771
718
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.43.0...0.44.1
719
-
720
-
721
- # 0.44.0
722
-
723
- This release brings various improvements over the previous version, mainly
724
- focusing on the usage of newly refactored `mlstacks` package, ZenML's `logging`
725
- module and the changes in our analytics.
726
-
727
- ## What's Changed
728
-
729
- * Remove e2e example and point to templates by @avishniakov in https://github.com/zenml-io/zenml/pull/1752
730
- * Add cloud architecture docs by @htahir1 in https://github.com/zenml-io/zenml/pull/1751
731
- * Update docs/docstrings following `mlstacks` repo name change by @strickvl in https://github.com/zenml-io/zenml/pull/1754
732
- * Update Cloud deployment scenarios by @stefannica in https://github.com/zenml-io/zenml/pull/1757
733
- * Fixing the logging message regarding caching by @bcdurak in https://github.com/zenml-io/zenml/pull/1748
734
- * Improvements to the step logs storage functionality by @bcdurak in https://github.com/zenml-io/zenml/pull/1733
735
- * Fix `qemu`/`colima` Github Actions bug by @safoinme in https://github.com/zenml-io/zenml/pull/1760
736
- * Bump `ruff` and `mypy` by @strickvl in https://github.com/zenml-io/zenml/pull/1762
737
- * Add Template Testing in Core by @avishniakov in https://github.com/zenml-io/zenml/pull/1745
738
- * Removing analytics v1 and optimizing v2 by @bcdurak in https://github.com/zenml-io/zenml/pull/1753
739
- * Update publish script to take a token by @strickvl in https://github.com/zenml-io/zenml/pull/1758
740
- * Update variable name for release publication token by @strickvl in https://github.com/zenml-io/zenml/pull/1764
741
- * Lock `MYSQL` Database during DB migrations by @safoinme in https://github.com/zenml-io/zenml/pull/1763
742
- * `mlstacks` integration (and deprecation of old deployment logic) by @strickvl in https://github.com/zenml-io/zenml/pull/1721
743
-
744
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.43.0...0.44.0
745
-
746
- # 0.43.0
747
-
748
- This release brings limited support for Python 3.11,
749
- improves quickstart experience with the fully reworked flow,
750
- enhances the user experience while dealing with ZenML docs,
751
- offers new extended templates for projects,
752
- and fixes GCP connector creation issue.
753
-
754
- ## Limited support for Python 3.11
755
- This release adds limited support for Python 3.11.
756
- The following integrations are currently not supported with Python 3.11:
757
- - gcp
758
- - kubeflow
759
- - tekton
760
-
761
- This is because:
762
- - GCP packages that support Python 3.11 are not compatible with KFP 1
763
- - Upgrade to KFP 2 is blocked by the fact that Tekton doesn't have any release compatible with KFP 2 yet (https://github.com/zenml-io/zenml/pull/1697)
764
-
765
- ## Breaking Changes
766
-
767
- A minor breaking change in CLI for `zenml init`:
768
- - previously supported flag `--starter`
769
- - new flag `--template-with-defaults`
770
- - behavior remains the same - flag is responsible for usage of default settings in the template
771
-
772
- ## What's Changed
773
- * Disable implicit auth methods for service connectors by default by @stefannica in https://github.com/zenml-io/zenml/pull/1704
774
- * New quickstart by @strickvl in https://github.com/zenml-io/zenml/pull/1692
775
- * Set `MLflow` configuration as environment variables before deployment subprocess by @safoinme in https://github.com/zenml-io/zenml/pull/1705
776
- * Fix Migration Guide Links by @fa9r in https://github.com/zenml-io/zenml/pull/1706
777
- * Improve Input Validation Error Message by @fa9r in https://github.com/zenml-io/zenml/pull/1712
778
- * Update link in cloudpickle_materializer.py by @duarteocarmo in https://github.com/zenml-io/zenml/pull/1713
779
- * catch exceptions in `list_model_versions` by @avishniakov in https://github.com/zenml-io/zenml/pull/1703
780
- * Rename `transition_model_stage` to `transition_model_version_stage` by @avishniakov in https://github.com/zenml-io/zenml/pull/1707
781
- * pandas input to `predict` by @avishniakov in https://github.com/zenml-io/zenml/pull/1715
782
- * Small fixes to global config docs page by @schustmi in https://github.com/zenml-io/zenml/pull/1714
783
- * Allow specifying extra hosts for LocalDockerOrchestrator by @schustmi in https://github.com/zenml-io/zenml/pull/1709
784
- * Flexible use of `ignore_cols` in `evidently_report_step` by @avishniakov in https://github.com/zenml-io/zenml/pull/1711
785
- * Add external artifacts and direct links to run DAG by @fa9r in https://github.com/zenml-io/zenml/pull/1718
786
- * E2E flow example for templates by @avishniakov in https://github.com/zenml-io/zenml/pull/1710
787
- * Fix bug in service connector, Closes #1720 by @soubenz in https://github.com/zenml-io/zenml/pull/1726
788
- * Document the namespace and service account k8s orchestrator settings by @stefannica in https://github.com/zenml-io/zenml/pull/1722
789
- * Refactoring done and reduced some functions complexity and work-time by @thanseefpp in https://github.com/zenml-io/zenml/pull/1719
790
- * Update custom orchestrator guide by @schustmi in https://github.com/zenml-io/zenml/pull/1728
791
- * Improve error message when passing non-json serializable parameter by @schustmi in https://github.com/zenml-io/zenml/pull/1729
792
- * Bump `ruff` to 0.0.282 by @strickvl in https://github.com/zenml-io/zenml/pull/1730
793
- * Docs and README update for ZenML Cloud by @bcdurak in https://github.com/zenml-io/zenml/pull/1723
794
- * bump `MLflow` to 2.5.0 by @safoinme in https://github.com/zenml-io/zenml/pull/1708
795
- * Move Examples to Tests by @fa9r in https://github.com/zenml-io/zenml/pull/1673
796
- * Add Error Handling for Empty Pipelines by @fa9r in https://github.com/zenml-io/zenml/pull/1734
797
- * Revert "Add Error Handling for Empty Pipelines" by @fa9r in https://github.com/zenml-io/zenml/pull/1735
798
- * Changing the links to the public roadmap by @bcdurak in https://github.com/zenml-io/zenml/pull/1737
799
- * Add Error Handling for Empty Pipelines by @fa9r in https://github.com/zenml-io/zenml/pull/1736
800
- * Revisit `init --template` CLI for new templates by @avishniakov in https://github.com/zenml-io/zenml/pull/1731
801
- * Add Python 3.11 Support by @fa9r in https://github.com/zenml-io/zenml/pull/1702
802
- * fix error on scheduled pipelines with KubernetesOrchestrator by @francoisserra in https://github.com/zenml-io/zenml/pull/1738
803
- * Bugfix for identify calls with empty email strings by @bcdurak in https://github.com/zenml-io/zenml/pull/1739
804
-
805
- ## New Contributors
806
- * @duarteocarmo made their first contribution in https://github.com/zenml-io/zenml/pull/1713
807
- * @thanseefpp made their first contribution in https://github.com/zenml-io/zenml/pull/1719
808
-
809
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.42.0...0.43.0
810
-
811
- # 0.42.1
812
-
813
- This is a minor release that fixes a couple of minor issues and improves the
814
- quickstart example.
815
-
816
- ## Breaking Changes
817
-
818
- ### Disable Implicit Auth Methods for Service Connectors by Default
819
-
820
- The implicit authentication methods supported by cloud Service Connectors method
821
- may constitute a security risk, because they can give users access to the same
822
- cloud resources and services that the ZenML Server itself is allowed to access.
823
-
824
- For this reason, the default behavior of ZenML Service Connectors has been
825
- changed to disable implicit authentication methods by default. If you try to
826
- configure any of the AWS, GCP or Azure Service Connectors using the implicit
827
- authentication method, you will now receive an error message.
828
-
829
- To enable implicit authentication methods, you have to set the
830
- `ZENML_ENABLE_IMPLICIT_AUTH_METHODS` environment variable or the ZenML helm
831
- chart `enableImplicitAuthMethods` configuration option to `true`.
832
-
833
- ## What's Changed
834
- * Disable implicit auth methods for service connectors by default by @stefannica in https://github.com/zenml-io/zenml/pull/1704
835
- * New quickstart by @strickvl in https://github.com/zenml-io/zenml/pull/1692
836
- * Set `MLflow` configuration as environment variables before deployment subprocess by @safoinme in https://github.com/zenml-io/zenml/pull/1705
837
- * Fix Migration Guide Links by @fa9r in https://github.com/zenml-io/zenml/pull/1706
838
-
839
-
840
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.42.0...0.42.1
841
-
842
- # 0.42.0
843
-
844
- This release brings major user experience improvements to how ZenML logs are
845
- managed and displayed, removes Python 3.7 support, and fixes the Python 3.10
846
- PyYAML issues caused by the Cython 3.0 release.
847
-
848
- ## Improved Logging UX
849
-
850
- The log messages written by ZenML when running pipelines or executing ZenML CLI
851
- commands are now more concise and easier to digest and the log message colors
852
- were adjusted to be more intuitive. Additionally, all log messages, including
853
- custom prints to stdout, now show up as step logs in the dashboard.
854
-
855
- ## Breaking Changes
856
-
857
- ### Python 3.7 Support Dropped
858
- Python 3.7 reached its end of life on on June 27th, 2023. Since then, several
859
- MLOps tools have stopped supporting Python 3.7. To prevent dependency issues
860
- with our integrations and other open-source packages, ZenML will also no longer
861
- support Python 3.7 starting from this release.
862
-
863
- ### Dependency and Integration Version Updates
864
- ZenML now requires PyYAML 6 since older versions are broken under Python 3.10.
865
- Subsequently, the following integrations now require a higher package version:
866
- - Kubeflow now requires `kfp==1.8.22`
867
- - Tekton now requires `kfk-tekton==1.7.1`
868
- - Evidently now requires `evidently==0.2.7` or `evidently==0.2.8`
869
-
870
- ## What's Changed
871
- * Add missing quote in docs by @schustmi in https://github.com/zenml-io/zenml/pull/1674
872
- * Update Local Docker orchestrator docs by @strickvl in https://github.com/zenml-io/zenml/pull/1676
873
- * Relax `fastapi` dependency version by @fa9r in https://github.com/zenml-io/zenml/pull/1675
874
- * Improve flavor registration error message by @schustmi in https://github.com/zenml-io/zenml/pull/1671
875
- * Simplified Page Iteration by @fa9r in https://github.com/zenml-io/zenml/pull/1679
876
- * Document how to deploy ZenML with custom Docker image by @fa9r in https://github.com/zenml-io/zenml/pull/1672
877
- * Document the ZenML Client and Models by @fa9r in https://github.com/zenml-io/zenml/pull/1678
878
- * Add Label Studio text classification integration and example by @adamwawrzynski in https://github.com/zenml-io/zenml/pull/1658
879
- * Improve yaml config docs page by @schustmi in https://github.com/zenml-io/zenml/pull/1680
880
- * Catch correct exception when trying to access step context by @schustmi in https://github.com/zenml-io/zenml/pull/1681
881
- * Add option to only export requirements for installed integrations by @schustmi in https://github.com/zenml-io/zenml/pull/1682
882
- * Fix copy-paste error (Seldon / KServe docstring) by @strickvl in https://github.com/zenml-io/zenml/pull/1687
883
- * Add avishniakov to `teams.yaml` by @avishniakov in https://github.com/zenml-io/zenml/pull/1688
884
- * [NEW PR] Set contains_code to 1 instead of True by @kobiche in https://github.com/zenml-io/zenml/pull/1685
885
- * Misc slack fixes by @schustmi in https://github.com/zenml-io/zenml/pull/1686
886
- * Docs: Migration Guide by @fa9r in https://github.com/zenml-io/zenml/pull/1691
887
- * fix: :card_file_box: Extend pipeline spec storage length by @francoisserra in https://github.com/zenml-io/zenml/pull/1694
888
- * Make the workspace statistics endpoint more performant by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1689
889
- * Deprecate examples CLI by @avishniakov in https://github.com/zenml-io/zenml/pull/1693
890
- * Add cloud server deployment type by @schustmi in https://github.com/zenml-io/zenml/pull/1699
891
- * Fix Python 3.10 PyYAML Installation Issues by @fa9r in https://github.com/zenml-io/zenml/pull/1695
892
- * Remove Python 3.7 Support by @fa9r in https://github.com/zenml-io/zenml/pull/1652
893
- * Improved logs for pipeline execution and CLI usage by @bcdurak in https://github.com/zenml-io/zenml/pull/1664
894
- * Docs: Restructure Advanced Guide by @fa9r in https://github.com/zenml-io/zenml/pull/1698
895
-
896
- ## New Contributors
897
- * @adamwawrzynski made their first contribution in https://github.com/zenml-io/zenml/pull/1658
898
- * @avishniakov made their first contribution in https://github.com/zenml-io/zenml/pull/1688
899
- * @kobiche made their first contribution in https://github.com/zenml-io/zenml/pull/1685
900
-
901
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.41.0...0.42.0
902
-
903
-
904
- # 0.41.0
905
-
906
- ZenML release 0.41.0 comes with a second round of updates to the pipeline and
907
- step interface with major changes in how step outputs are defined, how
908
- information about previous runs can be fetched programmatically, and how
909
- information about the current run can be obtained.
910
-
911
- See [this docs page](https://docs.zenml.io/user-guide/migration-guide/migration-zero-forty)
912
- for an overview of all pipeline interface changes introduced since release
913
- 0.40.0 and for more information on how to migrate your existing ZenML pipelines
914
- to the latest syntax.
915
-
916
- ## Fetching Runs Programmatically (#1635)
917
- The entire syntax of fetching previous runs programmatically was majorly
918
- redesigned. While the overall user flow is still almost identical, the new
919
- approach does not contain pipeline-versioning-related inconsistencies, has a
920
- more intuitive syntax, and is also easier for users to learn since the new
921
- syntax uses the ZenML Client and response models natively instead of requiring
922
- the `zenml.post_execution` util functions and corresponding `...View` wrapper
923
- classes.
924
-
925
- ## Accessing Current Run Information (#1648)
926
- How to fetch information about the current pipeline run from within the run has
927
- been majorly redesigned:
928
- - Instead of being an argument of the step function, the `StepContext` is now a
929
- singleton that can be accessed via the new `zenml.get_step_context()` function.
930
- - The `StepContext` is now decoupled from the `StepEnvironment` and the
931
- `StepEnvironment` is deprecated.
932
- - The `StepContext` now contains the full `PipelineRunResponseModel` and
933
- `StepRunResponseModel` so all information about the run is accessible, not
934
- just the name / id / params.
935
-
936
- ## Defining Step Outputs (#1653)
937
- Instead of using the `zenml.steps.Output` class to annotate steps with multiple
938
- outputs, ZenML can now handle `Tuple` annotations natively and output names can
939
- now be assigned to any step output using `typing_extensions.Annotated`.
940
-
941
- ## What's Changed
942
- * Remove remaining BaseParameters references by @schustmi in https://github.com/zenml-io/zenml/pull/1625
943
- * Fix the s3 integration dependencies by @stefannica in https://github.com/zenml-io/zenml/pull/1641
944
- * Don't run whylogs example on windows by @stefannica in https://github.com/zenml-io/zenml/pull/1644
945
- * Adding the missing pages to our docs by @bcdurak in https://github.com/zenml-io/zenml/pull/1640
946
- * Connectors startup guide and stack component references by @stefannica in https://github.com/zenml-io/zenml/pull/1632
947
- * Fixing the listing functionality of several objects in our CLI by @bcdurak in https://github.com/zenml-io/zenml/pull/1616
948
- * Revamp Post Execution by @fa9r in https://github.com/zenml-io/zenml/pull/1635
949
- * Fix run configuration parameter merging by @schustmi in https://github.com/zenml-io/zenml/pull/1638
950
- * Simplify email opt-in telemetry by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1637
951
- * Fix Step Logs on Windows by @fa9r in https://github.com/zenml-io/zenml/pull/1645
952
- * Improve config section of containerization docs page by @schustmi in https://github.com/zenml-io/zenml/pull/1649
953
- * Validating slack alerter by @bhatt-priyadutt in https://github.com/zenml-io/zenml/pull/1609
954
- * Added some error handling in gcp cloud function scheduling by @htahir1 in https://github.com/zenml-io/zenml/pull/1634
955
- * CI: Disable Python 3.7 Mac Runners by @fa9r in https://github.com/zenml-io/zenml/pull/1650
956
- * Redesign `StepContext` by @fa9r in https://github.com/zenml-io/zenml/pull/1648
957
- * Fix output of dashboard url on pipeline run by @strickvl in https://github.com/zenml-io/zenml/pull/1629
958
- * fix: use k8s orchestrator service account in step pod's manifest by @francoisserra in https://github.com/zenml-io/zenml/pull/1654
959
- * Fix Image Builder Warning Message by @fa9r in https://github.com/zenml-io/zenml/pull/1659
960
- * New step output annotations by @schustmi in https://github.com/zenml-io/zenml/pull/1653
961
- * Add Python 3.10 to listed versions supported via PyPi by @strickvl in https://github.com/zenml-io/zenml/pull/1662
962
- * Add DatabricksShell on list of notebooks allowed to show dashboard by @lucasbissaro in https://github.com/zenml-io/zenml/pull/1643
963
- * Fixing broken links in our examples folder by @bcdurak in https://github.com/zenml-io/zenml/pull/1661
964
- * Feature/frw 2013 docs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1639
965
- * Update Pipeline Migration Page by @fa9r in https://github.com/zenml-io/zenml/pull/1667
966
- * Fix/set env variables before installing packages by @lopezco in https://github.com/zenml-io/zenml/pull/1665
967
- * Fix the `zenml deploy` story by @wjayesh in https://github.com/zenml-io/zenml/pull/1651
968
- * Always keep link to API docs pointed at the version of the release branch by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1636
969
- * Fix BentoML deployer by @safoinme in https://github.com/zenml-io/zenml/pull/1647
970
- * Corrected all mentions in docs from API docs to SDK docs. by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1669
971
- * Update outdated docs by @schustmi in https://github.com/zenml-io/zenml/pull/1668
972
-
973
- ## New Contributors
974
- * @lucasbissaro made their first contribution in https://github.com/zenml-io/zenml/pull/1643
975
- * @lopezco made their first contribution in https://github.com/zenml-io/zenml/pull/1665
976
-
977
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.40.3...0.41.0
978
-
979
- # 0.40.3
980
-
981
- This is a minor ZenML release that introduces a couple of new features:
982
-
983
- * the [Azure Service Connector](https://docs.zenml.io/stacks-and-components/auth-management/azure-service-connector) is now available in addition to the AWS and GCP ones. It can be used to connect ZenML and Stack Components to Azure cloud infrastructure resources like Azure Blob Storage, Azure Container Registry and Azure Kubernetes Service.
984
- * Service Connectors can now also be managed through the ZenML Dashboard
985
- * adds `zenml secret export` CLI command to export secrets from the ZenML Secret Store to a local file
986
- * adds the ability to create/update ZenML secrets from JSON/YAML files or command line arguments (courtesy of @bhatt-priyadutt)
987
-
988
- In addition to that, this release also contains a couple of bug fixes and improvements, including:
989
-
990
- * better documentation and fixes for the ZenML [Vertex AI Orchestrator](https://docs.zenml.io/stacks-and-components/component-guide/orchestrators/vertex) and [Vertex AI Step Operator](https://docs.zenml.io/stacks-and-components/component-guide/step-operators/vertex)
991
- * adjust Seldon and BentoML Steps and Examples to new pipeline interface
992
-
993
- ## What's Changed
994
- * Add option to list all resources when verifying service connector config by @stefannica in https://github.com/zenml-io/zenml/pull/1573
995
- * Fix sandbox time limit by @schustmi in https://github.com/zenml-io/zenml/pull/1602
996
- * Secrets input structure change method by @bhatt-priyadutt in https://github.com/zenml-io/zenml/pull/1547
997
- * Implement Azure service connector by @stefannica in https://github.com/zenml-io/zenml/pull/1589
998
- * Adding the ability to tag the source of an event for the analytics by @bcdurak in https://github.com/zenml-io/zenml/pull/1599
999
- * Move all the logic into the script to make it as easy as possible to … by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1605
1000
- * Only set mysql session variables when necessary by @schustmi in https://github.com/zenml-io/zenml/pull/1568
1001
- * Bug in creating upstream_steps by @sidsaurb in https://github.com/zenml-io/zenml/pull/1601
1002
- * Added logs endpoint to display on the dashboard by @htahir1 in https://github.com/zenml-io/zenml/pull/1526
1003
- * Fix CI by @fa9r in https://github.com/zenml-io/zenml/pull/1612
1004
- * Fix Azure Integration Imports and Improve Flavor Registration Error Handling by @fa9r in https://github.com/zenml-io/zenml/pull/1615
1005
- * Deprecation Cleanup by @fa9r in https://github.com/zenml-io/zenml/pull/1608
1006
- * Cleanup Local Logging Temp Files by @fa9r in https://github.com/zenml-io/zenml/pull/1621
1007
- * Add cloud orchestrator warning message by @strickvl in https://github.com/zenml-io/zenml/pull/1418
1008
- * Update custom code run in sandbox docs by @safoinme in https://github.com/zenml-io/zenml/pull/1610
1009
- * Remove the GH Actions review reminder bot by @strickvl in https://github.com/zenml-io/zenml/pull/1624
1010
- * Automatically optimize image sizes on PR creation by @strickvl in https://github.com/zenml-io/zenml/pull/1626
1011
- * Deprecation Warning Improvements by @fa9r in https://github.com/zenml-io/zenml/pull/1620
1012
- * Fix ZenML Installation when FastAPI is not Installed by @fa9r in https://github.com/zenml-io/zenml/pull/1627
1013
- * Fix unnecessary / extra deprecation warnings by @strickvl in https://github.com/zenml-io/zenml/pull/1630
1014
- * Add `zenml secret export` CLI command by @fa9r in https://github.com/zenml-io/zenml/pull/1607
1015
- * Missing pipeline features docs by @schustmi in https://github.com/zenml-io/zenml/pull/1619
1016
- * Fix for valid secret name by @bhatt-priyadutt in https://github.com/zenml-io/zenml/pull/1617
1017
- * Fix and document Vertex AI orchestrator and step operator by @stefannica in https://github.com/zenml-io/zenml/pull/1606
1018
- * Deprecate KServe Integration by @fa9r in https://github.com/zenml-io/zenml/pull/1631
1019
- * Adjust Seldon Steps and Examples to New Pipeline Interface by @fa9r in https://github.com/zenml-io/zenml/pull/1560
1020
- * Adjust BentoML Steps and Example to New Pipeline Interface by @fa9r in https://github.com/zenml-io/zenml/pull/1614
1021
- * Moved kubernetes imports to inner function to avoid module not found error by @htahir1 in https://github.com/zenml-io/zenml/pull/1622
1022
-
1023
- ## New Contributors
1024
- * @sidsaurb made their first contribution in https://github.com/zenml-io/zenml/pull/1601
1025
-
1026
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.40.2...test
1027
-
1028
- # 0.40.2
1029
-
1030
- Documentation and example updates.
1031
-
1032
- ## What's Changed
1033
- * Update Example for sandbox by @safoinme in https://github.com/zenml-io/zenml/pull/1576
1034
- * Document `zenml show` by @fa9r in https://github.com/zenml-io/zenml/pull/1570
1035
- * Clean up for the new docs by @bcdurak in https://github.com/zenml-io/zenml/pull/1575
1036
- * Add orchestrator outputs for sandbox examples by @strickvl in https://github.com/zenml-io/zenml/pull/1579
1037
- * Docs: Added some adjustments to the code repository page. by @bcdurak in https://github.com/zenml-io/zenml/pull/1582
1038
- * Sandbox documentation (and other docs updates) by @strickvl in https://github.com/zenml-io/zenml/pull/1574
1039
- * Minor README update regarding the sandbox. by @bcdurak in https://github.com/zenml-io/zenml/pull/1586
1040
- * Fix failing `mlflow_tracking` example test by @strickvl in https://github.com/zenml-io/zenml/pull/1581
1041
- * Bump `ruff` and `mypy` by @strickvl in https://github.com/zenml-io/zenml/pull/1590
1042
- * Remove `config.yaml` references in example docs by @strickvl in https://github.com/zenml-io/zenml/pull/1585
1043
- * update mlflow tracking example and reduce number of epochs by @safoinme in https://github.com/zenml-io/zenml/pull/1598
1044
- * Improve error message when requirements file does not exist by @schustmi in https://github.com/zenml-io/zenml/pull/1596
1045
- * Fix build reuse for integrations with apt packages by @schustmi in https://github.com/zenml-io/zenml/pull/1594
1046
- * make the `Github` repo token optional by @safoinme in https://github.com/zenml-io/zenml/pull/1593
1047
-
1048
-
1049
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.40.1...0.40.2
1050
-
1051
- # 0.40.1
1052
-
1053
- Small bug and docs fixes following the 0.40.0 release.
1054
-
1055
- ## What's Changed
1056
- * Convert dict to tuple in ArtifactConfiguration validator by @schustmi in https://github.com/zenml-io/zenml/pull/1571
1057
- * Docs cleanup by @schustmi in https://github.com/zenml-io/zenml/pull/1569
1058
- * Fix `boto3<=1.24.59` by @safoinme in https://github.com/zenml-io/zenml/pull/1572
1059
-
1060
-
1061
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.40.0...0.40.1
1062
-
1063
- # 0.40.0
1064
-
1065
- ZenML release 0.40.0 introduces two big updates: a fresh and more flexible pipeline interface and a new way to connect and authenticate with external services in ZenML Connectors. See below for full details on these two major new sets of functionality.
1066
-
1067
- The release also contains many bug fixes and quality-of-life improvements. Specifically, we reworked our documentation from the ground up with particular attention to the structure to help you find what you need. Our [Label Studio integration example](https://github.com/zenml-io/zenml/tree/main/examples/label_studio_annotation) is now working again and allows you to use more recent versions of the `label-studio` package that backs it.
1068
-
1069
- ## A Fresh Pipeline Interface
1070
-
1071
- This release introduces a completely reworked interface for developing your ZenML steps and pipelines:
1072
-
1073
- * Increased flexibility when defining steps: Steps can now have `Optional`, `Union`, and `Any` type annotations for their inputs and outputs. Additionally, default values are allowed for step inputs.
1074
-
1075
- ```python
1076
- @step
1077
- def trainer(data: pd.Dataframe, start_model: Union[svm.SVC, svm.SVR], coef0: Optional[int] = None) -> Any:
1078
- pass
1079
- ```
1080
-
1081
- * You can now easily run a step outside of a pipeline, making it easier to test and debug your code:
1082
-
1083
- ```python
1084
- trainer(data=pd.Dataframe(...), start_model=svc.SVC(...))
1085
- ```
1086
-
1087
- * External artifacts can be used to pass values to steps that are not produced by an upstream step. This provides more flexibility when working with external data or models:
1088
-
1089
- ```python
1090
- from zenml.steps.external_artifact import ExternalArtifact
1091
-
1092
- @pipeline
1093
- def my_pipeline(lr: float):
1094
- data = process_data()
1095
- trainer(data=data, start_model=ExternalArtifact(svc.SVC(...)))
1096
- ```
1097
-
1098
- * You can now call steps multiple times inside a pipeline, allowing you to create more complex workflows and reuse steps with different parameters:
1099
-
1100
- ```python
1101
- @pipeline
1102
- def my_pipeline(step_count: int) -> None:
1103
- data = load_data_step()
1104
- after = []
1105
- for i in range(step_count):
1106
- train_step(data, learning_rate=i * 0.0001, id=f"train_step_{i}")
1107
- after.append(f"train_step_{i}")
1108
- model = select_model_step(..., after=after)
1109
- ```
1110
-
1111
- * Pipelines can now define inputs and outputs, providing a clearer interface for working with data and dependencies between pipelines:
1112
-
1113
- ```python
1114
- @pipeline(enable_cache=False)
1115
- def subpipeline(pipeline_param: int):
1116
- out = step_1(k=None)
1117
- step_2(a=3, b=pipeline_param)
1118
- return 17
1119
- ```
1120
-
1121
- * You can now call pipelines within other pipelines. This currently does not execute the inner pipeline but instead adds its steps to the parent pipeline, allowing you to create modular and reusable workflows:
1122
-
1123
- ```python
1124
- @pipeline(enable_cache=False)
1125
- def my_pipeline(a: int = 1):
1126
- p1_output = subpipeline(pipeline_param=22)
1127
- step_2(a=a, b=p1_output)
1128
- ```
1129
-
1130
- To get started, simply import the new `@step` and `@pipeline` decorator and check out our new [starter guide](https://docs.zenml.io/user-guide/starter-guide) for more information.
1131
-
1132
- ```python
1133
- from zenml import step, pipeline
1134
-
1135
- @step
1136
- def my_step(...):
1137
- ...
1138
-
1139
- @pipeline
1140
- def my_pipeline(...):
1141
- ...
1142
- ```
1143
-
1144
- The old pipeline and step interface is still working using the imports from previous ZenML releases but is deprecated and will be removed in the future.
1145
-
1146
- ## 'Connectors' for authentication
1147
-
1148
- In this update, we're pleased to present a new feature to ZenML: Service Connectors. The intention behind these connectors is to offer a reliable and more user-friendly method for integrating ZenML with external resources and services. We aim to simplify processes such as validating, storing, and generating security-sensitive data, along with the authentication and authorization of access to external services. We believe ZenML Service Connectors will be a useful tool to alleviate some of the common challenges in managing pipeline across various Stack Components.
1149
-
1150
- Regardless of your background in infrastructure management - whether you're a beginner looking for quick cloud stack integration, or an experienced engineer focused on maintaining robust infrastructure security practices - our Service Connectors are designed to assist your work while maintaining high security standards.
1151
-
1152
- Here are just a few ways you could use ZenML Service Connectors:
1153
-
1154
- - Easy utilization of cloud resources: With ZenML's Service Connectors, you can use resources from AWS, GCP, and Azure without the need for extensive knowledge of cloud infrastructure or environment configuration. All you'll need is a ZenML Service Connector and a few Python libraries.
1155
- - Assisted setup with security in mind: Our Service Connectors come with features for configuration validation and verification, the generation of temporary, low-privilege credentials, and pre-authenticated and pre-configured clients for Python libraries.
1156
- - Easy local configuration transfer: ZenML's Service Connectors aim to resolve the reproducibility issue in ML pipelines. They do this by automatically transferring authentication configurations and credentials from your local machine, storing them securely, and allowing for effortless sharing across different environments.
1157
-
1158
- [Visit our documentation pages](https://docs.zenml.io/stacks-and-components/auth-management) to learn more about ZenML Connectors and how you can use them in a way that supports your ML workflows.
1159
-
1160
- ## What's Changed
1161
-
1162
- * Cleanup remaining references of `zenml.artifacts` by @fa9r in https://github.com/zenml-io/zenml/pull/1534
1163
- * Upgrading the `black` version by @bcdurak in https://github.com/zenml-io/zenml/pull/1535
1164
- * Remove dev breakpoints by @strickvl in https://github.com/zenml-io/zenml/pull/1540
1165
- * Removing old option command from contribution doc by @bhatt-priyadutt in https://github.com/zenml-io/zenml/pull/1544
1166
- * Improve CLI help text for `zenml integration install -i ...` by @strickvl in https://github.com/zenml-io/zenml/pull/1545
1167
- * Fix RestZenStore error handling for list responses by @fa9r in https://github.com/zenml-io/zenml/pull/1539
1168
- * Simplify Dashboard UX via `zenml.show()` by @fa9r in https://github.com/zenml-io/zenml/pull/1511
1169
- * Removed hardcoded variable by @bhatt-priyadutt in https://github.com/zenml-io/zenml/pull/1543
1170
- * Revert Quickstart Changes by @fa9r in https://github.com/zenml-io/zenml/pull/1546
1171
- * Deprecate some long overdue functions by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1541
1172
- * ZenML Connectors by @stefannica in https://github.com/zenml-io/zenml/pull/1514
1173
- * Fix automatic dashboard opening after `zenml up` by @fa9r in https://github.com/zenml-io/zenml/pull/1551
1174
- * Update Neptune README by @strickvl in https://github.com/zenml-io/zenml/pull/1554
1175
- * Update example READMEs following deployment PR by @strickvl in https://github.com/zenml-io/zenml/pull/1555
1176
- * Fix and update Label Studio example by @strickvl in https://github.com/zenml-io/zenml/pull/1542
1177
- * Fix linter errors by @stefannica in https://github.com/zenml-io/zenml/pull/1557
1178
- * Add Vertex as orchestrator and step operator to deploy CLI by @wjayesh in https://github.com/zenml-io/zenml/pull/1559
1179
- * Fix dashboard secret references by @stefannica in https://github.com/zenml-io/zenml/pull/1561
1180
- * New pipeline and step interface by @schustmi in https://github.com/zenml-io/zenml/pull/1466
1181
- * Major Documentation Rehaul by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1562
1182
- * Easy CSV Visualization by @fa9r in https://github.com/zenml-io/zenml/pull/1556
1183
-
1184
- ## New Contributors
1185
- * @bhatt-priyadutt made their first contribution in https://github.com/zenml-io/zenml/pull/1544
1186
-
1187
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.39.1...0.40
1188
-
1189
- # 0.39.1
1190
-
1191
- Minor hotfix release for running ZenML in Google Colab environments.
1192
-
1193
- ## What's Changed
1194
- * Fix Source Resolving in Colab by @fa9r in https://github.com/zenml-io/zenml/pull/1530
1195
-
1196
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.39.0...0.39.1
1197
-
1198
- # 0.39.0
1199
-
1200
- ZenML release 0.39.0 introduces several big new features:
1201
- - The `zenml stack recipe` CLI commands now support fine-grained handling of
1202
- individual stack components.
1203
- - Artifacts are now automatically visualized in the dashboard.
1204
- - Materializers received an overhaul: a new `cloudpickle` default materializer
1205
- was added that works for arbitrary objects, and a `pycaret` materializer
1206
- that can handle various modeling frameworks in a unified format.
1207
-
1208
- The release also contains many bug fixes and quality-of-life improvements, such
1209
- as new settings options for the SageMaker and Kubernetes orchestrators.
1210
-
1211
- ## Individual Stack Component Deployment
1212
-
1213
- In this release, we've enhanced the ZenML stack recipe CLI to support
1214
- conditional deployment, destruction, and configuration of individual stack
1215
- components. Users can now quickly deploy and destroy components with options for
1216
- each flavor, and pass a config file for custom variables. The new `output` CLI
1217
- command allows users to retrieve outputs from their recipes. Overall, this
1218
- update streamlines deploying and managing stack components by providing a more
1219
- efficient and user-friendly experience.
1220
-
1221
- ## Artifact Visualization
1222
-
1223
- Artifact visualizations are now automatically extracted by ZenML and embedded in
1224
- the ZenML dashboard. Visualizations can now be defined by overriding the
1225
- `save_visualizations` method of the materializer that handles an artifact.
1226
- These visualizations are then automatically shown in the dashboard and can also
1227
- be displayed in Jupyter notebooks using the new `visualize` post-execution
1228
- method.
1229
-
1230
- ## Default Cloudpickle Materializer
1231
-
1232
- ZenML now uses `cloudpickle` under the hood to save/load artifacts that other
1233
- materializers cannot handle. This makes it even easier to get started with
1234
- ZenML since you no longer need to define custom materializers if you just
1235
- want to experiment with some new data types.
1236
-
1237
- ## What's Changed
1238
- * Docs/zenml hub documentation by @bcdurak in https://github.com/zenml-io/zenml/pull/1490
1239
- * Sort integration list before display by @strickvl in https://github.com/zenml-io/zenml/pull/1494
1240
- * Update docs to surface CLI filtering syntax by @strickvl in https://github.com/zenml-io/zenml/pull/1496
1241
- * ZenML Hub Tests & CLI Improvements by @fa9r in https://github.com/zenml-io/zenml/pull/1495
1242
- * Delete Legacy Docs by @fa9r in https://github.com/zenml-io/zenml/pull/1497
1243
- * Improve the REST API error handling by @stefannica in https://github.com/zenml-io/zenml/pull/1451
1244
- * Fix circular import of PipelineRunConfiguration by @schustmi in https://github.com/zenml-io/zenml/pull/1501
1245
- * Delete Deprecated Artifacts and Materializer Code by @fa9r in https://github.com/zenml-io/zenml/pull/1498
1246
- * Allow filtering runs by code repo id by @schustmi in https://github.com/zenml-io/zenml/pull/1499
1247
- * Add example to docs for passing stack component specific settings by @christianversloot in https://github.com/zenml-io/zenml/pull/1506
1248
- * Increase step run field lengths by @schustmi in https://github.com/zenml-io/zenml/pull/1503
1249
- * Fix Sagemaker orchestrator pipeline name bug by @strickvl in https://github.com/zenml-io/zenml/pull/1508
1250
- * Generate unique SageMaker training job name based on pipeline and ste… by @christianversloot in https://github.com/zenml-io/zenml/pull/1505
1251
- * [CI Fix] Pin Llama Index Version by @fa9r in https://github.com/zenml-io/zenml/pull/1516
1252
- * Basic PyCaret integration and materializer by @christianversloot in https://github.com/zenml-io/zenml/pull/1512
1253
- * Specify line endings for different operating systems by @strickvl in https://github.com/zenml-io/zenml/pull/1513
1254
- * Extend SageMakerOrchestratorSettings with processor_args enabling step level configuration by @christianversloot in https://github.com/zenml-io/zenml/pull/1509
1255
- * Fix post execution `get_pipeline()` and `pipeline.get_runs()` by @fa9r in https://github.com/zenml-io/zenml/pull/1510
1256
- * Default `cloudpickle` Materializer & Materializer Inheritance by @fa9r in https://github.com/zenml-io/zenml/pull/1507
1257
- * Artifact Visualization by @fa9r in https://github.com/zenml-io/zenml/pull/1472
1258
- * Add Kubernetes Orchestrator Settings by @fa9r in https://github.com/zenml-io/zenml/pull/1518
1259
- * Bump `ruff` to 0.0.265 by @strickvl in https://github.com/zenml-io/zenml/pull/1520
1260
- * feat: Set cloud function service account to the one defined in Vertex… by @francoisserra in https://github.com/zenml-io/zenml/pull/1519
1261
- * Fix Kubernetes Orchestrator Config Loading by @fa9r in https://github.com/zenml-io/zenml/pull/1523
1262
- * Resolve path during module resolving by @schustmi in https://github.com/zenml-io/zenml/pull/1521
1263
- * Fix `SO_REUSEPORT` issue by @fa9r in https://github.com/zenml-io/zenml/pull/1524
1264
- * Add individual stack component deployment through recipes by @wjayesh in https://github.com/zenml-io/zenml/pull/1328
1265
- * Raise 501 for Unauthenticated Artifact Stores by @fa9r in https://github.com/zenml-io/zenml/pull/1522
1266
- * Fix Duplicate Step Error by @fa9r in https://github.com/zenml-io/zenml/pull/1527
1267
- * Fix pulling of stack recipes on `zenml init` by @wjayesh in https://github.com/zenml-io/zenml/pull/1528
1268
- * Store dockerfile and requirements for builds by @schustmi in https://github.com/zenml-io/zenml/pull/1525
1269
-
1270
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.38.0...0.39.0
1271
-
1272
- # 0.38.0
1273
-
1274
- The 0.38.0 ZenML release is a major milestone for the ZenML project. It marks
1275
- the introduction of the ZenML Hub, a central platform that enables our users to
1276
- search, share and discover community-contributed code, such as stack component
1277
- flavors, materializers, and pipeline steps. The ZenML Hub allows our users to
1278
- extend their ZenML experience by leveraging the community's diverse range of
1279
- implementations and MLOps best practices.
1280
-
1281
- If you're interested in learning more about our motivation for implementing the
1282
- ZenML Hub and our plans for its future, we invite you to read
1283
- [our new blog post](https://blog.zenml.io/zenml-hub-launch). In addition to
1284
- this technical documentation, the blog post provides a comprehensive overview
1285
- of the ZenML Hub's goals and objectives, as well as the features that
1286
- we plan to introduce in the future.
1287
-
1288
- Aside from this major new feature, the release also includes a number of small
1289
- improvements and bug fixes.
1290
-
1291
- ## What's Changed
1292
- * Fix broken ENV variable by @strickvl in https://github.com/zenml-io/zenml/pull/1458
1293
- * fix screenshot size in code repo by @safoinme in https://github.com/zenml-io/zenml/pull/1467
1294
- * Fix CI (Deepchecks integration tests) by @fa9r in https://github.com/zenml-io/zenml/pull/1470
1295
- * chore: update teams.yml by @Cahllagerfeld in https://github.com/zenml-io/zenml/pull/1459
1296
- * Fix `BuiltInContainerMaterializer` for subtypes and non-built-in types by @fa9r in https://github.com/zenml-io/zenml/pull/1464
1297
- * Kubernetes Orchestrator Improvements by @fa9r in https://github.com/zenml-io/zenml/pull/1460
1298
- * Fix flaky CLI tests by @schustmi in https://github.com/zenml-io/zenml/pull/1465
1299
- * Fix circular import during type checking by @schustmi in https://github.com/zenml-io/zenml/pull/1463
1300
- * Allow secret values replacement in REST API PUT by @stefannica in https://github.com/zenml-io/zenml/pull/1471
1301
- * Fix two steps race condition by @safoinme in https://github.com/zenml-io/zenml/pull/1473
1302
- * Downgrading ZenML Version in global config by @safoinme in https://github.com/zenml-io/zenml/pull/1474
1303
- * Revert "Downgrading ZenML Version in global config" by @safoinme in https://github.com/zenml-io/zenml/pull/1476
1304
- * Add metadata to stack components by @wjayesh in https://github.com/zenml-io/zenml/pull/1416
1305
- * remove modules from the list output for stack recipes by @wjayesh in https://github.com/zenml-io/zenml/pull/1480
1306
- * Pin `openai` integration to `>0.27.0` by @strickvl in https://github.com/zenml-io/zenml/pull/1461
1307
- * Apply formatting fixes to `/scripts` by @strickvl in https://github.com/zenml-io/zenml/pull/1462
1308
- * Move import outside of type checking by @schustmi in https://github.com/zenml-io/zenml/pull/1482
1309
- * Delete extra word from `bentoml` docs by @strickvl in https://github.com/zenml-io/zenml/pull/1484
1310
- * Remove top-level config from recommended repo structure by @schustmi in https://github.com/zenml-io/zenml/pull/1485
1311
- * Bump `mypy` and `ruff` by @strickvl in https://github.com/zenml-io/zenml/pull/1481
1312
- * ZenML Version Downgrade - Silence Warnning by @safoinme in https://github.com/zenml-io/zenml/pull/1477
1313
- * Update ZenServer recipes to include secret stores by @wjayesh in https://github.com/zenml-io/zenml/pull/1483
1314
- * Fix alembic order by @schustmi in https://github.com/zenml-io/zenml/pull/1487
1315
- * Fix source resolving for classes in notebooks by @schustmi in https://github.com/zenml-io/zenml/pull/1486
1316
- * fix: use pool_pre_ping to discard invalid SQL connections when borrow… by @francoisserra in https://github.com/zenml-io/zenml/pull/1489
1317
-
1318
- ## New Contributors
1319
- * @Cahllagerfeld made their first contribution in https://github.com/zenml-io/zenml/pull/1459
1320
- * @francoisserra made their first contribution in https://github.com/zenml-io/zenml/pull/1489
1321
-
1322
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.37.0...0.38.0
1323
-
1324
- # 0.37.0
1325
-
1326
- In this ZenML release, we are pleased to introduce a compelling new feature:
1327
- [ZenML Code Repositories](https://docs.zenml.io/starter-guide/production-fundamentals/code-repositories).
1328
- This innovative addition formalizes the principles of code versioning and
1329
- tracking while consolidating their pivotal role in executing pipelines and
1330
- caching pipeline steps. With Code Repositories, ZenML is equipped to maintain an
1331
- accurate record of the code version employed in your pipeline runs. Furthermore,
1332
- executing a pipeline that is monitored by a registered code repository can
1333
- significantly accelerate the Docker image building process for containerized
1334
- stack components.
1335
-
1336
- As is the case with everything ZenML, we designed the ZenML Code Repository
1337
- concept as a highly extensible abstraction. The update defines the basic Code
1338
- Repository interface an includes two implementations integrating ZenML with
1339
- two popular code repository flavors: GitHub and GitLab.
1340
-
1341
- ## Other Enhancements
1342
-
1343
- We've updated the `pytorch-lightning` integration to support the `2.0` version.
1344
- We also updated the `mlflow` integration to support the `2.2.2` version.
1345
-
1346
- **IMPORTANT**: it is not recommended to continue using MLflow older than `2.2.1`
1347
- as a model registry with ZenML, as [it is vulnerable to a security issue](https://github.com/advisories/GHSA-xg73-94fp-g449).
1348
-
1349
- Last but not least, two stellar additions from our community members:
1350
-
1351
- * `zenml stack delete` now supports a `--recursive` flag to delete all
1352
- components in a stack. Many thanks to @KenmogneThimotee for the contribution!
1353
- * the ZenML Sagemaker step operator has been expanded to support S3 input data
1354
- and additional input arguments. Many thanks to @christianversloot for the
1355
- contribution!
1356
-
1357
- ## Breaking Changes
1358
-
1359
- The ZenML GitHub Orchestrator and GitHub Secrets Manager have been removed in
1360
- this release. Given that their concerns overlapped with the new ZenML GitHub
1361
- Code Repository and they didn't provide sufficient value on their own, we
1362
- decided to discontinue them. If you were using these components, you can
1363
- continue to use GitHub Actions to run your pipelines, in combination with the
1364
- ZenML GitHub Code Repository.
1365
-
1366
- ## What's Changed
1367
- * Test integration for seldon example by @safoinme in https://github.com/zenml-io/zenml/pull/1285
1368
- * Update `pytorch-lightning` to support `2.0` by @safoinme in https://github.com/zenml-io/zenml/pull/1425
1369
- * Code repository by @schustmi in https://github.com/zenml-io/zenml/pull/1344
1370
- * Bump `ruff` to 0.259 by @strickvl in https://github.com/zenml-io/zenml/pull/1439
1371
- * Change `pipeline_run_id` to `run_name` by @safoinme in https://github.com/zenml-io/zenml/pull/1390
1372
- * Update `mypy>=1.1.1` and fix new errors by @safoinme in https://github.com/zenml-io/zenml/pull/1432
1373
- * Add `--upgrade` option to ZenML integration install by @safoinme in https://github.com/zenml-io/zenml/pull/1435
1374
- * Bump `MLflow` to 2.2.2 by @safoinme in https://github.com/zenml-io/zenml/pull/1441
1375
- * HuggingFace Spaces server deployment option by @strickvl in https://github.com/zenml-io/zenml/pull/1427
1376
- * Bugfix for server import by @bcdurak in https://github.com/zenml-io/zenml/pull/1442
1377
- * Fix HF Spaces URL by @strickvl in https://github.com/zenml-io/zenml/pull/1444
1378
- * Remove all `zenml.cli` imports outside of `zenml.cli` by @fa9r in https://github.com/zenml-io/zenml/pull/1447
1379
- * Add recursive deletion of components for `zenml stack delete` by @KenmogneThimotee in https://github.com/zenml-io/zenml/pull/1437
1380
- * Temporarily disable primary key requirement for newer mysql versions by @schustmi in https://github.com/zenml-io/zenml/pull/1450
1381
- * Add step name suffix for sagemaker job name by @schustmi in https://github.com/zenml-io/zenml/pull/1452
1382
- * Code repo docs by @schustmi in https://github.com/zenml-io/zenml/pull/1448
1383
- * Allow resource settings for airflow kubernetes pod operators by @schustmi in https://github.com/zenml-io/zenml/pull/1378
1384
- * SageMaker step operator: expand input arguments and add support for S3 input data by @christianversloot in https://github.com/zenml-io/zenml/pull/1381
1385
- * Add Screenshots to Code Repo Token by @safoinme in https://github.com/zenml-io/zenml/pull/1454
1386
-
1387
- ## New Contributors
1388
- * @KenmogneThimotee made their first contribution in https://github.com/zenml-io/zenml/pull/1437
1389
- * @christianversloot made their first contribution in https://github.com/zenml-io/zenml/pull/1381
1390
-
1391
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.36.1...0.37.0
1392
-
1393
- # 0.36.1
1394
-
1395
- This minor release contains some small fixes and improvements.
1396
-
1397
- - We fixed a bug with the way hooks were being parsed, which was causing
1398
- pipelines to fail.
1399
- - We brought various parts of the documentation up to date with features that
1400
- had previously been added, notably the new image building functionality.
1401
- - We added a failure hook that connects to OpenAI's ChatGPT API to allow you to
1402
- receive a message when a pipeline fails that includes suggestions on how to
1403
- fix the failing step.
1404
- - We added a new integration with `langchain` and `llama_hub` to allow you to
1405
- build on top of those libraries as part of a more robust MLOps workflow.
1406
- - We made the first some bigger changes to our analytics system to make it more
1407
- robust and secure. This release begins that migration. Users should expect no
1408
- changes in behavior and all telemetry-related preferences will be preserved.
1409
-
1410
- ## What's Changed
1411
- * Fix hook parser by @strickvl in https://github.com/zenml-io/zenml/pull/1428
1412
- * Fix some pipeline bugs by @schustmi in https://github.com/zenml-io/zenml/pull/1426
1413
- * Add image builders to Examples by @safoinme in https://github.com/zenml-io/zenml/pull/1434
1414
- * ZenML Failure Hook for OpenAI ChatGPT fixes by @strickvl in https://github.com/zenml-io/zenml/pull/1430
1415
- * Integrations with `langchain` and `llama_hub` by @fa9r in https://github.com/zenml-io/zenml/pull/1404
1416
- * Add basic tests for the server and recipes CLI by @wjayesh in https://github.com/zenml-io/zenml/pull/1306
1417
- * Add to our alembic migration guide by @strickvl in https://github.com/zenml-io/zenml/pull/1423
1418
- * Analytics 2.0 by @bcdurak in https://github.com/zenml-io/zenml/pull/1411
1419
- * Improve Slack Alerter by adding message blocks by @soubenz in https://github.com/zenml-io/zenml/pull/1402
1420
- * Add HF deployment type by @strickvl in https://github.com/zenml-io/zenml/pull/1438
1421
-
1422
- ## New Contributors
1423
- * @soubenz made their first contribution in https://github.com/zenml-io/zenml/pull/1402
1424
-
1425
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.36.0...0.36.1
1426
-
1427
- # 0.36.0
1428
-
1429
- Our latest release adds hooks to ZenML pipelines to handle custom logic that
1430
- occurs on pipeline failure or success. This is a powerful feature that allows
1431
- you to easily receive custom alerts, for example, when a pipeline fails or
1432
- succeeds. (Check out our video showcasing the feature
1433
- [here](https://www.youtube.com/watch?v=KUW2G3EsqF8).)
1434
-
1435
- The release is also packed with bug fixes and documentation updates. Some
1436
- smaller improvements include an increase of the `step_configurations` column
1437
- size in the database to accommodate really large configurations and the ability
1438
- to click through to orchestrator logs for the Sagemaker orchestrator directly
1439
- from the ZenML dashboard.
1440
-
1441
- ## Breaking Changes
1442
-
1443
- Secrets are now handled internally by ZenML. This changes some behaviors that
1444
- you may have become used to with the (now-deprecated) Secrets Manager stack
1445
- component. The default behavior for the KServe and Seldon Core Model Deployer if
1446
- explicit credentials are not configured through the secret stack component
1447
- attribute has changed. Now, the model deployer will attempt to reuse credentials
1448
- configured for the Artifact Store in the same stack and may, in some cases, fail
1449
- if it cannot use them. In most cases, if credentials are not configured for the
1450
- active Artifact Store, the model deployer will assume some form of implicit
1451
- in-cloud authentication is configured for the Kubernetes cluster where KServe /
1452
- Seldon Core is installed and default to using that.
1453
-
1454
- ## What's Changed
1455
-
1456
- * Add CLI utils tests by @strickvl in https://github.com/zenml-io/zenml/pull/1383
1457
- * Don't use docker client when building images remotely by @schustmi in https://github.com/zenml-io/zenml/pull/1394
1458
- * Fix zenml-quickstart-model typo by @safoinme in https://github.com/zenml-io/zenml/pull/1397
1459
- * Ignore starting quotes from Artifact store path by @safoinme in https://github.com/zenml-io/zenml/pull/1388
1460
- * CI speed improvements by @stefannica in https://github.com/zenml-io/zenml/pull/1384
1461
- * Fix stack recipe link by @strickvl in https://github.com/zenml-io/zenml/pull/1393
1462
- * Switch FastAPI response class to orjson so `NaN` values don't break the server by @fa9r in https://github.com/zenml-io/zenml/pull/1395
1463
- * Numpy materializer metadata for arrays with strings by @safoinme in https://github.com/zenml-io/zenml/pull/1392
1464
- * Fix last remaining runs index by @stefannica in https://github.com/zenml-io/zenml/pull/1399
1465
- * Add failure (and success hooks) by @htahir1 in https://github.com/zenml-io/zenml/pull/1361
1466
- * Replace `pyspelling` with `typos` by @strickvl in https://github.com/zenml-io/zenml/pull/1400
1467
- * Fix the download nltk param for report step by @wjayesh in https://github.com/zenml-io/zenml/pull/1409
1468
- * Add `build_timeout` attribute to `GCPImageBuilderConfig` by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/1408
1469
- * Bump `ruff` to v0.255 by @strickvl in https://github.com/zenml-io/zenml/pull/1403
1470
- * Update title of deployment docs page by @strickvl in https://github.com/zenml-io/zenml/pull/1412
1471
- * Changed to debug log by @htahir1 in https://github.com/zenml-io/zenml/pull/1406
1472
- * Fix incorrect `--sort_by` help text by @strickvl in https://github.com/zenml-io/zenml/pull/1413
1473
- * Document CLI filtering query language by @strickvl in https://github.com/zenml-io/zenml/pull/1414
1474
- * Fix GitHub pip download cache key by @stefannica in https://github.com/zenml-io/zenml/pull/1405
1475
- * Add orchestrator logs link for Sagemaker by @strickvl in https://github.com/zenml-io/zenml/pull/1375
1476
- * Phase out secrets managers from other stack components. by @stefannica in https://github.com/zenml-io/zenml/pull/1401
1477
- * Add MLflow UI message to quickstart example and fix autolog spillage by @stefannica in https://github.com/zenml-io/zenml/pull/1421
1478
- * Add tests for the model registry by @safoinme in https://github.com/zenml-io/zenml/pull/1415
1479
- * Remove Aspell installation by @strickvl in https://github.com/zenml-io/zenml/pull/1419
1480
- * Increase `step_configurations` column size to 2^24 by @strickvl in https://github.com/zenml-io/zenml/pull/1422
1481
- * Add help text for `enable_service` option in recipe sub-command by @safoinme in https://github.com/zenml-io/zenml/pull/1424
1482
-
1483
-
1484
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.35.1...test
1485
-
1486
- # 0.35.1
1487
-
1488
- **Note:** *This release replaces the previous 0.35.0 release that was yanked from
1489
- PyPI due to a bug. If you already installed 0.35.0 and are experiencing issues,
1490
- we recommend you downgrade to 0.34.0 before installing and upgrading to 0.35.1.*
1491
-
1492
- This release is packed with big features as well as documentation updates and
1493
- some bug fixes.
1494
-
1495
- The 0.35.1 release puts models front and center in ZenML with the addition of
1496
- the **Model Registry** abstraction and Stack Component. You can now register,
1497
- version and manage models as first class citizens in ZenML. This is a major
1498
- milestone for ZenML and we are excited to see what you build with it!
1499
- The introduction of Model Registries greatly simplifies the journey that the
1500
- model takes from training to deployment and extends the ZenML ecosystem to
1501
- include model registry tools and libraries. The first Model Registry integration
1502
- included in this release is MLFlow, with many more to come in the future.
1503
-
1504
- This release also continues the deprecation of Secrets Managers and the
1505
- introduction of Secret Stores. You now have the option of configuring the ZenML
1506
- server to use AWS, GCP, Azure or Hashicorp Vault directly as a centralized
1507
- secrets store back-end. This is meant to replace all Secrets Manager flavors
1508
- which were previously used to store secrets using the same cloud services.
1509
-
1510
- Please be reminded that all Secrets Managers are now deprecated and will be
1511
- removed in the near future. We recommend that you migrate all your secrets from
1512
- the Secrets Manager stack components to the centralized secrets store by means
1513
- of the included `zenml secrets-manager secret migrate` CLI command.
1514
-
1515
- Last but not least, this release includes an updated Evidently integration that
1516
- is compatible with the latest and greatest features from Evidently: reports and
1517
- test suites. Check out the updated example to get a feel for the new features.
1518
-
1519
- ## Breaking Changes
1520
-
1521
- This release introduces a few breaking changes. Please update your code to
1522
- reflect the changes below:
1523
-
1524
- * the order of pipelines and runs in the post-execution results has been
1525
- reversed. This means that the most recent pipeline and pipeline run can be
1526
- accessed using the first index of the respective lists instead of the last
1527
- index. This change was made to make the post-execution results more intuitive
1528
- and to allow returning multi-page results in the future. This is a code snippet
1529
- outlining the changes that you need to make in your post-execution code:
1530
-
1531
- ```python
1532
- from zenml.post_execution import get_pipelines, get_unlisted_runs
1533
-
1534
- pipelines = get_pipelines()
1535
-
1536
- # instead of calling this to get the pipeline last created
1537
- latest_pipeline = pipelines[-1]
1538
-
1539
- # you now have to call this
1540
- latest_pipeline = pipelines[0]
1541
-
1542
- # and instead of calling this to get the latest run of a pipeline
1543
- latest_pipeline_run = latest_pipeline.get_runs()[-1]
1544
- # or
1545
- latest_pipeline_run = latest_pipeline.runs[-1]
1546
-
1547
- # you now have to call this
1548
- latest_pipeline_run = latest_pipeline.get_runs()[0]
1549
- # or
1550
- latest_pipeline_run = latest_pipeline.runs[0]
1551
-
1552
- # the same applies to the unlisted runs; instead of
1553
- last_unlisted_run = get_unlisted_runs()[-1]
1554
-
1555
- # you now have to call this
1556
- last_unlisted_run = get_unlisted_runs()[0]
1557
- ```
1558
-
1559
- * if you were using the `StepEnvironment` to fetch the name of the active step
1560
- in your step implementation, this name no longer reflects the name of the step
1561
- function. Instead, it now reflects the name of the step used in the pipeline
1562
- DAG, similar to what you would see in the ZenML dashboard when visualizing the
1563
- pipeline. This is also implicitly reflected in the output of `zenml model-deployer model`
1564
- CLI commands.
1565
-
1566
- ## What's Changed
1567
- * Upgrade dev dependencies by @strickvl in https://github.com/zenml-io/zenml/pull/1334
1568
- * Add warning when attempting server connection without user permissions by @strickvl in https://github.com/zenml-io/zenml/pull/1314
1569
- * Keep CLI help text for `zenml pipeline` to a single line by @strickvl in https://github.com/zenml-io/zenml/pull/1338
1570
- * Rename page attributes by @schustmi in https://github.com/zenml-io/zenml/pull/1266
1571
- * Add missing docs for pipeline build by @schustmi in https://github.com/zenml-io/zenml/pull/1341
1572
- * Sagemaker orchestrator docstring and example update by @strickvl in https://github.com/zenml-io/zenml/pull/1350
1573
- * Fix `secret create` docs error for secret store by @strickvl in https://github.com/zenml-io/zenml/pull/1355
1574
- * Update README for test environment provisioning by @strickvl in https://github.com/zenml-io/zenml/pull/1336
1575
- * Disable name prefix matching when updating/deleting entities by @schustmi in https://github.com/zenml-io/zenml/pull/1345
1576
- * Add Kubeflow Pipeline UI Port to deprecated config by @safoinme in https://github.com/zenml-io/zenml/pull/1358
1577
- * Small clarifications for slack alerter by @htahir1 in https://github.com/zenml-io/zenml/pull/1365
1578
- * update Neptune integration for v1.0 compatibility by @AleksanderWWW in https://github.com/zenml-io/zenml/pull/1335
1579
- * Integrations conditional requirements by @safoinme in https://github.com/zenml-io/zenml/pull/1255
1580
- * Fix fetching versioned pipelines in post execution by @schustmi in https://github.com/zenml-io/zenml/pull/1363
1581
- * Load artifact store before loading artifact to register filesystem by @schustmi in https://github.com/zenml-io/zenml/pull/1367
1582
- * Remove poetry from CI by @schustmi in https://github.com/zenml-io/zenml/pull/1346
1583
- * Fix Sagemaker example readme by @strickvl in https://github.com/zenml-io/zenml/pull/1370
1584
- * Update evidently to include reports and tests by @wjayesh in https://github.com/zenml-io/zenml/pull/1283
1585
- * Fix neptune linting error on `develop` (and bump ruff) by @strickvl in https://github.com/zenml-io/zenml/pull/1372
1586
- * Add pydantic materializer by @htahir1 in https://github.com/zenml-io/zenml/pull/1371
1587
- * Registering GIFs added by @htahir1 in https://github.com/zenml-io/zenml/pull/1368
1588
- * Refresh CLI cheat sheet by @strickvl in https://github.com/zenml-io/zenml/pull/1347
1589
- * Add dependency resolution docs by @strickvl in https://github.com/zenml-io/zenml/pull/1337
1590
- * [BUGFIX] Fix error while using an existing SQL server with GCP ZenServer by @wjayesh in https://github.com/zenml-io/zenml/pull/1353
1591
- * Update step name assignment with the parameter name by @strickvl in https://github.com/zenml-io/zenml/pull/1310
1592
- * Copy huggingface data directory to local before loading in materializers by @TimovNiedek in https://github.com/zenml-io/zenml/pull/1351
1593
- * Update huggingface token classification example by @strickvl in https://github.com/zenml-io/zenml/pull/1369
1594
- * Use the most specialized materializer based on MRO by @schustmi in https://github.com/zenml-io/zenml/pull/1376
1595
- * Update Kserve to support 0.10.0 by @safoinme in https://github.com/zenml-io/zenml/pull/1373
1596
- * Add more examples to integration tests by @schustmi in https://github.com/zenml-io/zenml/pull/1245
1597
- * Fix order of runs and order of pipelines in post-execution by @stefannica in https://github.com/zenml-io/zenml/pull/1380
1598
- * Add Cloud Secrets Store back-ends by @stefannica in https://github.com/zenml-io/zenml/pull/1348
1599
- * Model Registry Stack Component + MLFlow integration by @safoinme in https://github.com/zenml-io/zenml/pull/1309
1600
- * Fix broken docs URLs and add SDK docs url by @strickvl in https://github.com/zenml-io/zenml/pull/1349
1601
- * Fix label studio `dataset delete` command by @strickvl in https://github.com/zenml-io/zenml/pull/1377
1602
- * Add missing links to Quickstart by @strickvl in
1603
- https://github.com/zenml-io/zenml/pull/1379
1604
- * Fix PyPI readme logo display by @strickvl in https://github.com/zenml-io/zenml/pull/1382
1605
- * Fixed broken migration for flavors by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1386
1606
- * Add debug mode flag for `zenml info` by @strickvl in https://github.com/zenml-io/zenml/pull/1374
1607
- * Update issue creation for bugs by @strickvl in https://github.com/zenml-io/zenml/pull/1387
1608
- * Integration sdk docs generated correctly now by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1389
1609
-
1610
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.34.0...0.35.0
1611
-
1612
- # 0.35.0 (YANKED)
1613
-
1614
- This release is packed with big features as well as documentation updates and
1615
- some bug fixes.
1616
-
1617
- The 0.35.0 release puts models front and center in ZenML with the addition of
1618
- the **Model Registry** abstraction and Stack Component. You can now register,
1619
- version and manage models as first class citizens in ZenML. This is a major
1620
- milestone for ZenML and we are excited to see what you build with it!
1621
- The introduction of Model Registries greatly simplifies the journey that the
1622
- model takes from training to deployment and extends the ZenML ecosystem to
1623
- include model registry tools and libraries. The first Model Registry integration
1624
- included in this release is MLFlow, with many more to come in the future.
1625
-
1626
- This release also continues the deprecation of Secrets Managers and the
1627
- introduction of Secret Stores. You now have the option of configuring the ZenML
1628
- server to use AWS, GCP, Azure or Hashicorp Vault directly as a centralized
1629
- secrets store back-end. This is meant to replace all Secrets Manager flavors
1630
- which were previously used to store secrets using the same cloud services.
1631
-
1632
- Please be reminded that all Secrets Managers are now deprecated and will be
1633
- removed in the near future. We recommend that you migrate all your secrets from
1634
- the Secrets Manager stack components to the centralized secrets store by means
1635
- of the included `zenml secrets-manager secret migrate` CLI command.
1636
-
1637
- Last but not least, this release includes an updated Evidently integration that
1638
- is compatible with the latest and greatest features from Evidently: reports and
1639
- test suites. Check out the updated example to get a feel for the new features.
1640
-
1641
- ## Breaking Changes
1642
-
1643
- This release introduces a few breaking changes. Please update your code to
1644
- reflect the changes below:
1645
-
1646
- * the order of pipelines and runs in the post-execution results has been
1647
- reversed. This means that the most recent pipeline and pipeline run can be
1648
- accessed using the first index of the respective lists instead of the last
1649
- index. This change was made to make the post-execution results more intuitive
1650
- and to allow returning multi-page results in the future. This is a code snippet
1651
- outlining the changes that you need to make in your post-execution code:
1652
-
1653
- ```python
1654
- from zenml.post_execution import get_pipelines, get_unlisted_runs
1655
-
1656
- pipelines = get_pipelines()
1657
-
1658
- # instead of calling this to get the pipeline last created
1659
- latest_pipeline = pipelines[-1]
1660
-
1661
- # you now have to call this
1662
- latest_pipeline = pipelines[0]
1663
-
1664
- # and instead of calling this to get the latest run of a pipeline
1665
- latest_pipeline_run = latest_pipeline.get_runs()[-1]
1666
- # or
1667
- latest_pipeline_run = latest_pipeline.runs[-1]
1668
-
1669
- # you now have to call this
1670
- latest_pipeline_run = latest_pipeline.get_runs()[0]
1671
- # or
1672
- latest_pipeline_run = latest_pipeline.runs[0]
1673
-
1674
- # the same applies to the unlisted runs; instead of
1675
- last_unlisted_run = get_unlisted_runs()[-1]
1676
-
1677
- # you now have to call this
1678
- last_unlisted_run = get_unlisted_runs()[0]
1679
- ```
1680
-
1681
- * if you were using the `StepEnvironment` to fetch the name of the active step
1682
- in your step implementation, this name no longer reflects the name of the step
1683
- function. Instead, it now reflects the name of the step used in the pipeline
1684
- DAG, similar to what you would see in the ZenML dashboard when visualizing the
1685
- pipeline. This is also implicitly reflected in the output of `zenml model-deployer model`
1686
- CLI commands.
1687
-
1688
- ## What's Changed
1689
- * Upgrade dev dependencies by @strickvl in https://github.com/zenml-io/zenml/pull/1334
1690
- * Add warning when attempting server connection without user permissions by @strickvl in https://github.com/zenml-io/zenml/pull/1314
1691
- * Keep CLI help text for `zenml pipeline` to a single line by @strickvl in https://github.com/zenml-io/zenml/pull/1338
1692
- * Rename page attributes by @schustmi in https://github.com/zenml-io/zenml/pull/1266
1693
- * Add missing docs for pipeline build by @schustmi in https://github.com/zenml-io/zenml/pull/1341
1694
- * Sagemaker orchestrator docstring and example update by @strickvl in https://github.com/zenml-io/zenml/pull/1350
1695
- * Fix `secret create` docs error for secret store by @strickvl in https://github.com/zenml-io/zenml/pull/1355
1696
- * Update README for test environment provisioning by @strickvl in https://github.com/zenml-io/zenml/pull/1336
1697
- * Disable name prefix matching when updating/deleting entities by @schustmi in https://github.com/zenml-io/zenml/pull/1345
1698
- * Add Kubeflow Pipeline UI Port to deprecated config by @safoinme in https://github.com/zenml-io/zenml/pull/1358
1699
- * Small clarifications for slack alerter by @htahir1 in https://github.com/zenml-io/zenml/pull/1365
1700
- * update Neptune integration for v1.0 compatibility by @AleksanderWWW in https://github.com/zenml-io/zenml/pull/1335
1701
- * Integrations conditional requirements by @safoinme in https://github.com/zenml-io/zenml/pull/1255
1702
- * Fix fetching versioned pipelines in post execution by @schustmi in https://github.com/zenml-io/zenml/pull/1363
1703
- * Load artifact store before loading artifact to register filesystem by @schustmi in https://github.com/zenml-io/zenml/pull/1367
1704
- * Remove poetry from CI by @schustmi in https://github.com/zenml-io/zenml/pull/1346
1705
- * Fix Sagemaker example readme by @strickvl in https://github.com/zenml-io/zenml/pull/1370
1706
- * Update evidently to include reports and tests by @wjayesh in https://github.com/zenml-io/zenml/pull/1283
1707
- * Fix neptune linting error on `develop` (and bump ruff) by @strickvl in https://github.com/zenml-io/zenml/pull/1372
1708
- * Add pydantic materializer by @htahir1 in https://github.com/zenml-io/zenml/pull/1371
1709
- * Registering GIFs added by @htahir1 in https://github.com/zenml-io/zenml/pull/1368
1710
- * Refresh CLI cheat sheet by @strickvl in https://github.com/zenml-io/zenml/pull/1347
1711
- * Add dependency resolution docs by @strickvl in https://github.com/zenml-io/zenml/pull/1337
1712
- * [BUGFIX] Fix error while using an existing SQL server with GCP ZenServer by @wjayesh in https://github.com/zenml-io/zenml/pull/1353
1713
- * Update step name assignment with the parameter name by @strickvl in https://github.com/zenml-io/zenml/pull/1310
1714
- * Copy huggingface data directory to local before loading in materializers by @TimovNiedek in https://github.com/zenml-io/zenml/pull/1351
1715
- * Update huggingface token classification example by @strickvl in https://github.com/zenml-io/zenml/pull/1369
1716
- * Use the most specialized materializer based on MRO by @schustmi in https://github.com/zenml-io/zenml/pull/1376
1717
- * Update Kserve to support 0.10.0 by @safoinme in https://github.com/zenml-io/zenml/pull/1373
1718
- * Add more examples to integration tests by @schustmi in https://github.com/zenml-io/zenml/pull/1245
1719
- * Fix order of runs and order of pipelines in post-execution by @stefannica in https://github.com/zenml-io/zenml/pull/1380
1720
- * Add Cloud Secrets Store back-ends by @stefannica in https://github.com/zenml-io/zenml/pull/1348
1721
- * Model Registry Stack Component + MLFlow integration by @safoinme in https://github.com/zenml-io/zenml/pull/1309
1722
- * Fix broken docs URLs and add SDK docs url by @strickvl in https://github.com/zenml-io/zenml/pull/1349
1723
- * Fix label studio `dataset delete` command by @strickvl in https://github.com/zenml-io/zenml/pull/1377
1724
- * Add missing links to Quickstart by @strickvl in https://github.com/zenml-io/zenml/pull/1379
1725
-
1726
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.34.0...0.35.0
1727
-
1728
- # 0.34.0
1729
-
1730
- This release comes with major upgrades to the python library as well as the dashboard:
1731
- - You can now store you secrets in a centralized way instead of having them
1732
- tied to a secrets manager stack component. The secrets manager component is deprecated but will still
1733
- work while we continue migrating all secrets manager flavors to be available as a backend to store centralized
1734
- secrets. Check out [the docs](https://docs.zenml.io/starter-guide/production-fundamentals/secrets-management)
1735
- for more information.
1736
- - Pipelines are now versioned: ZenML detects changes to your steps and structure of your pipelines and
1737
- automatically creates new pipeline versions for you.
1738
- - You can now build the required Docker images for your pipeline without actually running it with
1739
- the `zenml pipeline build` command. This build can later be used to run the pipeline using the
1740
- `zenml pipeline run` command or by passing it to `pipeline.run()` in python.
1741
- - Metadata for runs and artifacts is now displayed in the dashboard: When viewing a pipeline run in the dashboard,
1742
- click on a step or artifact to get useful metadata like the endpoint where your model is deployed or
1743
- statistics about your training data.
1744
-
1745
-
1746
- ## What's Changed
1747
- * Move inbuilt Flavors into the Database by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1187
1748
- * Bump `ruff` version to 241 by @strickvl in https://github.com/zenml-io/zenml/pull/1289
1749
- * Add docs for run name templates by @schustmi in https://github.com/zenml-io/zenml/pull/1290
1750
- * Remove excess help text for `zenml connect` command by @strickvl in https://github.com/zenml-io/zenml/pull/1291
1751
- * Increase default service timeout to 60 by @safoinme in https://github.com/zenml-io/zenml/pull/1294
1752
- * increase timeout on quickstart example by @safoinme in https://github.com/zenml-io/zenml/pull/1296
1753
- * Add warning about MacOS not being supported by @strickvl in https://github.com/zenml-io/zenml/pull/1303
1754
- * Always include .zen in docker builds by @schustmi in https://github.com/zenml-io/zenml/pull/1292
1755
- * Add warning and docs update for `label_studio` installation issue by @strickvl in https://github.com/zenml-io/zenml/pull/1299
1756
- * Loosen version requirements for Great Expectations integration by @strickvl in https://github.com/zenml-io/zenml/pull/1302
1757
- * Change zenml init --template to optionally prompt and track email by @stefannica in https://github.com/zenml-io/zenml/pull/1298
1758
- * Update docs for Neptune experiment tracker integration by @strickvl in https://github.com/zenml-io/zenml/pull/1307
1759
- * Fix the destroy function on the stack recipe CLI by @wjayesh in https://github.com/zenml-io/zenml/pull/1301
1760
- * Add missing flavor migrations, make workspace ID optional by @schustmi in https://github.com/zenml-io/zenml/pull/1315
1761
- * Bump ruff 246 by @strickvl in https://github.com/zenml-io/zenml/pull/1316
1762
- * Remove tag from image name in gcp image builder by @schustmi in https://github.com/zenml-io/zenml/pull/1317
1763
- * Fix docs typo by @strickvl in https://github.com/zenml-io/zenml/pull/1318
1764
- * Fix step parameter merging by @schustmi in https://github.com/zenml-io/zenml/pull/1320
1765
- * Increase timeout for mlflow deployment example by @strickvl in https://github.com/zenml-io/zenml/pull/1308
1766
- * Workspace/projects fix for dashboard URL output when running pipeline by @strickvl in https://github.com/zenml-io/zenml/pull/1322
1767
- * Component Metadata Tracking Docs by @fa9r in https://github.com/zenml-io/zenml/pull/1319
1768
- * Add user environment `zenml info` command to CLI for debugging by @strickvl in https://github.com/zenml-io/zenml/pull/1312
1769
- * Added caching to quickstart by @htahir1 in https://github.com/zenml-io/zenml/pull/1321
1770
- * Renovation of the zenstore tests by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1275
1771
- * Fixes GCP docs typo by @luckri13 in https://github.com/zenml-io/zenml/pull/1327
1772
- * Remove deprecated CLI options by @strickvl in https://github.com/zenml-io/zenml/pull/1325
1773
- * GCP Image Builder network by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/1323
1774
- * improved flavor docs by @htahir1 in https://github.com/zenml-io/zenml/pull/1324
1775
- * Commands to register, build and run pipelines from the CLI by @schustmi in https://github.com/zenml-io/zenml/pull/1293
1776
- * Validate kserve model name by @strickvl in https://github.com/zenml-io/zenml/pull/1304
1777
- * Fix post-execution run sorting by @schustmi in https://github.com/zenml-io/zenml/pull/1332
1778
- * Secrets store with SQL back-end by @stefannica in https://github.com/zenml-io/zenml/pull/1313
1779
-
1780
- ## New Contributors
1781
- * @luckri13 made their first contribution in https://github.com/zenml-io/zenml/pull/1327
1782
-
1783
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.33.0...0.34.0
1784
-
1785
- # 0.33.0
1786
-
1787
- This release introduces several big new features:
1788
- - Docker images can now be built in GCP using the new
1789
- [Google Cloud Image Builder](https://docs.zenml.io/component-gallery/image-builders/gcloud-build)
1790
- integration. Special shoutout to @gabrielmbmb for this amazing contribution!
1791
- - Getting started with ZenML has been made even easier. You can now use one of
1792
- the new [ZenML Project Templates](https://github.com/zenml-io/zenml-project-templates)
1793
- to initialize your ZenML repository with a basic project structure including a
1794
- functional pipeline and basic scaffolding for materializers, parameters, and
1795
- other classes you might want to extend.
1796
- - Orchestrating runs on local Kubernetes has been made easier: The KubeFlow,
1797
- Kubernetes, and Tekton orchestrators have been redesigned to be compatible with
1798
- the [K3D modular stack recipe](https://github.com/zenml-io/mlops-stacks/tree/main/k3d-modular)
1799
- that lets you spin up a local K3D Kubernetes cluster with a single line of code!
1800
- - The MLflow integration has been updated and can now be used with the new
1801
- MLflow 2.x!
1802
- - You can now specify parameters and resources for your Seldon model deployers
1803
- thanks to @d-lowl!
1804
-
1805
- Furthermore, the internal `project` concept has been renamed to `workspace` to
1806
- avoid confusion with the [zenml-projects](https://github.com/zenml-io/zenml-projects)
1807
- repository. This should only be relevant to you if you have custom applications
1808
- that are interacting with the REST API of the ZenML server directly since all
1809
- models sent from/to the server need to contain a `workspace` instead of a
1810
- `project` now.
1811
-
1812
- ## What's Changed
1813
- * Renaming Project to Workspace by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1254
1814
- * Integration tests for post execution functions by @fa9r in https://github.com/zenml-io/zenml/pull/1264
1815
- * Introduce `post_execution.BaseView` by @fa9r in https://github.com/zenml-io/zenml/pull/1238
1816
- * Make `/cloud` point to enterprise page by @strickvl in https://github.com/zenml-io/zenml/pull/1268
1817
- * update mlflow to version greater than 2.0 by @safoinme in https://github.com/zenml-io/zenml/pull/1249
1818
- * Store run start time by @schustmi in https://github.com/zenml-io/zenml/pull/1271
1819
- * Relax pydantic dependency by @jlopezpena in https://github.com/zenml-io/zenml/pull/1262
1820
- * Fix failing filter on stacks by component id by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1276
1821
- * Track server version by @schustmi in https://github.com/zenml-io/zenml/pull/1265
1822
- * Bump ruff, drop `autoflake`, add `darglint` back by @strickvl in https://github.com/zenml-io/zenml/pull/1279
1823
- * Fixed startswith and endswith by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1278
1824
- * Fix workspace scoping on `list_workspace_... endpoints` again by @fa9r in https://github.com/zenml-io/zenml/pull/1284
1825
- * Custom Metadata Tracking by @fa9r in https://github.com/zenml-io/zenml/pull/1151
1826
- * Bug: local ZenML server ignores ip-address CLI argument by @stefannica in https://github.com/zenml-io/zenml/pull/1282
1827
- * Configure the zenml-server docker image and helm chart to run as non-privileged user by @stefannica in https://github.com/zenml-io/zenml/pull/1273
1828
- * GCP Image Builder by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/1270
1829
- * Disentangle K3D code from ZenML by @safoinme in https://github.com/zenml-io/zenml/pull/1185
1830
- * Rework params / artifact docs by @strickvl in https://github.com/zenml-io/zenml/pull/1277
1831
- * Always add active user to analytics by @stefannica in https://github.com/zenml-io/zenml/pull/1286
1832
- * Fix step and pipeline run metadata in LineageGraph by @fa9r in https://github.com/zenml-io/zenml/pull/1288
1833
- * add validator to endpoint url to replace hostname with k3d or docker … by @safoinme in https://github.com/zenml-io/zenml/pull/1189
1834
- * Add option to use project templates to initialize a repository by @stefannica in https://github.com/zenml-io/zenml/pull/1287
1835
- * Add example for Hyperparameter Tuning with ZenML by @nitay93 in https://github.com/zenml-io/zenml/pull/1206
1836
- * Add seldon deployment predictor parameters and resource requirements by @d-lowl in https://github.com/zenml-io/zenml/pull/1280
1837
-
1838
- ## New Contributors
1839
- * @jlopezpena made their first contribution in https://github.com/zenml-io/zenml/pull/1262
1840
- * @nitay93 made their first contribution in https://github.com/zenml-io/zenml/pull/1206
1841
- * @d-lowl made their first contribution in https://github.com/zenml-io/zenml/pull/1280
1842
-
1843
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.32.1...0.33.0
1844
-
1845
- # 0.32.1
1846
-
1847
- This release resolves several minor bugs and inconveniences introduced during
1848
- the filtering and pagination overhaul in the last release. Additionally, the
1849
- release includes new integration tests to improve future stability.
1850
-
1851
- ## What's Changed
1852
- * Update and improve docker and helm deployment docs by @stefannica in https://github.com/zenml-io/zenml/pull/1246
1853
- * Fixed broken link returned form pipeline runs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1257
1854
- * Fix project scoping on `list_project_...` endpoints by @fa9r in https://github.com/zenml-io/zenml/pull/1256
1855
- * Orchestrator tests by @schustmi in https://github.com/zenml-io/zenml/pull/1258
1856
- * Add integration tests for lineage graph creation by @fa9r in https://github.com/zenml-io/zenml/pull/1253
1857
- * Always instantiate a zen_store before startup. by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1261
1858
- * Fix post execution run fetching by @schustmi in https://github.com/zenml-io/zenml/pull/1263
1859
- * Implemented the option to choose between ascending and descending on list calls by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1260
1860
- * Fix logger warning message by @strickvl in https://github.com/zenml-io/zenml/pull/1267
1861
-
1862
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.32.0...0.32.1
1863
-
1864
- # 0.32.0
1865
-
1866
- Release 0.32.0 introduces two big new features:
1867
- * A new stack component, the "image builder", with a corresponding new Kaniko
1868
- integration.
1869
- * Logic for filtering and pagination of list requests.
1870
-
1871
- ## Image Builder Abstraction and Kaniko Integration
1872
- ZenML stacks can now contain an image builder as additional optional stack
1873
- component. The image builder defines how the Docker images are built that are
1874
- required by many of the other stack components such as Airflow or Kubeflow.
1875
- Previously, all image building was handled implicitly by ZenML using local
1876
- Docker, which has now been refactored into the "local" image builder flavor.
1877
- As an alternative, you can now install the new "kaniko" integration to build
1878
- your images in Kubernetes using Kaniko.
1879
-
1880
- ## Filtering and Pagination
1881
- All list commands in ZenML are now capable of advanced filtering such as
1882
- `zenml stack list --created="gt:22-12-04 17:00:00" --name contains:def`.
1883
-
1884
- Additionally, list commands now return pages of results, which significantly
1885
- improves performance for power ZenML users that have already created many runs
1886
- or other entities.
1887
-
1888
- ## What's Changed
1889
- * UserResponseModel contains roles, block recursion properly on more Models, reduce amount of Runs on a PipelineResponseModel by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1180
1890
- * Bump ruff version by @strickvl in https://github.com/zenml-io/zenml/pull/1232
1891
- * Zenfile becomes project by @strickvl in https://github.com/zenml-io/zenml/pull/1235
1892
- * Fix class resolution in notebooks under Python>=3.10 by @fa9r in https://github.com/zenml-io/zenml/pull/1234
1893
- * Fix Sagemaker README images & pipeline addition by @strickvl in https://github.com/zenml-io/zenml/pull/1239
1894
- * Step/Pipeline configuration tests by @schustmi in https://github.com/zenml-io/zenml/pull/1233
1895
- * Removed gRPC from diagrams by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1242
1896
- * Fix MLflow tracking example bug for Macs by @strickvl in https://github.com/zenml-io/zenml/pull/1237
1897
- * Fix copy function to copyfile in registered filesystem by @safoinme in https://github.com/zenml-io/zenml/pull/1243
1898
- * Image builder abstraction by @schustmi in https://github.com/zenml-io/zenml/pull/1198
1899
- * Add support for modular recipes to the recipe CLI by @wjayesh in https://github.com/zenml-io/zenml/pull/1247
1900
- * Add docs on upgrading and troubleshooting zenml server by @wjayesh in https://github.com/zenml-io/zenml/pull/1244
1901
- * Improve Seldon and Kserve Docs by @wjayesh in https://github.com/zenml-io/zenml/pull/1236
1902
- * Add Pagination to all List commands by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1113
1903
-
1904
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.31.1...0.32.0
1905
-
1906
- # 0.31.1
1907
-
1908
- This release includes several bug fixes and new additions under the hood such as
1909
- testing for various internal utility functions. This should help keep ZenML more
1910
- stable over time. Additionally, we added the ability to customize default
1911
- materializers for custom artifact stores, and the ability to track system info
1912
- and the Python version of pipeline runs (both where pipelines are initially
1913
- executed as well as wherever they eventually run). We added better support for
1914
- pipeline scheduling (particularly from within the CLI) and tracking of the
1915
- source code of steps. The release also includes the addition of information
1916
- about whether the pipeline is running on a stack created by the active user, and
1917
- the ability to specify Kubernetes container resource requests and limits.
1918
- Finally, we addressed issues with caching such that caching is enabled for steps
1919
- that have explicit enable_cache=True specified (even when pipelines have it
1920
- turned off).
1921
-
1922
-
1923
- ## What's Changed
1924
- * Test for `enum_utils` by @strickvl in https://github.com/zenml-io/zenml/pull/1209
1925
- * Add missing space in Azure docs by @strickvl in https://github.com/zenml-io/zenml/pull/1218
1926
- * Test for `dashboard_utils` by @strickvl in https://github.com/zenml-io/zenml/pull/1202
1927
- * Cloud version gets love by @htahir1 in https://github.com/zenml-io/zenml/pull/1219
1928
- * ZenFiles to ZenML Projects by @htahir1 in https://github.com/zenml-io/zenml/pull/1220
1929
- * Track System Info and Python Version of Pipeline Runs by @fa9r in https://github.com/zenml-io/zenml/pull/1215
1930
- * Tests for `pydantic_utils` by @strickvl in https://github.com/zenml-io/zenml/pull/1207
1931
- * Customizing Default Materializers for Custom Artifact Stores by @safoinme in https://github.com/zenml-io/zenml/pull/1224
1932
- * Test `typed_model` utilities by @strickvl in https://github.com/zenml-io/zenml/pull/1208
1933
- * Enable Airflow<2.4 by @schustmi in https://github.com/zenml-io/zenml/pull/1222
1934
- * Fix `alembic_start` migration if tables exist by @fa9r in https://github.com/zenml-io/zenml/pull/1214
1935
- * Tests for `network_utils` by @strickvl in https://github.com/zenml-io/zenml/pull/1201
1936
- * Tests for `io_utils` and removal of duplicate code by @strickvl in https://github.com/zenml-io/zenml/pull/1199
1937
- * Use `ruff` to replace our linting suite by @strickvl in https://github.com/zenml-io/zenml/pull/1211
1938
- * Test `materializer` utilities by @safoinme in https://github.com/zenml-io/zenml/pull/1221
1939
- * Add information whether pipeline is running on a stack created by the active user by @schustmi in https://github.com/zenml-io/zenml/pull/1229
1940
- * Test `daemon` util functions by @strickvl in https://github.com/zenml-io/zenml/pull/1210
1941
- * Test `filesync_model` utils by @strickvl in https://github.com/zenml-io/zenml/pull/1230
1942
- * Track Source Code of Steps by @fa9r in https://github.com/zenml-io/zenml/pull/1216
1943
- * Track Pipeline Run Schedules by @fa9r in https://github.com/zenml-io/zenml/pull/1227
1944
- * Tests for analytics by @bcdurak in https://github.com/zenml-io/zenml/pull/1228
1945
- * Allow specifying Kubernetes container resource requests and limits by @schustmi in https://github.com/zenml-io/zenml/pull/1223
1946
- * Enable cache for all steps that have explicit `enable_cache=True` by @fa9r in https://github.com/zenml-io/zenml/pull/1217
1947
- * Make shared stacks visible again by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1225
1948
-
1949
-
1950
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.31.0...0.31.1
1951
-
1952
-
1953
- # 0.31.0
1954
-
1955
- The highlights of this release are:
1956
-
1957
- * our Materializers have been redesigned to be more flexible and easier to use
1958
- * we have added a new integration test framework
1959
- * the SageMaker orchestrator has been added to our list of supported orchestrators
1960
- * pipeline runs and artifacts can now be deleted from the ZenML database via the CLI
1961
- or the Client API
1962
- * some integrations have been updated to a more recent version: Kubeflow, Seldon
1963
- Core and Tekton
1964
-
1965
- This release also includes a few bug fixes and other minor improvements to
1966
- existing features.
1967
-
1968
- ## What's Changed
1969
- * Fix installation instructions in readme and docs by @schustmi in https://github.com/zenml-io/zenml/pull/1167
1970
- * Fix broken TOC for scheduling docs by @strickvl in https://github.com/zenml-io/zenml/pull/1169
1971
- * Ensure model string fields have a max length by @strickvl in https://github.com/zenml-io/zenml/pull/1136
1972
- * Integration test framework by @stefannica in https://github.com/zenml-io/zenml/pull/1099
1973
- * Check if all ZenML server dependencies are installed for local zenml deployment using `zenml up` by @dnth in https://github.com/zenml-io/zenml/pull/1144
1974
- * Persist the server ID in the database by @stefannica in https://github.com/zenml-io/zenml/pull/1173
1975
- * Tiny docs improvements by @strickvl in https://github.com/zenml-io/zenml/pull/1179
1976
- * Changing some interactions with analytics fields by @bcdurak in https://github.com/zenml-io/zenml/pull/1174
1977
- * Fix `PyTorchDataLoaderMaterializer` for older torch versions by @fa9r in https://github.com/zenml-io/zenml/pull/1178
1978
- * Redesign Materializers by @fa9r in https://github.com/zenml-io/zenml/pull/1154
1979
- * Fixing the error messages when fetching entities by @bcdurak in https://github.com/zenml-io/zenml/pull/1171
1980
- * Moved the active_user property onto the client, implemented get_myself as zenstore method by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1161
1981
- * Bugfix/bump evidently version by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1183
1982
- * Alembic migration to update size of flavor config schema by @fa9r in https://github.com/zenml-io/zenml/pull/1181
1983
- * Deleting pipeline runs and artifacts by @fa9r in https://github.com/zenml-io/zenml/pull/1164
1984
- * Signer email checked before setting in google cloud scheduler by @htahir1 in https://github.com/zenml-io/zenml/pull/1184
1985
- * Fix zenml helm chart to not leak analytics events by @stefannica in https://github.com/zenml-io/zenml/pull/1190
1986
- * Tests for `dict_utils` by @strickvl in https://github.com/zenml-io/zenml/pull/1196
1987
- * Adding exception tracking to `zeml init` by @bcdurak in https://github.com/zenml-io/zenml/pull/1192
1988
- * Prevent crashes during Airflow server forking on MacOS by @schustmi in https://github.com/zenml-io/zenml/pull/1186
1989
- * add alpha as server deployment type by @wjayesh in https://github.com/zenml-io/zenml/pull/1197
1990
- * Bugfix for custom flavor registration by @bcdurak in https://github.com/zenml-io/zenml/pull/1195
1991
- * Tests for `uuid_utils` by @strickvl in https://github.com/zenml-io/zenml/pull/1200
1992
- * Sagemaker orchestrator integration by @strickvl in https://github.com/zenml-io/zenml/pull/1177
1993
- * Fix Pandas Materializer Index by @safoinme in https://github.com/zenml-io/zenml/pull/1193
1994
- * Add support for deploying custom stack recipes using the ZenML CLI by @wjayesh in https://github.com/zenml-io/zenml/pull/1188
1995
- * Add cloud CI environments by @stefannica in https://github.com/zenml-io/zenml/pull/1176
1996
- * Fix project scoping for artifact list through ZenServer by @fa9r in https://github.com/zenml-io/zenml/pull/1203
1997
-
1998
-
1999
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.30.0...0.31.0
2000
-
2001
- # 0.30.0
2002
-
2003
- In this release, ZenML finally adds Mac M1 support, Python 3.10 support and much
2004
- greater flexibility and configurability under the hood by deprecating some
2005
- large dependencies like `ml-pipelines-sdk`.
2006
-
2007
- ## Scheduling
2008
-
2009
- Based on some community feedback around scheduling, this release comes with
2010
- improved docs concerning scheduling in general. Additionally, the Vertex AI
2011
- orchestrator now also supports scheduling.
2012
-
2013
- ## Slimmer Dependencies
2014
-
2015
- By removing dependencies on some of the packages that ZenML was built on, this
2016
- version of ZenML is slimmer, faster and more configurable than ever. This also
2017
- finally makes ZenML run natively on Macs with M1 processors without the need for
2018
- Rosetta. This also finally enables ZenML to run on Python 3.10.
2019
-
2020
- ## Breaking Changes
2021
-
2022
- * The removal of `ml-pipelines-sdk` and `tfx` leads to some larger changes in
2023
- the database that is tracking your pipeline runs and artifacts. **Note**: There
2024
- is an automatic migration to upgrade this automatically, However, please note
2025
- that downgrading back down to 0.23.0 is not supported.
2026
- * The CLI commands to export and import pipeline runs have been deprecated.
2027
- Namely: `zenml pipeline runs export` and `zenml pipeline runs import`
2028
- These commands were meant for migrating from `zenml<0.20.0` to
2029
- `0.20.0<=zenml<0.30.0`.
2030
- * The `azure-ml` integration dependency on `azureml-core` has been upgraded
2031
- from `1.42` to `1.48`
2032
-
2033
-
2034
- ## What's Changed
2035
- * Remove stack extra from installation, enable re-running the quickstart by @schustmi in https://github.com/zenml-io/zenml/pull/1133
2036
- * Secrets manager support to experiment trackers docs by @safoinme in https://github.com/zenml-io/zenml/pull/1137
2037
- * Updating the README files of our examples by @bcdurak in https://github.com/zenml-io/zenml/pull/1128
2038
- * Prevent running with local ZenStore and remote code execution by @schustmi in https://github.com/zenml-io/zenml/pull/1134
2039
- * Remove `ml-pipelines-sdk` dependency by @schustmi in https://github.com/zenml-io/zenml/pull/1103
2040
- * Fix Huggingface dataset materializer by @safoinme in https://github.com/zenml-io/zenml/pull/1142
2041
- * Disallow alembic downgrades for 0.30.0 release by @fa9r in https://github.com/zenml-io/zenml/pull/1140
2042
- * Fix Client flavor-related methods by @schustmi in https://github.com/zenml-io/zenml/pull/1153
2043
- * Replace User Password with Token in docker images by @safoinme in https://github.com/zenml-io/zenml/pull/1147
2044
- * Remove zenml pipeline runs export / import CLI commands by @fa9r in https://github.com/zenml-io/zenml/pull/1150
2045
- * Context manager to track events by @bcdurak in https://github.com/zenml-io/zenml/pull/1149
2046
- * Made explicit `is not None` calls to allow for empty pwd again by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1159
2047
- * Add Neptune exp tracker into flavors table by @dnth in https://github.com/zenml-io/zenml/pull/1156
2048
- * Fix step operators by @schustmi in https://github.com/zenml-io/zenml/pull/1155
2049
- * Display correct name when updating a stack component by @schustmi in https://github.com/zenml-io/zenml/pull/1160
2050
- * Update mysql database creation by @schustmi in https://github.com/zenml-io/zenml/pull/1152
2051
- * Adding component conditions to experiment tracker examples and adding to the environmental variable docs by @bcdurak in https://github.com/zenml-io/zenml/pull/1162
2052
- * Increase dependency range for protobuf by @schustmi in https://github.com/zenml-io/zenml/pull/1163
2053
- * Scheduling documentation by @strickvl in https://github.com/zenml-io/zenml/pull/1158
2054
- * Adding scheduling for Vertex Pipelines by @htahir1 in https://github.com/zenml-io/zenml/pull/1148
2055
- * Fix alembic migration for sqlite<3.25 by @fa9r in https://github.com/zenml-io/zenml/pull/1165
2056
- * Fix pandas Series materializer by @jordandelbar in https://github.com/zenml-io/zenml/pull/1146
2057
-
2058
- ## New Contributors
2059
- * @jordandelbar made their first contribution in https://github.com/zenml-io/zenml/pull/1146
2060
-
2061
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.23.0...0.30.0
2062
-
2063
- # 0.23.0
2064
-
2065
- This release comes with a brand-new Neptune integration to track your ML experiments
2066
- as well as lots of performance improvements!
2067
-
2068
- ## Neptune integration
2069
-
2070
- The new [Neptune integration](https://github.com/zenml-io/zenml/tree/main/examples/neptune_tracking)
2071
- includes a Neptune experiment tracker component that allows you to track your machine learning experiments
2072
- using Neptune.
2073
-
2074
- ## Performance Optimization
2075
-
2076
- The 0.20.0 release introduced our new server but brought with it a few performance and scalability issues.
2077
- Since then, we've made many improvements to it, and this release is the final and biggest boost in performance. We reduced the amount of server calls needed for almost all CLI commands and greatly improved the speed of the dashboard as well.
2078
-
2079
- ## PyArrow dependency removal
2080
-
2081
- We've removed PyArrow as a dependency of the `zenml` python package.
2082
- As a consequence of that, our NumPy and Pandas materializer no
2083
- longer read and write their artifacts using PyArrow but instead use
2084
- native formats instead. If you still want to use PyArrow to serialize
2085
- your NumPy arrays and Pandas dataframes, you'll need to install it manually
2086
- like this: `pip install pyarrow`
2087
-
2088
- In future releases we'll get rid of other unnecessary dependencies to
2089
- further slim down the `zenml` package.
2090
-
2091
- ## Breaking Changes
2092
-
2093
- The following changes introduces with this release may require some manual
2094
- intervention to update your current installations:
2095
-
2096
- - If your code calls some methods of our `Client` class, it might need to be
2097
- updated to the new model classes introduced by the performance optimization changes
2098
- explained above
2099
- - The CLI command to remove an attribute from a stack component now takes no more dashes
2100
- in front of the attribute names:
2101
- `zenml stack-component remove-attribute <COMPONENT_NAME> <ATTRIBUTE_NAME>`
2102
- - If you're using a custom stack component and have overridden the `cleanup_step_run` method,
2103
- you'll need to update the method signature to include a `step_failed` parameter.
2104
-
2105
- ## What's Changed
2106
- * Docs regarding roles and permissions by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1081
2107
- * Add global config dir to `zenml status` by @schustmi in https://github.com/zenml-io/zenml/pull/1084
2108
- * Remove source pins and ignore source pins during step spec comparisons by @schustmi in https://github.com/zenml-io/zenml/pull/1083
2109
- * Docs/links for roles permissions by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1091
2110
- * Bugfix/eng 1485 fix api docs build by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1089
2111
- * fix bento builder step parameters to match bentoml by @safoinme in https://github.com/zenml-io/zenml/pull/1096
2112
- * Add bentoctl to BentoML docs and example by @safoinme in https://github.com/zenml-io/zenml/pull/1094
2113
- * Fix BaseParameters sample code in docs by @jcarlosgarcia in https://github.com/zenml-io/zenml/pull/1098
2114
- * zenml <stack-component> logs defaults to active stack without name_or_id by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1101
2115
- * Fixed evidently docs by @htahir1 in https://github.com/zenml-io/zenml/pull/1111
2116
- * Update sagemaker default instance type by @schustmi in https://github.com/zenml-io/zenml/pull/1112
2117
- * The ultimate optimization for performance by @bcdurak in https://github.com/zenml-io/zenml/pull/1077
2118
- * Update stack exporting and importing by @schustmi in https://github.com/zenml-io/zenml/pull/1114
2119
- * Fix readme by @schustmi in https://github.com/zenml-io/zenml/pull/1116
2120
- * Remove Pyarrow dependency by @safoinme in https://github.com/zenml-io/zenml/pull/1109
2121
- * Bugfix for listing the runs filtered by a name by @bcdurak in https://github.com/zenml-io/zenml/pull/1118
2122
- * Neptune.ai integration by @AleksanderWWW in https://github.com/zenml-io/zenml/pull/1082
2123
- * Add YouTube video explaining Stack Components Settings vs Config by @dnth in https://github.com/zenml-io/zenml/pull/1120
2124
- * Add failed Status to component when step fails by @safoinme in https://github.com/zenml-io/zenml/pull/1115
2125
- * Add architecture diagrams to docs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1119
2126
- * Remove local orchestrator restriction from step operator docs by @schustmi in https://github.com/zenml-io/zenml/pull/1122
2127
- * Validate Stack Before Provision by @safoinme in https://github.com/zenml-io/zenml/pull/1110
2128
- * Bugfix/fix endpoints for dashboard development by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1125
2129
- * Skip kubeflow UI daemon provisioning if a hostname is configured by @schustmi in https://github.com/zenml-io/zenml/pull/1126
2130
- * Update Neptune Example by @safoinme in https://github.com/zenml-io/zenml/pull/1124
2131
- * Add debugging guide to docs by @dnth in https://github.com/zenml-io/zenml/pull/1097
2132
- * Fix stack component attribute removal CLI command by @schustmi in https://github.com/zenml-io/zenml/pull/1127
2133
- * Improving error messages when fetching entities by @bcdurak in https://github.com/zenml-io/zenml/pull/1117
2134
- * Introduce username and password to kubeflow for more native multi-tenant support by @htahir1 in https://github.com/zenml-io/zenml/pull/1123
2135
- * Add support for Label Studio OCR config generation by @shivalikasingh95 in https://github.com/zenml-io/zenml/pull/1062
2136
- * Misc doc updates by @schustmi in https://github.com/zenml-io/zenml/pull/1131
2137
- * Fix Neptune run cleanup by @safoinme in https://github.com/zenml-io/zenml/pull/1130
2138
-
2139
- ## New Contributors
2140
- * @jcarlosgarcia made their first contribution in https://github.com/zenml-io/zenml/pull/1098
2141
- * @AleksanderWWW made their first contribution in https://github.com/zenml-io/zenml/pull/1082
2142
- * @shivalikasingh95 made their first contribution in https://github.com/zenml-io/zenml/pull/1062
2143
-
2144
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.22.0...0.23.0
2145
-
2146
- # 0.22.0
2147
-
2148
- The 0.22.0 release comes with a new BentoML integration as well as a reworked
2149
- Airflow orchestrator. Additionally, it greatly improves the server performance
2150
- as well as other small fixes and updates to our docs!
2151
-
2152
- ## BentoML integration
2153
-
2154
- The new [BentoML integration](https://github.com/zenml-io/zenml/tree/main/examples/bentoml_deployment)
2155
- includes a BentoML model deployer component that allows you to deploy
2156
- your models from any of the major machine learning frameworks on your local machine.
2157
- ## Airflow orchestrator v2
2158
-
2159
- The previous Airflow orchestrator was limited to running locally and had many
2160
- additional unpleasant constraints that made it hard to work with. This
2161
- release includes a completely rewritten, new version of the Airflow orchestrator
2162
- that now relies on Docker images to run your pipelines and works both locally
2163
- and with remote Airflow deployments.
2164
-
2165
- ## Notable bugfixes
2166
-
2167
- - Further improvements to the synchronization that transfers pipeline run information from
2168
- the MLMD database to the ZenML Server.
2169
- - The ZenML Label Studio integration can now be used with non-local (i.e.
2170
- deployed) instances. For more information see [the Label Studiodocs](https://docs.zenml.io/component-gallery/annotators/label-studio).
2171
- - The Spark example is fixed and now works again end-to-end.
2172
-
2173
- ## Breaking Changes
2174
-
2175
- The following changes introduces with this release may require some manual
2176
- intervention to update your current installations:
2177
-
2178
- * the Airflow orchestrator now requires a newer version of Airflow
2179
- (run `zenml integration install airflow` to upgrade) and Docker installed
2180
- to work.
2181
-
2182
- ## What's Changed
2183
- * Fix bug when running non-local annotator instance. by @sheikhomar in https://github.com/zenml-io/zenml/pull/1045
2184
- * Introduce Permissions, Link Permissions to Roles, Restrict Access to endpoints based on Permission by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1007
2185
- * Fix copy-pasted log message for annotator by @strickvl in https://github.com/zenml-io/zenml/pull/1049
2186
- * Add warning message for client server version mismatch by @schustmi in https://github.com/zenml-io/zenml/pull/1047
2187
- * Fix path to ingress values in ZenServer recipes by @wjayesh in https://github.com/zenml-io/zenml/pull/1053
2188
- * Prevent deletion/update of default entities by @stefannica in https://github.com/zenml-io/zenml/pull/1046
2189
- * Fix Publish API docs workflow by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1054
2190
- * Fix multiple alembic heads warning by @fa9r in https://github.com/zenml-io/zenml/pull/1051
2191
- * Fix Null Step Configuration/Parameters Error by @fa9r in https://github.com/zenml-io/zenml/pull/1050
2192
- * Fix role permission migration by @schustmi in https://github.com/zenml-io/zenml/pull/1056
2193
- * Made role assignment/revokation possible through zen_server by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1059
2194
- * Bugfix/make role assignment work with enum by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1063
2195
- * Manually set scoped for each endpoint by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1064
2196
- * Add run args to local docker orchestrator settings by @schustmi in https://github.com/zenml-io/zenml/pull/1060
2197
- * Docker ZenML deployment improvements and docs by @stefannica in https://github.com/zenml-io/zenml/pull/1061
2198
- * Bugfix Mlflow service cleanup configuration by @safoinme in https://github.com/zenml-io/zenml/pull/1067
2199
- * Rename DB Tables and Fix Foreign Keys by @fa9r in https://github.com/zenml-io/zenml/pull/1058
2200
- * Paginate secrets in `AWSSecretsManager` by @chiragjn in https://github.com/zenml-io/zenml/pull/1057
2201
- * Add explicit dashboard docs by @strickvl in https://github.com/zenml-io/zenml/pull/1052
2202
- * Added GA and Gitlab to envs by @htahir1 in https://github.com/zenml-io/zenml/pull/1068
2203
- * Add Inference Server Predictor to KServe and Seldon Docs by @safoinme in https://github.com/zenml-io/zenml/pull/1048
2204
- * Rename project table to workspace by @fa9r in https://github.com/zenml-io/zenml/pull/1073
2205
- * Airflow orchestrator v2 by @schustmi in https://github.com/zenml-io/zenml/pull/1042
2206
- * Add get_or_create_run() ZenStore method by @fa9r in https://github.com/zenml-io/zenml/pull/1070
2207
- * Fix the flaky fileio tests by @schustmi in https://github.com/zenml-io/zenml/pull/1072
2208
- * BentoML Deployer Integration by @safoinme in https://github.com/zenml-io/zenml/pull/1044
2209
- * Sync Speedup by @fa9r in https://github.com/zenml-io/zenml/pull/1055
2210
- * Fixed broken links in docs and examples. by @dnth in https://github.com/zenml-io/zenml/pull/1076
2211
- * Make additional stack component config options available as a setting by @schustmi in https://github.com/zenml-io/zenml/pull/1069
2212
- * Rename `step_run_artifact` table to `step_run_input_artifact` by @fa9r in https://github.com/zenml-io/zenml/pull/1075
2213
- * Update Spark Example to ZenML post 0.20.0 by @safoinme in https://github.com/zenml-io/zenml/pull/1071
2214
- * Always set caching to false for all Kubeflow based orchestrators by @schustmi in https://github.com/zenml-io/zenml/pull/1079
2215
- * Feature/eng 1402 consolidate stack sharing by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1036
2216
-
2217
- ## New Contributors
2218
- * @sheikhomar made their first contribution in https://github.com/zenml-io/zenml/pull/1045
2219
- * @chiragjn made their first contribution in https://github.com/zenml-io/zenml/pull/1057
2220
-
2221
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.21.1...0.22.0
2222
-
2223
- # 0.21.1
2224
-
2225
- This is an ad-hoc release to fix some bugs introduced the 0.21.0 release that
2226
- made the local ZenML dashboard unusable.
2227
-
2228
- ## What's Changed
2229
- * Include latest (not oldest) three runs in HydratedPipelineModel by @schustmi in https://github.com/zenml-io/zenml/pull/1039
2230
- * Update docs to use `pip install [server]` by @strickvl in https://github.com/zenml-io/zenml/pull/1037
2231
- * Docs fix for Deepchecks by @strickvl in https://github.com/zenml-io/zenml/pull/1040
2232
- * Fix the pipeline run sync on sqlite and the --blocking zenml server deployment by @stefannica in https://github.com/zenml-io/zenml/pull/1041
2233
-
2234
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.21.0...0.21.1
2235
-
2236
- # 0.21.0
2237
-
2238
- This release primarily fixes a number of bugs that were introduced as part of
2239
- the 0.20.0 ZenServer release. These significantly improve the stability when
2240
- using ZenML with the ZenML Server.
2241
-
2242
- Notable fixes include:
2243
-
2244
- - Improved the synchronization that transfers pipeline run information from
2245
- the MLMD database to the ZenML Server. This helps fix a number of issues with
2246
- missing steps in the post-execution workflow, model deployment steps and other
2247
- issues.
2248
- - The Label Studio example is fixed and now works again end-to-end.
2249
- - The ZenML Label Studio integration can now be used with non-local (i.e.
2250
- deployed) instances. For more information see [the Label Studiodocs](https://docs.zenml.io/component-gallery/annotators/label-studio).
2251
-
2252
- New features and other improvements:
2253
-
2254
- - ZenML now uses [alembic](https://alembic.sqlalchemy.org/en/latest/) for
2255
- automated database migrations. The migrations happen automatically after every
2256
- ZenML update.
2257
- - New `zenml pipeline runs export / import / migrate` CLI commands are now
2258
- available to export, import and migrate pipeline runs from older, pre-0.20.0
2259
- versions of ZenML. The ZenML server now also automatically picks up older
2260
- pipeline runs that have been logged in the metadata store by ZenML prior to
2261
- 0.20.0.
2262
- - An MLMD gRPC service can now be deployed with the ZenML Helm chart to act
2263
- as a proxy between clients, orchestrators and the MySQL database. This
2264
- significantly reduces the time it takes to run pipelines locally.
2265
- - You can now specify affinity and tolerations and node selectors to all
2266
- Kubernetes based orchestrators with the new Kubernetes Pod settings feature.
2267
-
2268
-
2269
- ## Breaking Changes
2270
-
2271
- The following changes introduces with this release may require some manual
2272
- intervention to update your current installations:
2273
-
2274
- * the zenml server helm chart `values.yaml` file has been restructured to make
2275
- it easier to configure and to clearly distinguish between the zenml server
2276
- component and the newly introduced gRPC service component. Please update your
2277
- `values.yaml` copies accordingly.
2278
- * the Azure integration dependency versions have been updated. Please run
2279
- `zenml integration install azure` to update your current installation, if
2280
- you're using Azure.
2281
-
2282
-
2283
- ## What's Changed
2284
- * Implement automatic alembic migration by @AlexejPenner in https://github.com/zenml-io/zenml/pull/990
2285
- * Fix GCP Artifact Store listdir empty path by @safoinme in https://github.com/zenml-io/zenml/pull/998
2286
- * Add flavors mini-video to docs by @strickvl in https://github.com/zenml-io/zenml/pull/999
2287
- * Remove the Client() warning when used inside a step by @stefannica in https://github.com/zenml-io/zenml/pull/1000
2288
- * Fix broken links caused by updated by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1002
2289
- * Fix `FileNotFoundError` with remote path in HuggingFace Dataset materializer by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/995
2290
- * Add `zenml pipeline runs export / import / migrate` CLI commands by @fa9r in https://github.com/zenml-io/zenml/pull/977
2291
- * Log message when activating a stack as part of registration by @schustmi in https://github.com/zenml-io/zenml/pull/1005
2292
- * Minor fixes in Migration to 0.20.0 documentation by @alvarobartt in https://github.com/zenml-io/zenml/pull/1009
2293
- * Doc updates by @htahir1 in https://github.com/zenml-io/zenml/pull/1006
2294
- * Fixing broken links in docs by @dnth in https://github.com/zenml-io/zenml/pull/1018
2295
- * Label Studio example fix by @strickvl in https://github.com/zenml-io/zenml/pull/1021
2296
- * Docs for using CUDA-enabled docker images by @strickvl in https://github.com/zenml-io/zenml/pull/1010
2297
- * Add social media heading on docs page by @dnth in https://github.com/zenml-io/zenml/pull/1020
2298
- * Add executing custom command for getting requirements by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/1012
2299
- * Delay user instruction in dockerfile generation by @schustmi in https://github.com/zenml-io/zenml/pull/1004
2300
- * Update link checker configs for faster, more accurate checks by @dnth in https://github.com/zenml-io/zenml/pull/1022
2301
- * Add `pip install zenml[server]` to relevant examples by @dnth in https://github.com/zenml-io/zenml/pull/1027
2302
- * Add Tolerations and NodeAffinity to Kubernetes executor by @wefner in https://github.com/zenml-io/zenml/pull/994
2303
- * Support pydantic subclasses in BaseParameter attributes by @schustmi in https://github.com/zenml-io/zenml/pull/1023
2304
- * Unify run names across orchestrators by @schustmi in https://github.com/zenml-io/zenml/pull/1025
2305
- * Add gRPC metadata service to the ZenML helm chart by @stefannica in https://github.com/zenml-io/zenml/pull/1026
2306
- * Make the MLMD pipeline run information transfer synchronous by @stefannica in https://github.com/zenml-io/zenml/pull/1032
2307
- * Add console spinner back by @strickvl in https://github.com/zenml-io/zenml/pull/1034
2308
- * Fix Azure CLI auth problem by @wjayesh in https://github.com/zenml-io/zenml/pull/1035
2309
- * Allow non-local Label Studio instances for annotation by @strickvl in https://github.com/zenml-io/zenml/pull/1033
2310
- * Before deleting the global zen_server files, spin it down by @AlexejPenner in https://github.com/zenml-io/zenml/pull/1029
2311
- * Adding zenserver integration to stack recipe CLI by @wjayesh in https://github.com/zenml-io/zenml/pull/1017
2312
- * Add support for Azure ZenServer by @wjayesh in https://github.com/zenml-io/zenml/pull/1024
2313
- * Kubernetes Pod settings by @schustmi in https://github.com/zenml-io/zenml/pull/1008
2314
-
2315
- ## New Contributors
2316
- * @alvarobartt made their first contribution in https://github.com/zenml-io/zenml/pull/1009
2317
- * @wefner made their first contribution in https://github.com/zenml-io/zenml/pull/994
2318
-
2319
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.20.5...0.21.0
2320
-
2321
- # 0.20.5
2322
-
2323
- ZenML 0.20.5 fixes another series of minor bugs, significantly improves the performance of the CLI, and adds an option to specify APT packages in Docker images.
2324
-
2325
- ## What's Changed
2326
- * Fix accessing local zen store and artifact store in containers by @stefannica in https://github.com/zenml-io/zenml/pull/976
2327
- * K3d local registry pod spec updated by @wjayesh in https://github.com/zenml-io/zenml/pull/972
2328
- * Update readme page by @dnth in https://github.com/zenml-io/zenml/pull/985
2329
- * Remove beam dependency by @schustmi in https://github.com/zenml-io/zenml/pull/986
2330
- * Fix error message when registering secret without secrets manager by @schustmi in https://github.com/zenml-io/zenml/pull/981
2331
- * Update cheat sheet up to `zenml==0.20.4` by @dnth in https://github.com/zenml-io/zenml/pull/987
2332
- * Example fixes (part 2) by @strickvl in https://github.com/zenml-io/zenml/pull/971
2333
- * Allow duplicate step classes inside a pipeline by @schustmi in https://github.com/zenml-io/zenml/pull/989
2334
- * Include deployment in azureml docker build by @schustmi in https://github.com/zenml-io/zenml/pull/984
2335
- * Automatically open browser upon `zenml up` command by @dnth in https://github.com/zenml-io/zenml/pull/978
2336
- * Add a `just_mine` flag for `zenml stack list` by @strickvl in https://github.com/zenml-io/zenml/pull/979
2337
- * Add option to specify apt packages by @schustmi in https://github.com/zenml-io/zenml/pull/982
2338
- * Replace old flavor references, fix the windows local ZenML server and other fixes by @stefannica in https://github.com/zenml-io/zenml/pull/988
2339
- * Improve docker and k8s detection by @schustmi in https://github.com/zenml-io/zenml/pull/991
2340
- * Update GH actions example by @schustmi in https://github.com/zenml-io/zenml/pull/993
2341
- * Update `MissingStepParameterError` exception message by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/996
2342
- * Separated code docs into `core` and `integration` docs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/983
2343
- * Add docs/mkdocstrings_helper.py to format script sources by @fa9r in https://github.com/zenml-io/zenml/pull/997
2344
- * Further CLI optimization by @bcdurak in https://github.com/zenml-io/zenml/pull/992
2345
-
2346
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.20.4...0.20.5
2347
-
2348
-
2349
- # 0.20.4
2350
-
2351
- This release fixes another series of minor bugs that were introduced in 0.20.0.
2352
-
2353
- ## What's Changed
2354
- * Detect failed executions by @schustmi in https://github.com/zenml-io/zenml/pull/964
2355
- * Only build docker images for custom deployments by @schustmi in https://github.com/zenml-io/zenml/pull/960
2356
- * M1 Mac Installation Tutorial by @fa9r in https://github.com/zenml-io/zenml/pull/966
2357
- * Update ZenBytes links in docs by @fa9r in https://github.com/zenml-io/zenml/pull/968
2358
- * Fix the API docs builder by @stefannica in https://github.com/zenml-io/zenml/pull/967
2359
- * Fix `gpu_limit` condition in `VertexOrchestrator` by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/963
2360
- * Add simple node affinity configurations by @schustmi in https://github.com/zenml-io/zenml/pull/973
2361
- * First iteration of the CLI optimization by @bcdurak in https://github.com/zenml-io/zenml/pull/962
2362
-
2363
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.20.3...0.20.4
2364
-
2365
- # 0.20.3
2366
-
2367
- This release fixes another series of minor bugs that were introduced in 0.20.0.
2368
-
2369
- ## What's Changed
2370
- * Fixed GitHub/Colab JSON formatting error on quickstart. by @fa9r in https://github.com/zenml-io/zenml/pull/947
2371
- * Update YAML config template by @htahir1 in https://github.com/zenml-io/zenml/pull/952
2372
- * correct code from merge and fix import by @wjayesh in https://github.com/zenml-io/zenml/pull/950
2373
- * Check for active component using id instead of name by @schustmi in https://github.com/zenml-io/zenml/pull/956
2374
- * Tekton fix by @htahir1 in https://github.com/zenml-io/zenml/pull/955
2375
- * Improve zenml up/down UX and other fixes by @stefannica in https://github.com/zenml-io/zenml/pull/957
2376
- * Update kubeflow docs for multi-tenant deployments by @htahir1 in https://github.com/zenml-io/zenml/pull/958
2377
- * Update kubeflow.md by @abohmeed in https://github.com/zenml-io/zenml/pull/959
2378
- * Add additional stack validation for step operators by @schustmi in https://github.com/zenml-io/zenml/pull/954
2379
- * Fix pipeline run dashboard URL for unlisted runs by @fa9r in https://github.com/zenml-io/zenml/pull/951
2380
- * Support subclasses of registered types in recursive materialization by @fa9r in https://github.com/zenml-io/zenml/pull/953
2381
-
2382
- ## New Contributors
2383
- * @abohmeed made their first contribution in https://github.com/zenml-io/zenml/pull/959
2384
-
2385
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.20.2...0.20.3
2386
-
2387
- # 0.20.2
2388
-
2389
- After a successful release of the new ZenML server and dashboard paradigm, we set to ironing out some bugs that slipped through.
2390
-
2391
- ## What's Changed
2392
- * Capitalize all docs page titles. by @fa9r in https://github.com/zenml-io/zenml/pull/937
2393
- * Increase field sizes for docstrings and step parameters. by @fa9r in https://github.com/zenml-io/zenml/pull/940
2394
- * Fixing the bug in the registration of custom flavors by @bcdurak in https://github.com/zenml-io/zenml/pull/938
2395
- * Implemented `docstring` Attribute of StepModel by @fa9r in https://github.com/zenml-io/zenml/pull/936
2396
- * Fix shared stack emoji by @strickvl in https://github.com/zenml-io/zenml/pull/941
2397
- * Fix shared stacks not being allowed to be set as active. by @fa9r in https://github.com/zenml-io/zenml/pull/943
2398
- * Typo fix by @strickvl in https://github.com/zenml-io/zenml/pull/944
2399
- * Update Kubernetes Orchestrator Example by @fa9r in https://github.com/zenml-io/zenml/pull/942
2400
- * Add code and instructions to run quickstart on Colab. by @fa9r in https://github.com/zenml-io/zenml/pull/939
2401
- * Fixing the interaction in getting stacks/components by @bcdurak in https://github.com/zenml-io/zenml/pull/945
2402
- * Fix Kubeflow run name by @safoinme in https://github.com/zenml-io/zenml/pull/946
2403
- * `VertexOrchestrator` apply node selector constraint if `gpu_limit > 0` by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/935
2404
-
2405
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.20.1...0.20.2
2406
-
2407
- # 0.20.0 / 0.20.1
2408
-
2409
- The ZenML 0.20.0 release brings a number of big changes to its architecture and
2410
- a lot of cool new features, some of which are not backwards compatible with
2411
- previous versions.
2412
-
2413
- These changes are only covered briefly in the release notes. For a detailed
2414
- view on what happened and how you can get the most out of the 0.20.0 release,
2415
- please head over to [our "ZenML 0.20.0: Our Biggest Release Yet" blog post](https://blog.zenml.io/zenml-revamped).
2416
-
2417
- ## Warning: Breaking Changes
2418
-
2419
- Updating to ZenML 0.20.0 needs to be followed by a migration of your existing
2420
- ZenML Stacks and you may also need to make changes to your current ZenML
2421
- pipeline code. Please read [the migration guide](https://docs.zenml.io/guidelines/migration-zero-twenty) carefully and follow the
2422
- instructions to ensure a smooth transition. The guide walks you through these
2423
- changes and offers instructions on how to migrate your existing ZenML stacks and
2424
- pipelines to the new version with minimal effort and disruption to your existing
2425
- workloads.
2426
-
2427
- If you have updated to ZenML 0.20.0 by mistake or are experiencing issues with
2428
- the new version, you can always go back to the previous version by using
2429
- `pip install zenml==0.13.2` instead of `pip install zenml` when installing
2430
- ZenML manually or in your scripts.
2431
-
2432
- ## Overview of Changes
2433
-
2434
- * [ZenML takes over the Metadata Store](https://docs.zenml.io/guidelines/migration-zero-twenty#zenml-takes-over-the-metadata-store-role)
2435
- role. All information about your ZenML Stacks, pipelines, and artifacts is now
2436
- tracked by ZenML itself directly. If you are currently using remote Metadata
2437
- Stores (e.g. deployed in cloud) in your stacks, you will probably need to
2438
- replace them with [ZenML cloud deployments](https://docs.zenml.io/guidelines/migration-zero-twenty/getting-started/deploying-zenml/deploying-zenml.md).
2439
- * the [new ZenML Dashboard](https://docs.zenml.io/guidelines/migration-zero-twenty#the-zenml-dashboard-is-now-available) is now
2440
- available with all ZenML deployments.
2441
- * [ZenML Profiles have been removed](https://docs.zenml.io/guidelines/migration-zero-twenty#removal-of-profiles-and-the-local-yaml-database)
2442
- in favor of ZenML Projects. You need to
2443
- [manually migrate your existing ZenML Profiles](https://docs.zenml.io/guidelines/migration-zero-twenty#how-to-migrate-your-profiles)
2444
- after the update.
2445
- * the [configuration of Stack Components is now decoupled from their implementation](https://docs.zenml.io/guidelines/migration-zero-twenty#decoupling-stack-component-configuration-from-implementation).
2446
- If you extended ZenML with custom stack component implementations, you may need
2447
- to update the way they are registered in ZenML.
2448
- * the updated ZenML server provides a new and improved collaborative experience.
2449
- When connected to a ZenML server, you can now [share your ZenML Stacks and Stack Components](https://docs.zenml.io/guidelines/migration-zero-twenty#shared-zenml-stacks-and-stack-components) with other users. If you were
2450
- previously using the ZenML Profiles or the ZenML server to share your ZenML
2451
- Stacks, you should switch to the new ZenML server and Dashboard and update your
2452
- existing workflows to reflect the new features.
2453
-
2454
- ## What's Changed
2455
- * Fix error in checking Great Expectations results when exit_on_error=True by @TimovNiedek in https://github.com/zenml-io/zenml/pull/889
2456
- * feat(user-dockerfile): Add user argument to DockerConfiguration by @cjidboon94 in https://github.com/zenml-io/zenml/pull/892
2457
- * Minor doc updates for backporting by @htahir1 in https://github.com/zenml-io/zenml/pull/894
2458
- * Removed feature request and replaced with hellonext board by @htahir1 in https://github.com/zenml-io/zenml/pull/897
2459
- * Unit tests for (some) integrations by @strickvl in https://github.com/zenml-io/zenml/pull/880
2460
- * Fixed integration installation command by @edshee in https://github.com/zenml-io/zenml/pull/900
2461
- * Pipeline configuration and intermediate representation by @schustmi in https://github.com/zenml-io/zenml/pull/898
2462
- * [Bugfix] Fix bug in auto-import of stack after recipe deploy by @wjayesh in https://github.com/zenml-io/zenml/pull/901
2463
- * Update TOC on CONTRIBUTING.md by @strickvl in https://github.com/zenml-io/zenml/pull/907
2464
- * ZenServer by @fa9r in https://github.com/zenml-io/zenml/pull/879
2465
- * Update `kserve` README by @strickvl in https://github.com/zenml-io/zenml/pull/912
2466
- * Confirmation prompts were not working by @htahir1 in https://github.com/zenml-io/zenml/pull/917
2467
- * Stacks can be registered in `Click<8.0.0` now by @AlexejPenner in https://github.com/zenml-io/zenml/pull/920
2468
- * Made Pipeline and Stack optional on the HydratedPipelineRunModel by @AlexejPenner in https://github.com/zenml-io/zenml/pull/919
2469
- * Renamed all references from ZenServer to ZenML Server in logs and comments by @htahir1 in https://github.com/zenml-io/zenml/pull/915
2470
- * Prettify pipeline runs list CLI output. by @fa9r in https://github.com/zenml-io/zenml/pull/921
2471
- * Warn when registering non-local component with local ZenServer by @strickvl in https://github.com/zenml-io/zenml/pull/904
2472
- * Fix duplicate results in pipeline run lists and unlisted flag. by @fa9r in https://github.com/zenml-io/zenml/pull/922
2473
- * Fix error log by @htahir1 in https://github.com/zenml-io/zenml/pull/916
2474
- * Update cli docs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/913
2475
- * Fix Pipeline Run Status by @fa9r in https://github.com/zenml-io/zenml/pull/923
2476
- * Change the CLI emoji for whether a stack is shared or not. by @fa9r in https://github.com/zenml-io/zenml/pull/926
2477
- * Fix running pipelines from different locations. by @fa9r in https://github.com/zenml-io/zenml/pull/925
2478
- * Fix zenml stack-component describe CLI command. by @fa9r in https://github.com/zenml-io/zenml/pull/929
2479
- * Update custom deployment to use ArtifactModel by @safoinme in https://github.com/zenml-io/zenml/pull/928
2480
- * Fix the CI unit test and integration test failures by @stefannica in https://github.com/zenml-io/zenml/pull/924
2481
- * Add gcp zenserver recipe by @wjayesh in https://github.com/zenml-io/zenml/pull/930
2482
- * Extend Post Execution Class Properties by @fa9r in https://github.com/zenml-io/zenml/pull/931
2483
- * Fixes for examples by @strickvl in https://github.com/zenml-io/zenml/pull/918
2484
- * Update cheat sheet by @dnth in https://github.com/zenml-io/zenml/pull/932
2485
- * Fix the docstring attribute of pipeline models. by @fa9r in https://github.com/zenml-io/zenml/pull/933
2486
- * New docs post ZenML Server by @htahir1 in https://github.com/zenml-io/zenml/pull/927
2487
-
2488
- ## New Contributors
2489
- * @TimovNiedek made their first contribution in https://github.com/zenml-io/zenml/pull/889
2490
- * @cjidboon94 made their first contribution in https://github.com/zenml-io/zenml/pull/892
2491
- * @edshee made their first contribution in https://github.com/zenml-io/zenml/pull/900
2492
-
2493
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.13.2...0.20.0
2494
-
2495
- # 0.13.2
2496
-
2497
- ZenML 0.13.2 comes with a new local Docker orchestrator and many other improvements and fixes:
2498
- * You can now run your pipelines locally in isolated Docker containers per step
2499
- * @gabrielmbmb updated our MLFlow experiment tracker to work with Databricks deployments 🎉
2500
- * Documentation updates for cloud deployments and multi-tenancy Kubeflow support
2501
-
2502
- ## What's Changed
2503
- * Update GitHub Actions by @fa9r in https://github.com/zenml-io/zenml/pull/864
2504
- * Raise zenml exception when cyclic graph is detected by @schustmi in https://github.com/zenml-io/zenml/pull/866
2505
- * Add source to segment identify call by @htahir1 in https://github.com/zenml-io/zenml/pull/868
2506
- * Use default local paths/URIs for the local artifact and metadata stores by @stefannica in https://github.com/zenml-io/zenml/pull/873
2507
- * Implement local docker orchestrator by @schustmi in https://github.com/zenml-io/zenml/pull/862
2508
- * Update cheat sheet with latest CLI commands from 0.13.0 by @dnth in https://github.com/zenml-io/zenml/pull/867
2509
- * Add a note about importing proper DockerConfiguration module by @jsuchome in https://github.com/zenml-io/zenml/pull/877
2510
- * Bugfix/misc by @schustmi in https://github.com/zenml-io/zenml/pull/878
2511
- * Fixed bug in tfx by @htahir1 in https://github.com/zenml-io/zenml/pull/883
2512
- * Mlflow Databricks connection by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/882
2513
- * Refactor cloud guide to stack deployment guide by @wjayesh in https://github.com/zenml-io/zenml/pull/861
2514
- * Add cookie consent by @strickvl in https://github.com/zenml-io/zenml/pull/871
2515
- * Stack recipe CLI improvements by @wjayesh in https://github.com/zenml-io/zenml/pull/872
2516
- * Kubeflow workaround added by @htahir1 in https://github.com/zenml-io/zenml/pull/886
2517
-
2518
-
2519
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.13.1...0.13.2
2520
-
2521
- # 0.13.1
2522
-
2523
- ZenML 0.13.1 is here and it comes with several quality of life improvements:
2524
-
2525
- * You can now specify the exact order in which your pipelines steps should be
2526
- executed, e.g., via `step_b.after(step_a)`
2527
- * TensorBoard was moved to a separate integration so you can use it with Pytorch
2528
- and other modeling frameworks
2529
- * You can now configure the Evidently integration to ignore specific columns in
2530
- your datasets.
2531
-
2532
- This release also contains a lot of documentation on how to deploy
2533
- custom code (like preprocessing and postprocessing code) with our KServe and
2534
- Seldon integrations.
2535
-
2536
- ## What's Changed
2537
- * Fix flag info on recipes in docs by @wjayesh in https://github.com/zenml-io/zenml/pull/854
2538
- * Fix some materializer issues by @schustmi in https://github.com/zenml-io/zenml/pull/852
2539
- * Add ignore columns for evidently drift detection by @SangamSwadiK in https://github.com/zenml-io/zenml/pull/851
2540
- * TensorBoard Integration by @fa9r in https://github.com/zenml-io/zenml/pull/850
2541
- * Add option to specify task dependencies by @schustmi in https://github.com/zenml-io/zenml/pull/858
2542
- * Custom code readme and docs by @safoinme in https://github.com/zenml-io/zenml/pull/853
2543
-
2544
- ## New Contributors
2545
- * @SangamSwadiK made their first contribution in https://github.com/zenml-io/zenml/pull/851
2546
-
2547
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.13.0...0.13.1
2548
-
2549
-
2550
- # 0.13.0
2551
-
2552
- ZenML version 0.13.0 is chock-full with exciting features.
2553
-
2554
- [Custom Code Deployment](https://github.com/zenml-io/zenml/tree/main/examples/custom_code_deployment) is the
2555
- continuation of the Model Deployment story that we have been working on over the last few releases. Now
2556
- it is possible to deploy custom code along with your models using Kserve or Seldon.
2557
-
2558
- With [Spark](https://github.com/zenml-io/zenml/tree/main/examples/spark_distributed_programming) this
2559
- release also brings distributed processing into the ZenML toolkit.
2560
-
2561
- Spinning up and configuring infrastructure is a difficult part of the MLOps journey
2562
- and can easily become a barrier to entry. Using our [mlops-stacks](https://github.com/zenml-io/mlops-stacks)
2563
- repository, it is now possible to spin up perfectly configured infrastructure with
2564
- the corresponding ZenML stack using the ZenML CLI.
2565
-
2566
- As always, we've also included various bug fixes and lots of improvements to the documentation and our examples.
2567
-
2568
- ## Breaking Changes
2569
-
2570
- This release introduces a breaking change to the CLI by adjusting the access to
2571
- the stack component specific resources for `secret-managers` and
2572
- `model-deployers` to be more explicitly linked to the component. Here is how:
2573
-
2574
- ```bash
2575
- # `zenml secret register ...` becomes
2576
- zenml secrets-manager secret register ...
2577
-
2578
- # `zenml served_models list` becomes
2579
- zenml model-deployer models list
2580
- ```
2581
-
2582
- ## What's Changed
2583
- * Link checker by @dnth in https://github.com/zenml-io/zenml/pull/818
2584
- * Update Readme with latest info from docs page by @dnth in https://github.com/zenml-io/zenml/pull/810
2585
- * Typo on Readme by @dnth in https://github.com/zenml-io/zenml/pull/821
2586
- * Update kserve installation to 0.9 on kserve deployment example by @safoinme in https://github.com/zenml-io/zenml/pull/823
2587
- * Allow setting caching via the `config.yaml` by @strickvl in https://github.com/zenml-io/zenml/pull/827
2588
- * Handle file-io with context manager by @aliabbasjaffri in https://github.com/zenml-io/zenml/pull/825
2589
- * Add automated link check github actions by @dnth in https://github.com/zenml-io/zenml/pull/828
2590
- * Fix the SQL zenstore to work with MySQL by @stefannica in https://github.com/zenml-io/zenml/pull/829
2591
- * Improve label studio error messages if secrets are missing or of wrong schema by @schustmi in https://github.com/zenml-io/zenml/pull/832
2592
- * Add secret scoping to the Azure Key Vault by @stefannica in https://github.com/zenml-io/zenml/pull/830
2593
- * Unify CLI concepts (removing `secret`, `feature` and `served-models`) by @strickvl in https://github.com/zenml-io/zenml/pull/833
2594
- * Put link checker as part of CI by @dnth in https://github.com/zenml-io/zenml/pull/838
2595
- * Add missing requirement for step operators by @schustmi in https://github.com/zenml-io/zenml/pull/834
2596
- * Fix broken links from link checker results by @dnth in https://github.com/zenml-io/zenml/pull/835
2597
- * Fix served models logs formatting error by @safoinme in https://github.com/zenml-io/zenml/pull/836
2598
- * New Docker build configuration by @schustmi in https://github.com/zenml-io/zenml/pull/811
2599
- * Secrets references on stack component attributes by @schustmi in https://github.com/zenml-io/zenml/pull/817
2600
- * Misc bugfixes by @schustmi in https://github.com/zenml-io/zenml/pull/842
2601
- * Pillow Image materializer by @strickvl in https://github.com/zenml-io/zenml/pull/820
2602
- * Add Tekton orchestrator by @schustmi in https://github.com/zenml-io/zenml/pull/844
2603
- * Put Slack call to action at the top of README page. by @dnth in https://github.com/zenml-io/zenml/pull/846
2604
- * Change Quickstart to Use Tabular Data by @fa9r in https://github.com/zenml-io/zenml/pull/843
2605
- * Add sleep before docker builds in release GH action by @schustmi in https://github.com/zenml-io/zenml/pull/849
2606
- * Implement Recursive Built-In Container Materializer by @fa9r in https://github.com/zenml-io/zenml/pull/812
2607
- * Custom deployment with KServe and Seldon Core by @safoinme in https://github.com/zenml-io/zenml/pull/841
2608
- * Spark Integration by @bcdurak in https://github.com/zenml-io/zenml/pull/837
2609
- * Add zenml stack recipe CLI commands by @wjayesh in https://github.com/zenml-io/zenml/pull/807
2610
-
2611
- ## New Contributors
2612
- * @aliabbasjaffri made their first contribution in https://github.com/zenml-io/zenml/pull/825
2613
-
2614
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.12.0...0.13.0
2615
-
2616
-
2617
- # 0.12.0
2618
-
2619
- The 0.12.0 release comes with the third implementation of the ZenML Model Deployer abstraction:
2620
- The [KServe](https://github.com/zenml-io/zenml/tree/main/examples/kserve_deployment)
2621
- integration allows you to deploy any PyTorch, TensorFlow or SKLearn from within your ZenML pipelines!
2622
-
2623
- We also added functionality to specify hardware resources on a step level to control the amount of memory, CPUs and GPUs that
2624
- each ZenML step has access to. This is currently limited to the Kubeflow and Vertex orchestrator but will be expanded in upcoming releases.
2625
-
2626
- Additionally, we've added support for scoped secrets in our AWS, GCP and Vault Secrets Managers. These updated Secrets Managers allow
2627
- you to configure a scope which determines if secrets are shared with other ZenML Secrets Managers using the same backend.
2628
-
2629
- As always, we've also included various bug fixes and lots of improvements to the documentation and our examples.
2630
-
2631
- ## What's Changed
2632
- * Fix Links on the examples by @safoinme in https://github.com/zenml-io/zenml/pull/782
2633
- * Fix broken links in source code by @schustmi in https://github.com/zenml-io/zenml/pull/784
2634
- * Invalidating artifact/metadata store if there is a change in one of them by @bcdurak in https://github.com/zenml-io/zenml/pull/719
2635
- * Fixed broken link in README by @htahir1 in https://github.com/zenml-io/zenml/pull/785
2636
- * Embed Cheat Sheet in a separate docs page by @fa9r in https://github.com/zenml-io/zenml/pull/790
2637
- * Add data validation documentation by @stefannica in https://github.com/zenml-io/zenml/pull/789
2638
- * Add local path for mlflow experiment tracker by @schustmi in https://github.com/zenml-io/zenml/pull/786
2639
- * Improve Docker build logs. by @fa9r in https://github.com/zenml-io/zenml/pull/793
2640
- * Allow standard library types in steps by @stefannica in https://github.com/zenml-io/zenml/pull/799
2641
- * Added small description by @AlexejPenner in https://github.com/zenml-io/zenml/pull/801
2642
- * Replace the restriction to use Repository inside step with a warning by @stefannica in https://github.com/zenml-io/zenml/pull/792
2643
- * Adjust quickstart to data validators by @fa9r in https://github.com/zenml-io/zenml/pull/797
2644
- * Add utility function to deprecate pydantic attributes by @schustmi in https://github.com/zenml-io/zenml/pull/778
2645
- * Fix the mismatch KFP version between Kubeflow and GCP integration by @safoinme in https://github.com/zenml-io/zenml/pull/796
2646
- * Made mlflow more verbose by @htahir1 in https://github.com/zenml-io/zenml/pull/802
2647
- * Fix links by @dnth in https://github.com/zenml-io/zenml/pull/798
2648
- * KServe model deployer integration by @stefannica in https://github.com/zenml-io/zenml/pull/655
2649
- * retrieve pipeline requirement within running step by @safoinme in https://github.com/zenml-io/zenml/pull/805
2650
- * Fix `--decouple_stores` error message by @strickvl in https://github.com/zenml-io/zenml/pull/814
2651
- * Support subscripted generic step output types by @fa9r in https://github.com/zenml-io/zenml/pull/806
2652
- * Allow empty kubeconfig when using local kubeflow orchestrator by @schustmi in https://github.com/zenml-io/zenml/pull/809
2653
- * fix the secret register command in kserve docs page by @safoinme in https://github.com/zenml-io/zenml/pull/815
2654
- * Annotation example (+ stack component update) by @strickvl in https://github.com/zenml-io/zenml/pull/813
2655
- * Per-step resource configuration by @schustmi in https://github.com/zenml-io/zenml/pull/794
2656
- * Scoped secrets by @stefannica in https://github.com/zenml-io/zenml/pull/803
2657
- * Adjust examples and docs to new pipeline and step fetching syntax by @fa9r in https://github.com/zenml-io/zenml/pull/795
2658
-
2659
-
2660
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.11.0...0.12.0
2661
-
2662
-
2663
- # 0.11.0
2664
-
2665
- Our 0.11.0 release contains our new annotation workflow and stack component. We've been blogging about this for a few weeks, and even started maintaining our own repository of open-source annotation tools. With ZenML 0.11.0 you can bring data labeling into your MLOps pipelines and workflows as a first-class citizen. We've started our first iteration of this functionality by integrating with [Label Studio](https://labelstud.io/), a leader in the open-source annotation tool space.
2666
-
2667
- This release also includes a ton of updates to our documentation. (Seriously, go check them out! We added tens of thousands of words since the last release.) We continued the work on our data validation story from the previous release: [Deepchecks](https://deepchecks.com/) is the newest data validator we support, and we updated our Evidently and Whylogs integrations to include all the latest and greatest from those tools.
2668
-
2669
- Beyond this, as usual we included a number of smaller bugfixes and documentation changes to cumulatively improve experience of using ZenML as a user. For a detailed look at what's changed, give [our full release notes](https://github.com/zenml-io/zenml/releases/tag/0.11.0) a glance.
2670
-
2671
- ## Breaking Changes
2672
-
2673
- The 0.11.0 release remodels the Evidently and whylogs integrations as Data Validator stack components, in an effort to converge all data profiling and validation libraries around the same abstraction. As a consequence, you now need to configure and add a Data Validator stack component to your stack if you wish to use Evidently or whylogs in your pipelines:
2674
-
2675
- * for Evidently:
2676
-
2677
- ```shell
2678
- zenml data-validator register evidently -f evidently
2679
- zenml stack update -dv evidently
2680
- ```
2681
-
2682
- * for whylogs:
2683
-
2684
- ```shell
2685
- zenml data-validator register whylogs -f whylogs
2686
- zenml stack update -dv whylogs
2687
- ```
2688
-
2689
- In this release, we have also upgraded the Evidently and whylogs libraries to their latest and greatest versions (whylogs 1.0.6 and evidently 0.1.52). These versions introduce non-backwards compatible changes that are also reflected in the ZenML integrations:
2690
-
2691
- * Evidently profiles are now materialized using their original `evidently.model_profile.Profile ` data type and the builtin `EvidentlyProfileStep` step now also returns a `Profile` instance instead of the previous dictionary representation. This may impact your existing pipelines as you may have to update your steps to take in `Profile` artifact instances instead of dictionaries.
2692
-
2693
- * the whylogs `whylogs.DatasetProfile` data type was replaced by `whylogs.core.DatasetProfileView` in the builtin whylogs materializer and steps. This may impact your existing pipelines as you may have to update your steps to return and take in `whylogs.core.DatasetProfileView` artifact instances instead of `whylogs.DatasetProfile` objects.
2694
-
2695
- * the whylogs library has gone through a major transformation that completely removed the session concept. As a result, the `enable_whylogs` step decorator was replaced by an `enable_whylabs` step decorator. You only need to use the step decorator if you wish to log your profiles to the Whylabs platform.
2696
-
2697
- Pleaser refer to the examples provided for Evidently and whylogs to learn more about how to use the new integration versions:
2698
-
2699
- * [Evidently](https://github.com/zenml-io/zenml/tree/main/examples/evidently_drift_detection)
2700
- * [whylogs/Whylabs](https://github.com/zenml-io/zenml/tree/main/examples/whylogs_data_profiling)
2701
-
2702
- ## What's Changed
2703
- * Changed PR template to reflect integrations flow by @htahir1 in https://github.com/zenml-io/zenml/pull/732
2704
- * Fix broken Feast integration by @strickvl in https://github.com/zenml-io/zenml/pull/737
2705
- * Describe args run.py application actually supports by @jsuchome in https://github.com/zenml-io/zenml/pull/740
2706
- * Update kubernetes_orchestration example by @fa9r in https://github.com/zenml-io/zenml/pull/743
2707
- * Fix some example links by @schustmi in https://github.com/zenml-io/zenml/pull/744
2708
- * Fix broken links for docs and examples by @safoinme in https://github.com/zenml-io/zenml/pull/747
2709
- * Update CONTRIBUTING.md by @strickvl in https://github.com/zenml-io/zenml/pull/748
2710
- * Fix references to types when registering secrets managers by @strickvl in https://github.com/zenml-io/zenml/pull/738
2711
- * Make examples conform to best practices guidance by @AlexejPenner in https://github.com/zenml-io/zenml/pull/734
2712
- * API Docs with Cookies and Milk by @AlexejPenner in https://github.com/zenml-io/zenml/pull/758
2713
- * Use correct region when trying to fetch ECR repositories by @schustmi in https://github.com/zenml-io/zenml/pull/761
2714
- * Encode azure secrets manager secret names by @schustmi in https://github.com/zenml-io/zenml/pull/760
2715
- * Add nested mlflow option to enable_mlflow decorator by @Val3nt-ML in https://github.com/zenml-io/zenml/pull/742
2716
- * Combine all MLMD contexts by @schustmi in https://github.com/zenml-io/zenml/pull/759
2717
- * Prevent extra attributes when initializing StackComponents by @schustmi in https://github.com/zenml-io/zenml/pull/763
2718
- * New Docker images by @schustmi in https://github.com/zenml-io/zenml/pull/757
2719
- * Fix facets magic display in Google Colab by @fa9r in https://github.com/zenml-io/zenml/pull/765
2720
- * Allow fetching secrets from within a step by @schustmi in https://github.com/zenml-io/zenml/pull/766
2721
- * Add notebook to great expectation example by @stefannica in https://github.com/zenml-io/zenml/pull/768
2722
- * Module resolving and path fixes by @schustmi in https://github.com/zenml-io/zenml/pull/735
2723
- * Fix step operator entrypoint by @schustmi in https://github.com/zenml-io/zenml/pull/771
2724
- * Docs Revamp by @fa9r in https://github.com/zenml-io/zenml/pull/769
2725
- * Allow fetching pipeline/step by name, class or instance by @AlexejPenner in https://github.com/zenml-io/zenml/pull/733
2726
- * Data Validator abstraction and Deepchecks integration by @htahir1 in https://github.com/zenml-io/zenml/pull/553
2727
- * rolling back seldon deployment example by @safoinme in https://github.com/zenml-io/zenml/pull/774
2728
- * Added changes from 1062 and 1061 into the updated docs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/775
2729
- * Refresh Examples on `zenml examples pull` by @fa9r in https://github.com/zenml-io/zenml/pull/776
2730
- * Annotation stack component and Label Studio integration by @strickvl in https://github.com/zenml-io/zenml/pull/764
2731
- * Add optional machine specs to vertex orchestrator by @felixthebeard in https://github.com/zenml-io/zenml/pull/762
2732
-
2733
- ## New Contributors
2734
- * @jsuchome made their first contribution in https://github.com/zenml-io/zenml/pull/740
2735
- * @Val3nt-ML made their first contribution in https://github.com/zenml-io/zenml/pull/742
2736
- * @felixthebeard made their first contribution in https://github.com/zenml-io/zenml/pull/762
2737
-
2738
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.10.0...0.11.0
2739
-
2740
- # 0.10.0
2741
-
2742
- The 0.10.0 release continues our streak of extending ZenML with support for new
2743
- orchestrators, this time by adding
2744
- [the Kubernetes Native Orchestrator](https://github.com/zenml-io/zenml/tree/main/examples/kubernetes_orchestration).
2745
- This orchestrator is a lightweight alternative to other distributed orchestrators
2746
- like Airflow or Kubeflow that gives our users the ability to run pipelines in any
2747
- Kubernetes cluster without having to install and manage additional tools or
2748
- components.
2749
-
2750
- This release features another integration that we are really excited about: the
2751
- popular data profiling and validation library [Great Expectations](https://greatexpectations.io/)
2752
- is our first Data Validator, a new category of stack components that we are in
2753
- the process of standardizing, that will make data quality a central feature of
2754
- ZenML. [The ZenML Great Expectations integration](https://github.com/zenml-io/zenml/tree/main/examples/great_expectations_data_validation)
2755
- eliminates the complexity associated with configuring the store backends for
2756
- Great Expectations by reusing our Artifact Store concept for that purpose and
2757
- gives ZenML users immediate access to Great Expectations in both local and cloud
2758
- settings.
2759
-
2760
- Last but not least, the release also includes a new secrets manager implementation,
2761
- courtesy of our contributor @karimhabush, that integrates ZenML with the
2762
- [Hashicorp Vault Server](https://www.vaultproject.io) as well as a few other bug
2763
- fixes and improvements.
2764
-
2765
- ## What's Changed
2766
- * Fix broken link by @strickvl in https://github.com/zenml-io/zenml/pull/707
2767
- * Add stack component copy command by @schustmi in https://github.com/zenml-io/zenml/pull/705
2768
- * Remove `force` flag from secrets managers' implementation by @strickvl in https://github.com/zenml-io/zenml/pull/708
2769
- * Fixed wrong example README by @AlexejPenner in https://github.com/zenml-io/zenml/pull/712
2770
- * Fix dead links in integrations docs. by @fa9r in https://github.com/zenml-io/zenml/pull/710
2771
- * Fixing link to guide by @chethanuk-plutoflume in https://github.com/zenml-io/zenml/pull/716
2772
- * Adding azure-keyvault-secrets to azure integration dependencies by @safoinme in https://github.com/zenml-io/zenml/pull/717
2773
- * Fix MLflow repeated deployment error by @fa9r in https://github.com/zenml-io/zenml/pull/715
2774
- * Replace alerter standard steps by Slack-specific steps to fix config issue. by @fa9r in https://github.com/zenml-io/zenml/pull/714
2775
- * Fix broken links on README by @dnth in https://github.com/zenml-io/zenml/pull/722
2776
- * Invalidate cache by @strickvl in https://github.com/zenml-io/zenml/pull/724
2777
- * Skip Cleaning Trace on tests by @safoinme in https://github.com/zenml-io/zenml/pull/725
2778
- * Kubernetes orchestrator by @fa9r in https://github.com/zenml-io/zenml/pull/688
2779
- * Vault Secrets Manager integration - KV Secrets Engine by @karimhabush in https://github.com/zenml-io/zenml/pull/689
2780
- * Add missing help text for CLI commands by @safoinme in https://github.com/zenml-io/zenml/pull/723
2781
- * Misc bugfixes by @schustmi in https://github.com/zenml-io/zenml/pull/713
2782
- * Great Expectations integration for data validation by @strickvl in https://github.com/zenml-io/zenml/pull/555
2783
- * Fix GCP artifact store by @schustmi in https://github.com/zenml-io/zenml/pull/730
2784
-
2785
- ## New Contributors
2786
- * @chethanuk-plutoflume made their first contribution in https://github.com/zenml-io/zenml/pull/716
2787
- * @dnth made their first contribution in https://github.com/zenml-io/zenml/pull/722
2788
- * @karimhabush made their first contribution in https://github.com/zenml-io/zenml/pull/689
2789
-
2790
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.9.0...0.10.0
2791
-
2792
- # 0.9.0
2793
-
2794
- It's been a couple of weeks, so it's time for a new release! 0.9.0 brings two whole new orchestrators, one of which was contributed by a community member just one day after we unveiled new documentation for orchestrator extensibility! The release also includes a new secrets manager, a Slack integration and a bunch of other smaller changes across the codebase. (Our new orchestrators are exciting enough that they'll get their own blog posts to showcase their strengths in due course.)
2795
-
2796
- Beyond this, as usual we included a number of smaller bugfixes and documentation changes to cumulatively improve experience of using ZenML as a user.
2797
-
2798
- ## What's Changed
2799
- * Pass secret to release linting workflow by @schustmi in https://github.com/zenml-io/zenml/pull/642
2800
- * Fix typo in example by @anencore94 in https://github.com/zenml-io/zenml/pull/644
2801
- * Added `SecretExistsError` in `register_secret()` method by @hectorLop in https://github.com/zenml-io/zenml/pull/648
2802
- * Fix broken GCP Secrets example CLI command by @strickvl in https://github.com/zenml-io/zenml/pull/649
2803
- * Upgrade to `ml-pipelines-sdk` v1.8.0 by @strickvl in https://github.com/zenml-io/zenml/pull/651
2804
- * Fix example list CLI command name by @schustmi in https://github.com/zenml-io/zenml/pull/647
2805
- * Fix README by @strickvl in https://github.com/zenml-io/zenml/pull/657
2806
- * Fix broken links in docs by @safoinme in https://github.com/zenml-io/zenml/pull/652
2807
- * Add `VertexOrchestrator` implementation by @gabrielmbmb in https://github.com/zenml-io/zenml/pull/640
2808
- * Fix index page links and Heading links. by @safoinme in https://github.com/zenml-io/zenml/pull/661
2809
- * Add docstring checks to `pre-commit` script by @strickvl in https://github.com/zenml-io/zenml/pull/481
2810
- * Pin MLflow to <1.26.0 to prevent issues when matplotlib is not installed by @fa9r in https://github.com/zenml-io/zenml/pull/666
2811
- * Making `utils` more consistent by @strickvl in https://github.com/zenml-io/zenml/pull/658
2812
- * Fix linting failures on `develop` by @strickvl in https://github.com/zenml-io/zenml/pull/669
2813
- * Add docstrings for `config` module by @strickvl in https://github.com/zenml-io/zenml/pull/668
2814
- * Miscellaneous bugfixes by @schustmi in https://github.com/zenml-io/zenml/pull/660
2815
- * Make ZenServer dependencies optional by @schustmi in https://github.com/zenml-io/zenml/pull/665
2816
- * Implement Azure Secrets Manager integration by @strickvl in https://github.com/zenml-io/zenml/pull/654
2817
- * Replace `codespell` with `pyspelling` by @strickvl in https://github.com/zenml-io/zenml/pull/663
2818
- * Add Community Event to README by @htahir1 in https://github.com/zenml-io/zenml/pull/674
2819
- * Fix failing integration tests by @strickvl in https://github.com/zenml-io/zenml/pull/677
2820
- * Add `io` and `model_deployers` docstring checks by @strickvl in https://github.com/zenml-io/zenml/pull/675
2821
- * Update `zenml stack down` to use --force flag by @schustmi in https://github.com/zenml-io/zenml/pull/673
2822
- * Fix class resolving on windows by @schustmi in https://github.com/zenml-io/zenml/pull/678
2823
- * Added `pipelines` docstring checks by @strickvl in https://github.com/zenml-io/zenml/pull/676
2824
- * Docstring checks for `cli` module by @strickvl in https://github.com/zenml-io/zenml/pull/680
2825
- * Docstring fixes for `entrypoints` and `experiment_trackers` modules by @strickvl in https://github.com/zenml-io/zenml/pull/672
2826
- * Clearer Contributing.md by @htahir1 in https://github.com/zenml-io/zenml/pull/681
2827
- * How to access secrets within step added to docs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/653
2828
- * FIX: Log a warning instead of raising an `AssertionError` by @ketangangal in https://github.com/zenml-io/zenml/pull/628
2829
- * Reviewer Reminder by @htahir1 in https://github.com/zenml-io/zenml/pull/683
2830
- * Fix some docs phrasings and headers by @strickvl in https://github.com/zenml-io/zenml/pull/670
2831
- * Implement `SlackAlerter.ask()` by @fa9r in https://github.com/zenml-io/zenml/pull/662
2832
- * Extending Alerters Docs by @fa9r in https://github.com/zenml-io/zenml/pull/690
2833
- * Sane defaults for MySQL by @htahir1 in https://github.com/zenml-io/zenml/pull/691
2834
- * pd.Series materializer by @Reed-Schimmel in https://github.com/zenml-io/zenml/pull/684
2835
- * Add docstrings for `materializers` and `metadata_stores` by @strickvl in https://github.com/zenml-io/zenml/pull/694
2836
- * Docstrings for the `integrations` module(s) by @strickvl in https://github.com/zenml-io/zenml/pull/692
2837
- * Add remaining docstrings by @strickvl in https://github.com/zenml-io/zenml/pull/696
2838
- * Allow enabling mlflow/wandb/whylogs with the class-based api by @schustmi in https://github.com/zenml-io/zenml/pull/697
2839
- * GitHub Actions orchestrator by @schustmi in https://github.com/zenml-io/zenml/pull/685
2840
- * Created MySQL docs, Vertex AI docs, and step.entrypoint() by @AlexejPenner in https://github.com/zenml-io/zenml/pull/698
2841
- * Update ignored words by @strickvl in https://github.com/zenml-io/zenml/pull/701
2842
- * Stack Component registering made easier by @AlexejPenner in https://github.com/zenml-io/zenml/pull/695
2843
- * Cleaning up the docs after the revamp by @bcdurak in https://github.com/zenml-io/zenml/pull/699
2844
- * Add model deployer to CLI docs by @safoinme in https://github.com/zenml-io/zenml/pull/702
2845
- * Merge Cloud Integrations and create a Vertex AI Example by @AlexejPenner in https://github.com/zenml-io/zenml/pull/693
2846
- * GitHub actions orchestrator example by @schustmi in https://github.com/zenml-io/zenml/pull/703
2847
-
2848
- ## New Contributors
2849
- * @anencore94 made their first contribution in https://github.com/zenml-io/zenml/pull/644
2850
- * @hectorLop made their first contribution in https://github.com/zenml-io/zenml/pull/648
2851
- * @gabrielmbmb made their first contribution in https://github.com/zenml-io/zenml/pull/640
2852
- * @ketangangal made their first contribution in https://github.com/zenml-io/zenml/pull/628
2853
- * @Reed-Schimmel made their first contribution in https://github.com/zenml-io/zenml/pull/684
2854
-
2855
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.8.1...0.9.0
2856
-
2857
- # 0.8.1
2858
-
2859
- ZenML 0.8.1 is here and it comes with support for Python 3.9 🎉. It also includes major updates to our
2860
- documentation, fixes some broken links in our examples and improves the `zenml go` command which helps
2861
- you get started with ZenML.
2862
-
2863
- ## What's Changed
2864
- * Hotfix/fix failing release by @AlexejPenner in https://github.com/zenml-io/zenml/pull/611
2865
- * Remove autocomplete + alerter from documentation by @strickvl in https://github.com/zenml-io/zenml/pull/612
2866
- * Support Python 3.9 by @htahir1 in https://github.com/zenml-io/zenml/pull/605
2867
- * Revert README by @htahir1 in https://github.com/zenml-io/zenml/pull/624
2868
- * Don't build cuda image on release by @schustmi in https://github.com/zenml-io/zenml/pull/623
2869
- * Update quickstart for `zenml go` by @fa9r in https://github.com/zenml-io/zenml/pull/625
2870
- * Improve kubeflow manual setup logs by @schustmi in https://github.com/zenml-io/zenml/pull/622
2871
- * Added missing space to error message by @AlexejPenner in https://github.com/zenml-io/zenml/pull/614
2872
- * Added --set flag to register stack command by @AlexejPenner in https://github.com/zenml-io/zenml/pull/613
2873
- * Fixes for multiple examples by @schustmi in https://github.com/zenml-io/zenml/pull/626
2874
- * Bring back the `served_model` format to the keras materializer by @stefannica in https://github.com/zenml-io/zenml/pull/629
2875
- * Fix broken example links by @schustmi in https://github.com/zenml-io/zenml/pull/630
2876
- * FAQ edits by @strickvl in https://github.com/zenml-io/zenml/pull/634
2877
- * Fix version parsing by @schustmi in https://github.com/zenml-io/zenml/pull/633
2878
- * Completed Best Practices Page by @AlexejPenner in https://github.com/zenml-io/zenml/pull/635
2879
- * Comments on Issues should no longer trigger gh actions by @AlexejPenner in https://github.com/zenml-io/zenml/pull/636
2880
- * Revise `CONTRIBUTING.md` by @strickvl in https://github.com/zenml-io/zenml/pull/615
2881
- * Alerter Component for Slack Integration by @fa9r in https://github.com/zenml-io/zenml/pull/586
2882
- * Update `zenml go` to open quickstart/notebooks. by @fa9r in https://github.com/zenml-io/zenml/pull/631
2883
- * Update examples by @schustmi in https://github.com/zenml-io/zenml/pull/638
2884
- * More detailed instructions on creating an integration by @AlexejPenner in https://github.com/zenml-io/zenml/pull/639
2885
- * Added publish api docs to release workflow by @AlexejPenner in https://github.com/zenml-io/zenml/pull/641
2886
- * Added *.md to ignore paths by @AlexejPenner in https://github.com/zenml-io/zenml/pull/637
2887
- * Update README and Docs with new messaging and fix broken links by @htahir1 in https://github.com/zenml-io/zenml/pull/632
2888
-
2889
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.8.0...0.8.1
2890
-
2891
- # 0.8.0
2892
-
2893
- ## 🧘‍♀️ Extensibility is our middle name
2894
-
2895
- * The ability to register custom stack component flavors (and renaming types to
2896
- flavor (Registering custom stack component flavors by @bcdurak in
2897
- https://github.com/zenml-io/zenml/pull/541)
2898
- * The ability to easily extend orchestrators
2899
- * Documentation for stacks, stack components and flavors by @bcdurak in
2900
- https://github.com/zenml-io/zenml/pull/607
2901
- * Allow configuration of s3fs by @schustmi in
2902
- https://github.com/zenml-io/zenml/pull/532
2903
- * Ability to use SSL to connect to MySQL clients (That allows for connecting to
2904
- Cloud based MYSQL deployments)
2905
- * New MySQL metadata stores by @bcdurak in
2906
- https://github.com/zenml-io/zenml/pull/580!
2907
- * Docs and messaging change
2908
- * Make Orchestrators more extensible and simplify the interface by @AlexejPenner
2909
- in https://github.com/zenml-io/zenml/pull/581
2910
- * S3 Compatible Artifact Store and materializers file handling by @safoinme in
2911
- https://github.com/zenml-io/zenml/pull/598
2912
-
2913
- ## Manage your stacks
2914
-
2915
- * Update stack and stack components via the CLI by @strickvl in
2916
- https://github.com/zenml-io/zenml/pull/497
2917
- * Add `stack delete` confirmation prompt by @strickvl in
2918
- https://github.com/zenml-io/zenml/pull/548
2919
- * Add `zenml stack export` and `zenml stack import` commands by @fa9r in
2920
- https://github.com/zenml-io/zenml/pull/560
2921
-
2922
- ## Collaboration
2923
-
2924
- * User management by @schustmi in https://github.com/zenml-io/zenml/pull/500
2925
-
2926
- ## CLI improvements
2927
-
2928
- * CLI speed improvement by @bcdurak in
2929
- https://github.com/zenml-io/zenml/pull/567
2930
- * Ensure `rich` CLI displays full text and wraps table text by @strickvl in
2931
- https://github.com/zenml-io/zenml/pull/577
2932
- * Add CLI command to remove stack component attribute by @strickvl in
2933
- https://github.com/zenml-io/zenml/pull/590
2934
- * Beautify CLI by grouping commands list into tags by @safoinme in
2935
- https://github.com/zenml-io/zenml/pull/546
2936
-
2937
- ## New integrations:
2938
-
2939
- * Add PyTorch example by @htahir1 in https://github.com/zenml-io/zenml/pull/559
2940
- * Added GCP as secret manager by @AlexejPenner in
2941
- https://github.com/zenml-io/zenml/pull/556
2942
-
2943
- ## Documentation / ZenBytes etc
2944
-
2945
- * ZenBytes update (and ZenML Projects)
2946
- * Beautification of Examples by @AlexejPenner in
2947
- https://github.com/zenml-io/zenml/pull/491
2948
- * Document global configuration and repository by @stefannica in
2949
- https://github.com/zenml-io/zenml/pull/579
2950
- * ZenML Collaboration docs by @stefannica in
2951
- https://github.com/zenml-io/zenml/pull/597
2952
-
2953
- ## ➕ Other Updates, Additions and Fixes
2954
-
2955
- * Experiment tracker stack components by @htahir1 in
2956
- https://github.com/zenml-io/zenml/pull/530
2957
- * Secret Manager improvements and Seldon Core secret passing by @stefannica in
2958
- https://github.com/zenml-io/zenml/pull/529
2959
- * Pipeline run tracking by @schustmi in
2960
- https://github.com/zenml-io/zenml/pull/601
2961
- * Stream model deployer logs through CLI by @stefannica in
2962
- https://github.com/zenml-io/zenml/pull/557
2963
- * Fix various usability bugs by @stefannica in
2964
- https://github.com/zenml-io/zenml/pull/561
2965
- * Replace `-f` and `--force` with `-y` and `--yes` by @strickvl in
2966
- https://github.com/zenml-io/zenml/pull/566
2967
- * Make it easier to submit issues by @htahir1 in
2968
- https://github.com/zenml-io/zenml/pull/571
2969
- * Sync the repository and local store with the disk configuration files and
2970
- other fixes by @stefannica in https://github.com/zenml-io/zenml/pull/588
2971
- * Add ability to give in-line pip requirements for pipeline by @strickvl in
2972
- https://github.com/zenml-io/zenml/pull/583
2973
- * Fix evidently visualizer on Colab by @fa9r in
2974
- https://github.com/zenml-io/zenml/pull/592
2975
-
2976
- ## 🙌 Community Contributions
2977
-
2978
- * @Ankur3107 made their first contribution in
2979
- https://github.com/zenml-io/zenml/pull/467
2980
- * @MateusGheorghe made their first contribution in
2981
- https://github.com/zenml-io/zenml/pull/523
2982
- * Added support for scipy sparse matrices by @avramdj in
2983
- https://github.com/zenml-io/zenml/pull/534
2984
-
2985
- # 0.7.3
2986
-
2987
- ## 📊 Experiment Tracking Components
2988
-
2989
- [PR #530](https://github.com/zenml-io/zenml/pull/530) adds a new stack component to ZenMLs ever-growing list: `experiment_trackers` allows users to configure your experiment tracking tools with ZenML. Examples of experiment tracking tools are [Weights&Biases](https://wandb.ai), [mlflow](https://mlflow.org), [Neptune](https://neptune.ai), amongst others.
2990
-
2991
- Existing users might be confused, as ZenML has had MLflow and wandb support for a while now without such a component. However, this component allows uses more control over the configuration of MLflow and wandb with the new `MLFlowExperimentTracker` and
2992
- `WandbExperimentTracker` components. This allows these tools to work in more scenarios than the currently limiting local use-cases.
2993
-
2994
- ## 🔎 XGBoost and LightGBM support
2995
-
2996
- [XGBoost](https://xgboost.readthedocs.io/en/stable/) and [LightGBM](https://lightgbm.readthedocs.io/) are one of the most widely used boosting algorithm libraries out there. This release adds materializers for native objects for each library.
2997
-
2998
- Check out [both examples here](https://github.com/zenml-io/zenml/tree/main/examples) and PR's [#544](https://github.com/zenml-io/zenml/pull/544) and [#538](https://github.com/zenml-io/zenml/pull/538) for more details.
2999
-
3000
- ## 📂 Parameterized S3FS support to enable non-AWS S3 storage (minio, ceph)
3001
-
3002
- A big complaint of the [S3 Artifact Store](https://github.com/zenml-io/zenml/blob/main/src/zenml/integrations/s3/artifact_stores/s3_artifact_store.py) integration was that it was hard to parameterize it in a way that it supports non-AWS S3 storage like [minio](https://min.io/) and [ceph](https://docs.ceph.com/en/latest/radosgw/s3/). The latest release
3003
- made this super simple! When you want to register an S3ArtifactStore from the CLI, you can now pass in `client_kwargs`, `config_kwargs` or `s3_additional_kwargs` as a JSON string. For example:
3004
-
3005
- ```shell
3006
- zenml artifact-store register my_s3_store --type=s3 --path=s3://my_bucket \
3007
- --client_kwargs='{"endpoint_url": "http://my-s3-endpoint"}'
3008
- ```
3009
-
3010
- See PR [#532](https://github.com/zenml-io/zenml/pull/532) for more details.
3011
-
3012
- ## 🧱 New CLI commands to update stack components
3013
-
3014
- We added functionality to allow users to update stacks that already exist. This shows the basic workflow:
3015
-
3016
- ```shell
3017
- zenml orchestrator register local_orchestrator2 -t local
3018
- zenml stack update default -o local_orchestrator2
3019
- zenml stack describe default
3020
- zenml container-registry register local_registry --type=default --uri=localhost:5000
3021
- zenml container-registry update local --uri='somethingelse.com'
3022
- zenml container-registry rename local local2
3023
- zenml container-registry describe local2
3024
- zenml stack rename default new_default
3025
- zenml stack update new_default -c local2
3026
- zenml stack describe new_default
3027
- zenml stack remove-component -c
3028
- ```
3029
- More details are in the [CLI docs](https://apidocs.zenml.io/0.7.3/cli/).
3030
- Users can add new stack components to a pre-existing stack, or they can modify
3031
- already-present stack components. They can also rename their stack and individual stack components.
3032
-
3033
- ## 🐛 Seldon Core authentication through ZenML secrets
3034
-
3035
- The Seldon Core Model Deployer stack component was updated in this release to allow the configuration of ZenML secrets with credentials that authenticate Seldon to access the Artifact Store. The Seldon Core integration provides 3 different secret schemas for the 3 flavors of Artifact Store: AWS, GCP, and Azure, but custom secrets can be used as well. For more information on how to use this feature please refer to our [Seldon Core deployment example](https://github.com/zenml-io/zenml/tree/main/examples/seldon_deployment).
3036
-
3037
- Lastly, we had numerous other changes such as ensuring the PyTorch materializer works across all artifact stores
3038
- and the Kubeflow Metadata Store can be easily queried locally.
3039
-
3040
- ## Detailed Changelog
3041
- * Fix caching & `mypy` errors by @strickvl in https://github.com/zenml-io/zenml/pull/524
3042
- * Switch unit test from local_daemon to multiprocessing by @jwwwb in https://github.com/zenml-io/zenml/pull/508
3043
- * Change Pytorch materializer to support remote storage by @safoinme in https://github.com/zenml-io/zenml/pull/525
3044
- * Remove TODO from Feature Store `init` docstring by @strickvl in https://github.com/zenml-io/zenml/pull/527
3045
- * Fixed typo predicter -> predictor by @MateusGheorghe in https://github.com/zenml-io/zenml/pull/523
3046
- * Fix mypy errors by @strickvl in https://github.com/zenml-io/zenml/pull/528
3047
- * Replaced old local_* logic by @htahir1 in https://github.com/zenml-io/zenml/pull/531
3048
- * capitalize aws username in ECR docs by @wjayesh in https://github.com/zenml-io/zenml/pull/533
3049
- * Build docker base images quicker after release by @schustmi in https://github.com/zenml-io/zenml/pull/537
3050
- * Allow configuration of s3fs by @schustmi in https://github.com/zenml-io/zenml/pull/532
3051
- * Update contributing and fix ci badge to main by @htahir1 in https://github.com/zenml-io/zenml/pull/536
3052
- * Added XGboost integration by @htahir1 in https://github.com/zenml-io/zenml/pull/538
3053
- * Added fa9r to .github/teams.yml. by @fa9r in https://github.com/zenml-io/zenml/pull/539
3054
- * Secret Manager improvements and Seldon Core secret passing by @stefannica in https://github.com/zenml-io/zenml/pull/529
3055
- * User management by @schustmi in https://github.com/zenml-io/zenml/pull/500
3056
- * Update stack and stack components via the CLI by @strickvl in https://github.com/zenml-io/zenml/pull/497
3057
- * Added lightgbm integration by @htahir1 in https://github.com/zenml-io/zenml/pull/544
3058
- * Fix the Kubeflow metadata store and other stack management improvements by @stefannica in https://github.com/zenml-io/zenml/pull/542
3059
- * Experiment tracker stack components by @htahir1 in https://github.com/zenml-io/zenml/pull/530
3060
-
3061
- ## New Contributors
3062
- * @MateusGheorghe made their first contribution in https://github.com/zenml-io/zenml/pull/523
3063
- * @fa9r made their first contribution in https://github.com/zenml-io/zenml/pull/539
3064
-
3065
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.7.2...0.7.3
3066
- **Blog Post**: https://blog.zenml.io/zero-seven-two-three-release/
3067
-
3068
- # 0.7.2
3069
-
3070
- 0.7.2 is a minor release which quickly patches some bugs found in the last
3071
- release to do with Seldon and Mlflow deployment.
3072
-
3073
- This release also features initial versions of two amazing new integrations:
3074
- [HuggingFace](https://huggingface.co/) and [Weights&Biases](https://wandb.ai/site)!
3075
-
3076
- - HuggingFace models are now supported to be passed through ZenML pipelines!
3077
- - You can now track your pipeline runs with Weights&Biases with the new
3078
- `enable_wandb` decorator!
3079
-
3080
- Continuous model deployment with MLflow has been improved with ZenML 0.7.2. A new
3081
- MLflow Model Deployer Stack component is now available and needs to be part of
3082
- your stack to be able to deploy models:
3083
-
3084
- ```bash
3085
- zenml integration install mlflow
3086
- zenml model-deployer register mlflow --type=mlflow
3087
- zenml stack register local_with_mlflow -m default -a default -o default -d mlflow
3088
- zenml stack set local_with_mlflow
3089
- ```
3090
-
3091
- The MLflow Model Deployer is yet another addition to the list of Model Deployers
3092
- available in ZenML. You can read more on deploying models to production with MLflow
3093
- in our [Continuous Training and Deployment documentation section](https://docs.zenml.io/advanced-guide/practical/deploying-models) and
3094
- our [MLflow deployment example](https://github.com/zenml-io/zenml/tree/main/examples/mlflow_deployment).
3095
-
3096
- ## What's Changed
3097
- * Fix the seldon deployment example by @htahir1 in https://github.com/zenml-io/zenml/pull/511
3098
- * Create base deployer and refactor MLflow deployer implementation by @wjayesh in https://github.com/zenml-io/zenml/pull/489
3099
- * Add nlp example by @Ankur3107 in https://github.com/zenml-io/zenml/pull/467
3100
- * Fix typos by @strickvl in https://github.com/zenml-io/zenml/pull/515
3101
- * Bugfix/hypothesis given does not work with fixture by @jwwwb in https://github.com/zenml-io/zenml/pull/513
3102
- * Bug: fix long Kubernetes labels in Seldon deployments by @stefannica in https://github.com/zenml-io/zenml/pull/514
3103
- * Change prediction_uri to prediction_url in MLflow deployer by @stefannica in https://github.com/zenml-io/zenml/pull/516
3104
- * Simplify HuggingFace Integration by @AlexejPenner in https://github.com/zenml-io/zenml/pull/517
3105
- * Weights & Biases Basic Integration by @htahir1 in https://github.com/zenml-io/zenml/pull/518
3106
-
3107
- ## New Contributors
3108
- * @Ankur3107 made their first contribution in https://github.com/zenml-io/zenml/pull/467
3109
-
3110
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.7.1...0.7.2
3111
-
3112
- # 0.7.1
3113
-
3114
- The release introduces the [Seldon Core](https://github.com/SeldonIO/seldon-core) ZenML integration, featuring the
3115
- *Seldon Core Model Deployer* and a *Seldon Core standard model deployer step*.
3116
- The [*Model Deployer*](https://docs.zenml.io/component-gallery/model-deployers/model-deployers)
3117
- is a new type of stack component that enables you to develop continuous
3118
- model deployment pipelines that train models and continuously deploy them to an
3119
- external model serving tool, service or platform. You can read more on deploying models
3120
- to production with Seldon Core in our
3121
- [Continuous Training and Deployment documentation section](https://docs.zenml.io/component-gallery/model-deployers/model-deployers) and our [Seldon Core deployment example](https://github.com/zenml-io/zenml/tree/main/examples/seldon_deployment).
3122
-
3123
- We also see two new integrations with [Feast](https://feast.dev) as ZenML's first feature store integration. Feature stores allow data teams to serve data via an offline store and an online low-latency store where data is kept in sync between the two. It also offers a centralized registry where features (and feature schemas) are stored for use within a team or wider organization. ZenML now supports connecting to a Redis-backed Feast feature store as a stack component integration. Check out the [full example](https://github.com/zenml-io/zenml/tree/release/0.7.1/examples/feature_store) to see it in action!
3124
-
3125
- 0.7.1 also brings an addition to ZenML training library integrations with [NeuralProphet](https://neuralprophet.com/html/index.html). Check out the new [example](https://github.com/zenml-io/zenml/tree/main/examples) for more details, and the [docs](https://docs.zenml.io) for more further detail on all new features!
3126
-
3127
- ## What's Changed
3128
- * Add linting of examples to `pre-commit` by @strickvl in https://github.com/zenml-io/zenml/pull/490
3129
- * Remove dev-specific entries in `.gitignore` by @strickvl in https://github.com/zenml-io/zenml/pull/488
3130
- * Produce periodic mocked data for Segment/Mixpanel by @AlexejPenner in https://github.com/zenml-io/zenml/pull/487
3131
- * Abstractions for artifact stores by @bcdurak in https://github.com/zenml-io/zenml/pull/474
3132
- * enable and disable cache from runtime config by @AlexejPenner in https://github.com/zenml-io/zenml/pull/492
3133
- * Basic Seldon Core Deployment Service by @stefannica in https://github.com/zenml-io/zenml/pull/495
3134
- * Parallelize our test suite and make errors more readable by @alex-zenml in https://github.com/zenml-io/zenml/pull/378
3135
- * Provision local zenml service by @jwwwb in https://github.com/zenml-io/zenml/pull/496
3136
- * bugfix/optional-secrets-manager by @safoinme in https://github.com/zenml-io/zenml/pull/493
3137
- * Quick fix for copying folders by @bcdurak in https://github.com/zenml-io/zenml/pull/501
3138
- * Pin exact ml-pipelines-sdk version by @schustmi in https://github.com/zenml-io/zenml/pull/506
3139
- * Seldon Core model deployer stack component and standard step by @stefannica in https://github.com/zenml-io/zenml/pull/499
3140
- * Fix datetime test / bug by @strickvl in https://github.com/zenml-io/zenml/pull/507
3141
- * Added NeuralProphet integration by @htahir1 in https://github.com/zenml-io/zenml/pull/504
3142
- * Feature Store (Feast with Redis) by @strickvl in https://github.com/zenml-io/zenml/pull/498
3143
-
3144
-
3145
- # 0.7.0
3146
-
3147
- With ZenML 0.7.0, a lot has been revamped under the hood about how things are stored. Importantly what this means is that ZenML now has system-wide profiles that let you register stacks to share across several of your projects! If you still want to manage your stacks for each project folder individually, profiles still let you do that as well.
3148
-
3149
- Most projects of any complexity will require passwords or tokens to access data and infrastructure, and for this purpose ZenML 0.7.0 introduces [the Secrets Manager](https://docs.zenml.io/component-gallery/secrets-managers/secrets-managers) stack component to seamlessly pass around these values to your steps. Our AWS integration also allows you to use AWS Secrets Manager as a backend to handle all your secret persistence needs.
3150
-
3151
- Finally, in addition to the new AzureML and Sagemaker Step Operators that version 0.6.3 brought, this release also adds the ability to [run individual steps on GCP's Vertex AI](https://docs.zenml.io/component-gallery/step-operators/gcloud-vertexai).
3152
-
3153
- Beyond this, some smaller bugfixes and documentation changes combine to make ZenML 0.7.0 a more pleasant user experience.
3154
-
3155
- ## What's Changed
3156
- * Added quick mention of how to use dockerignore by @AlexejPenner in https://github.com/zenml-io/zenml/pull/468
3157
- * Made rich traceback optional with ENV variable by @htahir1 in https://github.com/zenml-io/zenml/pull/472
3158
- * Separate stack persistence from repo implementation by @jwwwb in https://github.com/zenml-io/zenml/pull/462
3159
- * Adding safoine username to github team by @safoinme in https://github.com/zenml-io/zenml/pull/475
3160
- * Fix `zenml stack describe` bug by @strickvl in https://github.com/zenml-io/zenml/pull/476
3161
- * ZenProfiles and centralized ZenML repositories by @stefannica in https://github.com/zenml-io/zenml/pull/471
3162
- * Add `examples` folder to linting script by @strickvl in https://github.com/zenml-io/zenml/pull/482
3163
- * Vertex AI integration and numerous other changes by @htahir1 in https://github.com/zenml-io/zenml/pull/477
3164
- * Fix profile handing in the Azure ML step operator by @stefannica in https://github.com/zenml-io/zenml/pull/483
3165
- * Copy the entire stack configuration into containers by @stefannica in https://github.com/zenml-io/zenml/pull/480
3166
- * Improve some things with the Profiles CLI output by @stefannica in https://github.com/zenml-io/zenml/pull/484
3167
- * Secrets manager stack component and interface by @AlexejPenner in https://github.com/zenml-io/zenml/pull/470
3168
- * Update schedule.py (#485) by @avramdj in https://github.com/zenml-io/zenml/pull/485
3169
-
3170
- ## New Contributors
3171
- * @avramdj in https://github.com/zenml-io/zenml/pull/485
3172
-
3173
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.6.3...0.7.0rc
3174
-
3175
-
3176
- # 0.6.3
3177
-
3178
- With ZenML 0.6.3, you can now run your ZenML steps on Sagemaker and AzureML! It's normal to have certain steps that require specific hardware on which to run model training, for example, and this latest release gives you the power to switch out hardware for individual steps to support this.
3179
-
3180
- We added a new Tensorboard visualization that you can make use of when using our Kubeflow Pipelines integration. We handle the background processes needed to spin up this interactive web interface that you can use to visualize your model's performance over time.
3181
-
3182
- Behind the scenes we gave our integration testing suite a massive upgrade, fixed a number of smaller bugs and made documentation updates. For a detailed look at what's changed, give [our full release notes](https://github.com/zenml-io/zenml/releases/tag/0.6.3) a glance.
3183
-
3184
- ## What's Changed
3185
- * Fix typo by @wjayesh in https://github.com/zenml-io/zenml/pull/432
3186
- * Remove tabulate dependency (replaced by rich) by @jwwwb in https://github.com/zenml-io/zenml/pull/436
3187
- * Fix potential issue with local integration tests by @schustmi in https://github.com/zenml-io/zenml/pull/428
3188
- * Remove support for python 3.6 by @schustmi in https://github.com/zenml-io/zenml/pull/437
3189
- * Create clean test repos in separate folders by @michael-zenml in https://github.com/zenml-io/zenml/pull/430
3190
- * Copy explicit materializers before modifying, log correct class by @schustmi in https://github.com/zenml-io/zenml/pull/434
3191
- * Fix typo in mysql password parameter by @pafpixel in https://github.com/zenml-io/zenml/pull/438
3192
- * Pytest-fixture for separate virtual environments for each integration test by @AlexejPenner in https://github.com/zenml-io/zenml/pull/405
3193
- * Bugfix/fix failing tests due to comments step by @AlexejPenner in https://github.com/zenml-io/zenml/pull/444
3194
- * Added --use-virtualenvs option to allow choosing envs to run by @AlexejPenner in https://github.com/zenml-io/zenml/pull/445
3195
- * Log whether a step was cached by @strickvl in https://github.com/zenml-io/zenml/pull/435
3196
- * Added basic integration tests for remaining examples by @strickvl in https://github.com/zenml-io/zenml/pull/439
3197
- * Improve error message when provisioning local kubeflow resources with a non-local container registry. by @schustmi in https://github.com/zenml-io/zenml/pull/442
3198
- * Enable generic step inputs and outputs by @schustmi in https://github.com/zenml-io/zenml/pull/440
3199
- * Removed old reference to a step that no longer exists by @AlexejPenner in https://github.com/zenml-io/zenml/pull/452
3200
- * Correctly use custom kubernetes context if specified by @schustmi in https://github.com/zenml-io/zenml/pull/451
3201
- * Fix CLI stack component describe/list commands by @schustmi in https://github.com/zenml-io/zenml/pull/450
3202
- * Ignore type of any tfx proto file by @schustmi in https://github.com/zenml-io/zenml/pull/453
3203
- * Another boyscout pr on the gh actions by @AlexejPenner in https://github.com/zenml-io/zenml/pull/455
3204
- * Upgrade TFX to 1.6.1 by @jwwwb in https://github.com/zenml-io/zenml/pull/441
3205
- * Added ZenML Projects to README by @htahir1 in https://github.com/zenml-io/zenml/pull/457
3206
- * Upgrade `rich` from 11.0 to 12.0 by @strickvl in https://github.com/zenml-io/zenml/pull/458
3207
- * Add Kubeflow tensorboard viz and fix tensorflow file IO for cloud back-ends by @stefannica in https://github.com/zenml-io/zenml/pull/447
3208
- * Implementing the `explain` subcommand by @bcdurak in https://github.com/zenml-io/zenml/pull/460
3209
- * Implement AzureML and Sagemaker step operators by @schustmi in https://github.com/zenml-io/zenml/pull/456
3210
-
3211
- ## New Contributors
3212
- * @pafpixel made their first contribution in https://github.com/zenml-io/zenml/pull/438
3213
-
3214
- # 0.6.2
3215
-
3216
- ZenML 0.6.2 brings you the ability to serve models using MLflow deployments as well as an updated CLI interface! For a real continuous deployment cycle, we know that ZenML pipelines should be able to handle everything — from pre-processing to training to serving to monitoring and then potentially re-training and re-serving. The interfaces we created in this release are the foundation on which all of this will build.
3217
-
3218
- We also improved how you interact with ZenML through the CLI. Everything looks so much smarter and readable now with the popular `rich` library integrated into our dependencies.
3219
-
3220
- Smaller changes that you'll notice include updates to our cloud integrations and bug fixes for Windows users. For a detailed look at what's changed, see below.
3221
-
3222
- ## What's Changed
3223
-
3224
- * Updated notebook for quickstart by @htahir1 in https://github.com/zenml-io/zenml/pull/398
3225
- * Update tensorflow base image by @schustmi in https://github.com/zenml-io/zenml/pull/396
3226
- * Add cloud specific deployment guide + refactoring by @wjayesh in https://github.com/zenml-io/zenml/pull/400
3227
- * add cloud sub page to toc.md by @wjayesh in https://github.com/zenml-io/zenml/pull/401
3228
- * fix tab indent by @wjayesh in https://github.com/zenml-io/zenml/pull/402
3229
- * Bugfix for workflows failing due to modules not being found by @bcdurak in https://github.com/zenml-io/zenml/pull/390
3230
- * Improve github workflows by @schustmi in https://github.com/zenml-io/zenml/pull/406
3231
- * Add plausible script to docs.zenml.io pages by @alex-zenml in https://github.com/zenml-io/zenml/pull/414
3232
- * Add orchestrator and ECR docs by @wjayesh in https://github.com/zenml-io/zenml/pull/413
3233
- * Richify the CLI by @alex-zenml in https://github.com/zenml-io/zenml/pull/392
3234
- * Allow specification of required integrations for a pipeline by @schustmi in https://github.com/zenml-io/zenml/pull/408
3235
- * Update quickstart in docs to conform to examples by @htahir1 in https://github.com/zenml-io/zenml/pull/410
3236
- * Updated PR template with some more details by @htahir1 in https://github.com/zenml-io/zenml/pull/411
3237
- * Bugfix on the CLI to work without a git installation by @bcdurak in https://github.com/zenml-io/zenml/pull/412
3238
- * Added Ayush's Handle by @ayush714 in https://github.com/zenml-io/zenml/pull/417
3239
- * Adding an info message on Windows if there is no application associated to .sh files by @bcdurak in https://github.com/zenml-io/zenml/pull/419
3240
- * Catch `matplotlib` crash when running IPython in terminal by @strickvl in https://github.com/zenml-io/zenml/pull/416
3241
- * Automatically activate integrations when unable to find stack component by @schustmi in https://github.com/zenml-io/zenml/pull/420
3242
- * Fix some code inspections by @halvgaard in https://github.com/zenml-io/zenml/pull/422
3243
- * Prepare integration tests on kubeflow by @schustmi in https://github.com/zenml-io/zenml/pull/423
3244
- * Add concepts back into glossary by @strickvl in https://github.com/zenml-io/zenml/pull/425
3245
- * Make guide easier to follow by @wjayesh in https://github.com/zenml-io/zenml/pull/427
3246
- * Fix httplib to 0.19 and pyparsing to 2.4 by @jwwwb in https://github.com/zenml-io/zenml/pull/426
3247
- * Wrap context serialization in try blocks by @jwwwb in https://github.com/zenml-io/zenml/pull/397
3248
- * Track stack configuration when registering and running a pipeline by @schustmi in https://github.com/zenml-io/zenml/pull/429
3249
- * MLflow deployment integration by @stefannica in https://github.com/zenml-io/zenml/pull/415
3250
-
3251
- # 0.6.1
3252
-
3253
- ZenML 0.6.1 is out and it's all about the cloud ☁️! We have improved AWS integration and a brand-new [Azure](https://github.com/zenml-io/zenml/tree/0.6.1/src/zenml/integrations/azure) integration! Run your pipelines on AWS and Azure now and let us know how it went on our [Slack](https://zenml.io/slack-invite).
3254
-
3255
- Smaller changes that you'll notice include much-awaited updates and fixes, including the first iterations of scheduling pipelines and tracking more reproducibility-relevant data in the metadata store.
3256
-
3257
- For a detailed look at what's changed, see below.
3258
-
3259
- ## What's changed
3260
-
3261
- * Add MVP for scheduling by @htahir1 in https://github.com/zenml-io/zenml/pull/354
3262
- * Add S3 artifact store and filesystem by @schustmi in https://github.com/zenml-io/zenml/pull/359
3263
- * Update 0.6.0 release notes by @alex-zenml in https://github.com/zenml-io/zenml/pull/362
3264
- * Fix cuda-dev base container image by @stefannica in https://github.com/zenml-io/zenml/pull/361
3265
- * Mark ZenML as typed package by @schustmi in https://github.com/zenml-io/zenml/pull/360
3266
- * Improve error message if ZenML repo is missing inside kubeflow container entrypoint by @schustmi in https://github.com/zenml-io/zenml/pull/363
3267
- * Spell whylogs and WhyLabs correctly in our docs by @stefannica in https://github.com/zenml-io/zenml/pull/369
3268
- * Feature/add readme for mkdocs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/372
3269
- * Cleaning up the assets pushed by gitbook automatically by @bcdurak in https://github.com/zenml-io/zenml/pull/371
3270
- * Turn codecov off for patch updates by @htahir1 in https://github.com/zenml-io/zenml/pull/376
3271
- * Minor changes and fixes by @schustmi in https://github.com/zenml-io/zenml/pull/365
3272
- * Only include python files when building local docs by @schustmi in https://github.com/zenml-io/zenml/pull/377
3273
- * Prevent access to repo during step execution by @schustmi in https://github.com/zenml-io/zenml/pull/370
3274
- * Removed duplicated Section within docs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/379
3275
- * Fixing the materializer registry to spot sub-classes of defined types by @bcdurak in https://github.com/zenml-io/zenml/pull/368
3276
- * Computing hash of step and materializer works in notebooks by @htahir1 in https://github.com/zenml-io/zenml/pull/375
3277
- * Sort requirements to improve docker build caching by @schustmi in https://github.com/zenml-io/zenml/pull/383
3278
- * Make sure the s3 artifact store is registered when the integration is activated by @schustmi in https://github.com/zenml-io/zenml/pull/382
3279
- * Make MLflow integration work with kubeflow and scheduled pipelines by @stefannica in https://github.com/zenml-io/zenml/pull/374
3280
- * Reset _has_been_called to False ahead of pipeline.connect by @AlexejPenner in https://github.com/zenml-io/zenml/pull/385
3281
- * Fix local airflow example by @schustmi in https://github.com/zenml-io/zenml/pull/366
3282
- * Improve and extend base materializer error messages by @schustmi in https://github.com/zenml-io/zenml/pull/380
3283
- * Windows CI issue by @schustmi in https://github.com/zenml-io/zenml/pull/389
3284
- * Add the ability to attach custom properties to the Metadata Store by @bcdurak in https://github.com/zenml-io/zenml/pull/355
3285
- * Handle case when return values do not match output by @AlexejPenner in https://github.com/zenml-io/zenml/pull/386
3286
- * Quickstart code in docs fixed by @AlexejPenner in https://github.com/zenml-io/zenml/pull/387
3287
- * Fix mlflow tracking example by @stefannica in https://github.com/zenml-io/zenml/pull/393
3288
- * Implement azure artifact store and fileio plugin by @schustmi in https://github.com/zenml-io/zenml/pull/388
3289
- * Create todo issues with separate issue type by @schustmi in https://github.com/zenml-io/zenml/pull/394
3290
- * Log that steps are cached while running pipeline by @alex-zenml in https://github.com/zenml-io/zenml/pull/381
3291
- * Schedule added to context for all orchestrators by @AlexejPenner in https://github.com/zenml-io/zenml/pull/391
3292
-
3293
- # 0.6.0
3294
-
3295
- ZenML 0.6.0 is out now. We've made some big changes under the hood, but our biggest public-facing addition is our new integration to support all your data logging needs: [`whylogs`](https://github.com/whylabs/whylogs). Our core architecture was [thoroughly reworked](https://github.com/zenml-io/zenml/pull/305) and is now in a much better place to support our ongoing development needs.
3296
-
3297
-
3298
- Smaller changes that you'll notice include extensive documentation additions, updates and fixes. For a detailed look at what's changed, see below.
3299
-
3300
- ## 📊 Whylogs logging
3301
-
3302
- [Whylogs](https://github.com/whylabs/whylogs) is an open source library that analyzes your data and creates statistical summaries called whylogs profiles. Whylogs profiles can be visualized locally or uploaded to the WhyLabs platform where more comprehensive analysis can be carried out.
3303
-
3304
- ZenML integrates seamlessly with Whylogs and [WhyLabs](https://whylabs.ai/). This example shows how easy it is to enhance steps in an existing ML pipeline with Whylogs profiling features. Changes to the user code are minimal while ZenML takes care of all aspects related to Whylogs session initialization, profile serialization, versioning and persistence and even uploading generated profiles to [Whylabs](https://whylabs.ai/).
3305
-
3306
- ![Example of the visualizations you can make from Whylogs profiles](https://blog.zenml.io/assets/posts/release_0_6_0/whylogs-visualizer.png)
3307
-
3308
- With our `WhylogsVisualizer`, as described in [the associated example notes](https://github.com/zenml-io/zenml/tree/0.6.0/examples/whylogs), you can visualize Whylogs profiles generated as part of a pipeline.
3309
-
3310
- ## ⛩ New Core Architecture
3311
-
3312
- We implemented [some fundamental changes](https://github.com/zenml-io/zenml/pull/305) to the core architecture to solve some of the issues we previously had and provide a more extensible design to support quicker implementations of different stack components and integrations. The main change was to refactor the `Repository`, `Stack` and `StackComponent` architectures. These changes had a pretty wide impact so involved changes in many files throughout the codebase, especially in the CLI which makes calls to all these pieces.
3313
-
3314
- We've already seen how it helps us move faster in building integrations and we hope it helps making contributions as pain-free as possible!
3315
-
3316
- ## 🗒 Documentation and Example Updates
3317
-
3318
- As the codebase and functionality of ZenML grows, we always want to make sure our documentation is clear, up-to-date and easy to use. We made a number of changes in this release that will improve your experience in this regard:
3319
-
3320
- - added a number of new explainers on key ZenML concepts and how to use them in your code, notably on [how to create a custom materializer](https://docs.zenml.io/v/0.6.0/guides/index/custom-materializer) and [how to fetch historic pipeline runs](https://docs.zenml.io/v/0.6.0/guides/index/historic-runs) using the `StepContext`
3321
- - fixed a number of typos and broken links
3322
- - [added versioning](https://github.com/zenml-io/zenml/pull/336) to our API documentation so you can choose to view the reference appropriate to the version that you're using. We now use `mkdocs` for this so you'll notice a slight visual refresh as well.
3323
- - added new examples highlighting specific use cases and integrations:
3324
- - how to create a custom materializer ([example](https://github.com/zenml-io/zenml/tree/0.6.0/examples/custom_materializer))
3325
- - how to fetch historical pipeline runs ([example](https://github.com/zenml-io/zenml/tree/0.6.0/examples/fetch_historical_runs))
3326
- - how to use standard interfaces for common ML patterns ([example](https://github.com/zenml-io/zenml/tree/0.6.0/examples/standard_interfaces))
3327
- - `whylogs` logging ([example](https://github.com/zenml-io/zenml/tree/0.6.0/examples/whylogs))
3328
-
3329
- ## ➕ Other updates, additions and fixes
3330
-
3331
- As with most releases, we made a number of small but significant fixes and additions. The most import of these were that you can now [access the metadata store](https://github.com/zenml-io/zenml/pull/338) via the step context. This enables a number of new possible workflows and pipeline patterns and we're really excited to have this in the release.
3332
-
3333
- We [added in](https://github.com/zenml-io/zenml/pull/315) a markdown parser for the `zenml example info …` command, so now when you want to use our CLI to learn more about specific examples you will see beautifully parsed text and not markdown markup.
3334
-
3335
- We improved a few of our error messages, too, like for when the return type of a step function [doesn’t match the expected type](https://github.com/zenml-io/zenml/pull/322), or if [step is called twice](https://github.com/zenml-io/zenml/pull/353). We hope this makes ZenML just that little bit easier to use.
3336
-
3337
- # 0.5.7
3338
-
3339
- ZenML 0.5.7 is here :100: and it brings not one, but :fire:TWO:fire: brand new integrations :rocket:! ZenML now support [MLFlow](https://www.mlflow.org/docs/latest/tracking.html) for tracking pipelines as experiments and [Evidently](https://github.com/evidentlyai/evidently) for detecting drift in your ML pipelines in production!
3340
-
3341
- ## New Features
3342
- * Introducing the [MLFlow Tracking](https://www.mlflow.org/docs/latest/tracking.html) Integration, a first step towards
3343
- our complete MLFlow Integration as described in the [#115 poll](https://github.com/zenml-io/zenml/discussions/115).
3344
- Full example found [here](https://github.com/zenml-io/zenml/tree/0.5.7/examples/mlflow).
3345
- * Introducing the [Evidently](https://github.com/evidentlyai/evidently) integration. Use the standard
3346
- [Evidently drift detection step](https://github.com/zenml-io/zenml/blob/0.5.7/src/zenml/integrations/evidently/steps/evidently_profile.py)
3347
- to calculate drift automatically in your pipeline. Full example found [here](https://github.com/zenml-io/zenml/tree/0.5.7/examples/drift_detection).
3348
-
3349
- ## Bugfixes
3350
- * Prevent KFP install timeouts during `stack up` by @stefannica in https://github.com/zenml-io/zenml/pull/299
3351
- * Prevent naming parameters same name as inputs/outputs to prevent kwargs-errors by @bcdurak in https://github.com/zenml-io/zenml/pull/300
3352
-
3353
-
3354
- ## What's Changed
3355
- * Force pull overwrites local examples without user confirmation by @AlexejPenner in https://github.com/zenml-io/zenml/pull/278
3356
- * Updated README with latest features by @htahir1 in https://github.com/zenml-io/zenml/pull/280
3357
- * Integration test the examples within ci pipeline by @AlexejPenner in https://github.com/zenml-io/zenml/pull/282
3358
- * Add exception for missing system requirements by @kamalesh0406 in https://github.com/zenml-io/zenml/pull/281
3359
- * Examples are automatically pulled if not present before any example command is run by @AlexejPenner in https://github.com/zenml-io/zenml/pull/279
3360
- * Add pipeline error for passing the same step object twice by @kamalesh0406 in https://github.com/zenml-io/zenml/pull/283
3361
- * Create pytest fixture to use a temporary zenml repo in tests by @htahir1 in https://github.com/zenml-io/zenml/pull/287
3362
- * Additional example run implementations for standard interfaces, functional and class based api by @AlexejPenner in https://github.com/zenml-io/zenml/pull/286
3363
- * Make pull_request.yaml actually use os.runner instead of ubuntu by @htahir1 in https://github.com/zenml-io/zenml/pull/288
3364
- * In pytest return to previous workdir before tearing down tmp_dir fixture by @AlexejPenner in https://github.com/zenml-io/zenml/pull/289
3365
- * Don't raise an exception during integration installation if system requirement is not installed by @schustmi in https://github.com/zenml-io/zenml/pull/291
3366
- * Update starting page for the API docs by @alex-zenml in https://github.com/zenml-io/zenml/pull/294
3367
- * Add `stack up` failure prompts by @alex-zenml in https://github.com/zenml-io/zenml/pull/290
3368
- * Spelling fixes by @alex-zenml in https://github.com/zenml-io/zenml/pull/295
3369
- * Remove instructions to git init from docs by @bcdurak in https://github.com/zenml-io/zenml/pull/293
3370
- * Fix the `stack up` and `orchestrator up` failure prompts by @stefannica in https://github.com/zenml-io/zenml/pull/297
3371
- * Prevent KFP install timeouts during `stack up` by @stefannica in https://github.com/zenml-io/zenml/pull/299
3372
- * Add stefannica to list of internal github users by @stefannica in https://github.com/zenml-io/zenml/pull/303
3373
- * Improve KFP UI daemon error messages by @schustmi in https://github.com/zenml-io/zenml/pull/292
3374
- * Replaced old diagrams with new ones in the docs by @AlexejPenner in https://github.com/zenml-io/zenml/pull/306
3375
- * Fix broken links & text formatting in docs by @alex-zenml in https://github.com/zenml-io/zenml/pull/302
3376
- * Run KFP container as local user/group if local by @stefannica in https://github.com/zenml-io/zenml/pull/304
3377
- * Add james to github team by @jwwwb in https://github.com/zenml-io/zenml/pull/308
3378
- * Implement integration of mlflow tracking by @AlexejPenner in https://github.com/zenml-io/zenml/pull/301
3379
- * Bugfix integration tests on windows by @jwwwb in https://github.com/zenml-io/zenml/pull/296
3380
- * Prevent naming parameters same name as inputs/outputs to prevent kwargs-errors by @bcdurak in https://github.com/zenml-io/zenml/pull/300
3381
- * Add tests for `fileio` by @alex-zenml in https://github.com/zenml-io/zenml/pull/298
3382
- * Evidently integration (standard steps and example) by @alex-zenml in https://github.com/zenml-io/zenml/pull/307
3383
- * Implemented evidently integration by @stefannica in https://github.com/zenml-io/zenml/pull/310
3384
- * Make mlflow example faster by @AlexejPenner in https://github.com/zenml-io/zenml/pull/312
3385
-
3386
- ## New Contributors
3387
- * @kamalesh0406 made their first contribution in https://github.com/zenml-io/zenml/pull/281
3388
- * @stefannica made their first contribution in https://github.com/zenml-io/zenml/pull/297
3389
- * @jwwwb made their first contribution in https://github.com/zenml-io/zenml/pull/308
3390
-
3391
-
3392
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.5.6...0.5.7
3393
- # 0.5.6
3394
-
3395
- ) * (
3396
- ( /( ( ` )\ )
3397
- )\()) ( )\))( (()/(
3398
- ((_)\ ))\ ( ((_)()\ /(_))
3399
- _((_) /((_) )\ ) (_()((_) (_))
3400
- |_ / (_)) _(_/( | \/ | | |
3401
- / / / -_) | ' \)) | |\/| | | |__
3402
- /___| \___| |_||_| |_| |_| |____|
3403
-
3404
- This release fixes some known bugs from previous releases and especially 0.5.5. Therefore, upgrading to 0.5.6 is a **breaking change**. You must do the following in order to proceed with this version:
3405
-
3406
- ```
3407
- cd zenml_enabled_repo
3408
- rm -rf .zen/
3409
- ```
3410
-
3411
- And then start again with ZenML init:
3412
-
3413
- ```
3414
- pip install --upgrade zenml
3415
- zenml init
3416
- ```
3417
-
3418
- ## New Features
3419
- * Added `zenml example run [EXAMPLE_RUN_NAME]` feature: The ability to run an example with one command. In order to run this, do `zenml example pull` first and see all examples available by running `zenml example list`.
3420
- * Added ability to specify a `.dockerignore` file before running pipelines on Kubeflow.
3421
- * Kubeflow Orchestrator is now leaner and faster.
3422
- * Added the `describe` command group to the CLI for groups `stack`, `orchestrator`, `artifact-store`, and `metadata-store`. E.g. `zenml stack describe`
3423
-
3424
- ## Bug fixes and minor improvements
3425
- * Adding `StepContext` to a branch now invalidates caching by default. Disable explicitly with `enable_cache=True`.
3426
- * Docs updated to reflect minor changes in CLI commands.
3427
- * CLI `list` commands now mentions active component. Try `zenml stack list` to check this out.
3428
- * `zenml version` now has cooler art.
3429
-
3430
- ## What's Changed
3431
- * Delete blog reference from release notes by @alex-zenml in https://github.com/zenml-io/zenml/pull/228
3432
- * Docs updates by @alex-zenml in https://github.com/zenml-io/zenml/pull/229
3433
- * Update kubeflow guide by @schustmi in https://github.com/zenml-io/zenml/pull/230
3434
- * Updated quickstart to reflect newest zenml version by @alexej-zenml in https://github.com/zenml-io/zenml/pull/231
3435
- * Add KFP GCP example readme by @schustmi in https://github.com/zenml-io/zenml/pull/233
3436
- * Baris/update docs with class api by @bcdurak in https://github.com/zenml-io/zenml/pull/232
3437
- * fixing a small typo [ci skip] by @bcdurak in https://github.com/zenml-io/zenml/pull/236
3438
- * Hamza/docs last min updates by @htahir1 in https://github.com/zenml-io/zenml/pull/234
3439
- * fix broken links by @alex-zenml in https://github.com/zenml-io/zenml/pull/237
3440
- * added one more page for standardized artifacts [ci skip] by @bcdurak in https://github.com/zenml-io/zenml/pull/238
3441
- * Unified use of cli_utils.print_table for all table format cli printouts by @AlexejPenner in https://github.com/zenml-io/zenml/pull/240
3442
- * Remove unused tfx kubeflow code by @schustmi in https://github.com/zenml-io/zenml/pull/239
3443
- * Relaxed typing requirements for cli_utils.print_table by @AlexejPenner in https://github.com/zenml-io/zenml/pull/241
3444
- * Pass input artifact types to kubeflow container entrypoint by @schustmi in https://github.com/zenml-io/zenml/pull/242
3445
- * Catch duplicate run name error and throw custom exception by @schustmi in https://github.com/zenml-io/zenml/pull/243
3446
- * Improved logs by @htahir1 in https://github.com/zenml-io/zenml/pull/244
3447
- * CLI active component highlighting by @alex-zenml in https://github.com/zenml-io/zenml/pull/245
3448
- * Baris/eng 244 clean up by @bcdurak in https://github.com/zenml-io/zenml/pull/246
3449
- * CLI describe command by @alex-zenml in https://github.com/zenml-io/zenml/pull/248
3450
- * Alexej/eng 35 run examples from cli by @AlexejPenner in https://github.com/zenml-io/zenml/pull/253
3451
- * CLI argument and option flag consistency improvements by @alex-zenml in https://github.com/zenml-io/zenml/pull/250
3452
- * Invalidate caching when a step requires a step context by @schustmi in https://github.com/zenml-io/zenml/pull/252
3453
- * Implement better error messages for custom step output artifact types by @schustmi in https://github.com/zenml-io/zenml/pull/254
3454
- * Small improvements by @schustmi in https://github.com/zenml-io/zenml/pull/251
3455
- * Kubeflow dockerignore by @schustmi in https://github.com/zenml-io/zenml/pull/249
3456
- * Rename container registry folder to be consistent with the other stack components by @schustmi in https://github.com/zenml-io/zenml/pull/257
3457
- * Update todo script by @schustmi in https://github.com/zenml-io/zenml/pull/256
3458
- * Update docs following CLI change by @alex-zenml in https://github.com/zenml-io/zenml/pull/255
3459
- * Bump mypy version by @schustmi in https://github.com/zenml-io/zenml/pull/258
3460
- * Kubeflow Windows daemon alternative by @schustmi in https://github.com/zenml-io/zenml/pull/259
3461
- * Run pre commit in local environment by @schustmi in https://github.com/zenml-io/zenml/pull/260
3462
- * Hamza/eng 269 move beam out by @htahir1 in https://github.com/zenml-io/zenml/pull/262
3463
- * Update docs by @alex-zenml in https://github.com/zenml-io/zenml/pull/261
3464
- * Hamza/update readme with contribitions by @htahir1 in https://github.com/zenml-io/zenml/pull/271
3465
- * Hamza/eng 256 backoff analytics by @htahir1 in https://github.com/zenml-io/zenml/pull/270
3466
- * Add spellcheck by @alex-zenml in https://github.com/zenml-io/zenml/pull/264
3467
- * Using the pipeline run name to explicitly access when explaining the … by @AlexejPenner in https://github.com/zenml-io/zenml/pull/263
3468
- * Import user main module in kubeflow entrypoint to make sure all components are registered by @schustmi in https://github.com/zenml-io/zenml/pull/273
3469
- * Fix cli version command by @schustmi in https://github.com/zenml-io/zenml/pull/272
3470
- * User is informed of version mismatch and example pull defaults to cod… by @AlexejPenner in https://github.com/zenml-io/zenml/pull/274
3471
- * Hamza/eng 274 telemetry by @htahir1 in https://github.com/zenml-io/zenml/pull/275
3472
- * Update docs with right commands and events by @htahir1 in https://github.com/zenml-io/zenml/pull/276
3473
- * Fixed type annotation for some python versions by @AlexejPenner in https://github.com/zenml-io/zenml/pull/277
3474
-
3475
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.5.5...0.5.6
3476
-
3477
- # 0.5.5
3478
-
3479
- ZenML 0.5.5 is jam-packed with new features to take your ML pipelines to the next level. Our three biggest new features: Kubeflow Pipelines, CLI support for our integrations and Standard Interfaces. That’s right, Standard Interfaces are back!
3480
-
3481
- ## What's Changed
3482
- * Implement base component tests by @schustmi in https://github.com/zenml-io/zenml/pull/211
3483
- * Add chapter names by @alex-zenml in https://github.com/zenml-io/zenml/pull/212
3484
- * Fix docstring error by @alex-zenml in https://github.com/zenml-io/zenml/pull/213
3485
- * Hamza/add caching example by @htahir1 in https://github.com/zenml-io/zenml/pull/214
3486
- * Update readme by @alex-zenml in https://github.com/zenml-io/zenml/pull/216
3487
- * Hamza/add small utils by @htahir1 in https://github.com/zenml-io/zenml/pull/219
3488
- * Update docs by @alex-zenml in https://github.com/zenml-io/zenml/pull/220
3489
- * Docs fixes by @alex-zenml in https://github.com/zenml-io/zenml/pull/222
3490
- * Baris/eng 182 standard interfaces by @bcdurak in https://github.com/zenml-io/zenml/pull/209
3491
- * Fix naming error by @alex-zenml in https://github.com/zenml-io/zenml/pull/221
3492
- * Remove framework design by @alex-zenml in https://github.com/zenml-io/zenml/pull/224
3493
- * Alexej/eng 234 zenml integration install by @alexej-zenml in https://github.com/zenml-io/zenml/pull/223
3494
- * Fix deployment section order by @alex-zenml in https://github.com/zenml-io/zenml/pull/225
3495
- * the readme of the example by @bcdurak in https://github.com/zenml-io/zenml/pull/227
3496
- * Kubeflow integration by @schustmi in https://github.com/zenml-io/zenml/pull/226
3497
-
3498
- ## New Contributors
3499
- * @alexej-zenml made their first contribution in https://github.com/zenml-io/zenml/pull/223
3500
-
3501
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.5.4...0.5.5
3502
-
3503
- # 0.5.4
3504
-
3505
- 0.5.4 adds a [lineage tracking](https://github.com/zenml-io/zenml/tree/main/examples/lineage) integration to visualize lineage of pipeline runs! It also includes numerous bug fixes and optimizations.
3506
-
3507
- ## What's Changed
3508
- * Fix typos by @alex-zenml in https://github.com/zenml-io/zenml/pull/192
3509
- * Fix Apache Beam bug by @alex-zenml in https://github.com/zenml-io/zenml/pull/194
3510
- * Fix apache beam logging bug by @alex-zenml in https://github.com/zenml-io/zenml/pull/195
3511
- * Add step context by @schustmi in https://github.com/zenml-io/zenml/pull/196
3512
- * Init docstrings by @alex-zenml in https://github.com/zenml-io/zenml/pull/197
3513
- * Hamza/small fixes by @htahir1 in https://github.com/zenml-io/zenml/pull/199
3514
- * Fix writing to metadata store with airflow orchestrator by @schustmi in https://github.com/zenml-io/zenml/pull/198
3515
- * Use pipeline parameter name as step name in post execution by @schustmi in https://github.com/zenml-io/zenml/pull/200
3516
- * Add error message when step name is not in metadata store by @schustmi in https://github.com/zenml-io/zenml/pull/201
3517
- * Add option to set repo location using an environment variable by @schustmi in https://github.com/zenml-io/zenml/pull/202
3518
- * Run cloudbuild after pypi publish by @schustmi in https://github.com/zenml-io/zenml/pull/203
3519
- * Refactor component generation by @schustmi in https://github.com/zenml-io/zenml/pull/204
3520
- * Removed unnecessary panel dependency by @htahir1 in https://github.com/zenml-io/zenml/pull/206
3521
- * Updated README to successively install requirements by @AlexejPenner in https://github.com/zenml-io/zenml/pull/205
3522
- * Store active stack in local config by @schustmi in https://github.com/zenml-io/zenml/pull/208
3523
- * Hamza/eng 125 lineage tracking vis by @htahir1 in https://github.com/zenml-io/zenml/pull/207
3524
-
3525
- ## New Contributors
3526
- * @AlexejPenner made their first contribution in https://github.com/zenml-io/zenml/pull/205
3527
-
3528
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.5.3...0.5.4
3529
-
3530
- # 0.5.3
3531
-
3532
- Version 0.5.3 adds [statistics visualizations](https://github.com/zenml-io/zenml/blob/main/examples/visualizers/statistics/README.md), greatly improved speed for CLI commands as well as lots of small improvements to the pipeline and step interface.
3533
-
3534
- ## What's Changed
3535
- * Make tests run in a random order by @alex-zenml in https://github.com/zenml-io/zenml/pull/160
3536
- * Connect steps using *args by @schustmi in https://github.com/zenml-io/zenml/pull/162
3537
- * Move location of repobeats image by @alex-zenml in https://github.com/zenml-io/zenml/pull/163
3538
- * Hamza/add sam by @htahir1 in https://github.com/zenml-io/zenml/pull/165
3539
- * Pipeline initialization with *args by @schustmi in https://github.com/zenml-io/zenml/pull/164
3540
- * Improve detection of third party modules during class resolving by @schustmi in https://github.com/zenml-io/zenml/pull/167
3541
- * Merge path_utils into fileio & refactor what was left by @alex-zenml in https://github.com/zenml-io/zenml/pull/168
3542
- * Update docker files by @schustmi in https://github.com/zenml-io/zenml/pull/169
3543
- * Hamza/deploy api reference by @htahir1 in https://github.com/zenml-io/zenml/pull/171
3544
- * API Reference by @schustmi in https://github.com/zenml-io/zenml/pull/172
3545
- * Add color back into our github actions by @alex-zenml in https://github.com/zenml-io/zenml/pull/176
3546
- * Refactor tests not raising by @alex-zenml in https://github.com/zenml-io/zenml/pull/177
3547
- * Improve step and pipeline interface by @schustmi in https://github.com/zenml-io/zenml/pull/175
3548
- * Alex/eng 27 windows bug again by @htahir1 in https://github.com/zenml-io/zenml/pull/178
3549
- * Automated todo tracking by @schustmi in https://github.com/zenml-io/zenml/pull/173
3550
- * Fix mypy issues related to windows by @schustmi in https://github.com/zenml-io/zenml/pull/179
3551
- * Include Github URL to TODO comment in issue by @schustmi in https://github.com/zenml-io/zenml/pull/181
3552
- * Create Visualizers logic by @htahir1 in https://github.com/zenml-io/zenml/pull/182
3553
- * Add README for visualizers examples by @alex-zenml in https://github.com/zenml-io/zenml/pull/184
3554
- * Allow None as default value for BaseStep configs by @schustmi in https://github.com/zenml-io/zenml/pull/185
3555
- * Baris/eng 37 standard import check by @bcdurak in https://github.com/zenml-io/zenml/pull/183
3556
- * Replace duplicated code by call to source_utils.resolve_class by @schustmi in https://github.com/zenml-io/zenml/pull/186
3557
- * Remove unused base enum cases by @schustmi in https://github.com/zenml-io/zenml/pull/187
3558
- * Testing mocks for CLI `examples` command by @alex-zenml in https://github.com/zenml-io/zenml/pull/180
3559
- * Set the correct module for steps created using our decorator by @schustmi in https://github.com/zenml-io/zenml/pull/188
3560
- * Fix some cli commands by @schustmi in https://github.com/zenml-io/zenml/pull/189
3561
- * Tag jira issues for which the todo was deleted by @schustmi in https://github.com/zenml-io/zenml/pull/190
3562
- * Remove deadlinks by @alex-zenml in https://github.com/zenml-io/zenml/pull/191
3563
-
3564
-
3565
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.5.2...0.5.3
3566
-
3567
- # 0.5.2
3568
-
3569
- 0.5.2 brings an improved post-execution workflow and lots of minor changes and upgrades for the developer experience when
3570
- creating pipelines. It also improves the Airflow orchestrator logic to accommodate for more real world scenarios.
3571
-
3572
- ## What's Changed
3573
- * Fix autocomplete for step and pipeline decorated functions by @schustmi in https://github.com/zenml-io/zenml/pull/144
3574
- * Add reference docs for CLI example functionality by @alex-zenml in https://github.com/zenml-io/zenml/pull/145
3575
- * Fix mypy integration by @schustmi in https://github.com/zenml-io/zenml/pull/147
3576
- * Improve Post-Execution Workflow by @schustmi in https://github.com/zenml-io/zenml/pull/146
3577
- * Fix CLI examples bug by @alex-zenml in https://github.com/zenml-io/zenml/pull/148
3578
- * Update quickstart example notebook by @alex-zenml in https://github.com/zenml-io/zenml/pull/150
3579
- * Add documentation images by @alex-zenml in https://github.com/zenml-io/zenml/pull/151
3580
- * Add prettierignore to gitignore by @alex-zenml in https://github.com/zenml-io/zenml/pull/154
3581
- * Airflow orchestrator improvements by @schustmi in https://github.com/zenml-io/zenml/pull/153
3582
- * Google colab added by @htahir1 in https://github.com/zenml-io/zenml/pull/155
3583
- * Tests for `core` and `cli` modules by @alex-zenml in https://github.com/zenml-io/zenml/pull/149
3584
- * Add Paperspace environment check by @alex-zenml in https://github.com/zenml-io/zenml/pull/156
3585
- * Step caching by @schustmi in https://github.com/zenml-io/zenml/pull/157
3586
- * Add documentation for pipeline step parameter and run name configuration by @schustmi in https://github.com/zenml-io/zenml/pull/158
3587
- * Automatically disable caching if the step function code has changed by @schustmi in https://github.com/zenml-io/zenml/pull/159
3588
-
3589
-
3590
- **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.5.1...0.5.2
3591
-
3592
- # 0.5.1
3593
- 0.5.1 builds on top of Slack of the 0.5.0 release with quick bug updates.
3594
-
3595
-
3596
- ## Overview
3597
-
3598
- * Pipeline can now be run via a YAML file. #132
3599
- * CLI now let's you pull directly from GitHub examples folder. :fire: Amazing @alex-zenml with #141!
3600
- * ZenML now has full [mypy](http://mypy-lang.org/) compliance. :tada: Thanks @schustmi for #140!
3601
- * Numerous bugs and performance improvements. #136, @bcdurak great job with #142
3602
- * Added new docs with a low level API guide. #143
3603
-
3604
- [Our roadmap](https://zenml.hellonext.co/roadmap) goes into further detail on the timeline. Vote on the [next features now](https://github.com/zenml-io/zenml/discussions).
3605
-
3606
- We encourage every user (old or new) to start afresh with this release. Please go over our latest [docs](https://docs.zenml.io) and [examples](examples) to get a hang of the new system.
3607
-
3608
-
3609
- # 0.5.0
3610
- This long-awaited ZenML release marks a seminal moment in the project's history. We present to you a complete
3611
- revamp of the internals of ZenML, with a fresh new design and API. While these changes are significant, and have been months
3612
- in the making, the original vision of ZenML has not wavered. We hope that the ZenML community finds the new
3613
- design choices easier to grasp and use, and we welcome feedback on the [issues board](https://github.com/zenml-io/zenml/issues).
3614
-
3615
- ## Warning
3616
- 0.5.0 is a complete API change from the previous versions of ZenML, and is a *breaking* upgrade. Fundamental
3617
- concepts have been changed, and therefore backwards compatibility is not maintained. Please use only this version
3618
- with fresh projects.
3619
-
3620
- With such significant changes, we expect this release to also be breaking. Please report any bugs in the issue board, and
3621
- they should be addressed in upcoming releases.
3622
-
3623
- ## Overview
3624
-
3625
- * Introducing a new functional API for creating pipelines and steps. This is now the default mechanism for building ZenML pipelines. [read more](https://docs.zenml.io/starter-guide/pipelines/pipelines)
3626
- * Steps now use Materializers to handle artifact serialization/deserialization between steps. This is a powerful change, and will be expanded upon in the future. [read more](https://docs.zenml.io/pipelines/materializers)
3627
- * Introducing the new `Stack` paradigm: Easily transition from one MLOps stack to the next with a few CLI commands [read more](https://docs.zenml.io/starter-guide/stacks/stacks)
3628
- * Introducing a new `Artifact`, `Typing`, and `Annotation` system, with `pydantic` (and `dataclasses`) support [read more](https://docs.zenml.io/getting-started/core-concepts)
3629
- * Deprecating the `pipelines_dir`: Now individual pipelines will be stored in their metadata stores, making the metadata store a single source of truth. [read more](https://docs.zenml.io/getting-started/core-concepts)
3630
- * Deprecating the YAML config file: ZenML no longer natively compiles to an intermediate YAML-based representation. Instead, it compiles and deploys directly into the selected orchestrator's
3631
- representation. While we do plan to support running pipelines directly through YAML in the future, it will no longer be
3632
- the default route through which pipelines are run. [read more about orchestrators here](https://docs.zenml.io/component-gallery/orchestrators/orchestrators)
3633
-
3634
- ## Technical Improvements
3635
- * A completely new system design, please refer to the [docs](https://docs.zenml.io/getting-started/core-concepts).
3636
- * Better type hints and docstrings.
3637
- * Auto-completion support.
3638
- * Numerous performance improvements and bug fixes, including a smaller dependency footprint.
3639
-
3640
- ## What to expect in the next weeks and the new ZenML
3641
- Currently, this release is bare bones. We are missing some basic features which used to be part of ZenML 0.3.8 (the previous release):
3642
-
3643
- * Standard interfaces for `TrainingPipeline`.
3644
- * Individual step interfaces like `PreprocessorStep`, `TrainerStep`, `DeployerStep` etc. need to be rewritten from within the new paradigm. They should
3645
- be included in the non-RC version of this release.
3646
- * A proper production setup with an orchestrator like Airflow.
3647
- * A post-execution workflow to analyze and inspect pipeline runs.
3648
- * The concept of `Backends` will evolve into a simple mechanism of transitioning individual steps into different runners.
3649
- * Support for `KubernetesOrchestrator`, `KubeflowOrchestrator`, `GCPOrchestrator` and `AWSOrchestrator` are also planned.
3650
- * Dependency management including Docker support is planned.
3651
-
3652
- [Our roadmap](https://zenml.hellonext.co/roadmap) goes into further detail on the timeline.
3653
-
3654
- We encourage every user (old or new) to start afresh with this release. Please go over our latest [docs](https://docs.zenml.io)
3655
- and [examples](examples) to get a hang of the new system.
3656
-
3657
- Onwards and upwards to 1.0.0!
3658
-
3659
- # 0.5.0rc2
3660
- This long-awaited ZenML release marks a seminal moment in the project's history. We present to you a complete
3661
- revamp of the internals of ZenML, with a fresh new design and API. While these changes are significant, and have been months
3662
- in the making, the original vision of ZenML has not wavered. We hope that the ZenML community finds the new
3663
- design choices easier to grasp and use, and we welcome feedback on the [issues board](https://github.com/zenml-io/zenml/issues).
3664
-
3665
- ## Warning
3666
- 0.5.0rc0 is a complete API change from the previous versions of ZenML, and is a *breaking* upgrade. Fundamental
3667
- concepts have been changed, and therefore backwards compatibility is not maintained. Please use only this version
3668
- with fresh projects.
3669
-
3670
- With such significant changes, we expect this release to also be breaking. Please report any bugs in the issue board, and
3671
- they should be addressed in upcoming releases.
3672
-
3673
- ## Overview
3674
-
3675
- * Introducing a new functional API for creating pipelines and steps. This is now the default mechanism for building ZenML pipelines. [read more](https://docs.zenml.io/starter-guide/pipelines/pipelines)
3676
- * Introducing the new `Stack` paradigm: Easily transition from one MLOps stack to the next with a few CLI commands [read more](https://docs.zenml.io/starter-guide/stacks/stacks)
3677
- * Introducing a new `Artifact`, `Typing`, and `Annotation` system, with `pydantic` (and `dataclasses`) support [read more](https://docs.zenml.io/getting-started/core-concepts)
3678
- * Deprecating the `pipelines_dir`: Now individual pipelines will be stored in their metadata stores, making the metadata store a single source of truth. [read more](https://docs.zenml.io/starter-guide/stacks/stacks)
3679
- * Deprecating the YAML config file: ZenML no longer natively compiles to an intermediate YAML-based representation. Instead, it compiles and deploys directly into the selected orchestrator's
3680
- representation. While we do plan to support running pipelines directly through YAML in the future, it will no longer be
3681
- the default route through which pipelines are run. [read more about orchestrators here](https://docs.zenml.io/core/stacks)
3682
-
3683
- ## Technical Improvements
3684
- * A completely new system design, please refer to the [docs](https://docs.zenml.io/component-gallery/orchestrators/orchestrators).
3685
- * Better type hints and docstrings.
3686
- * Auto-completion support.
3687
- * Numerous performance improvements and bug fixes, including a smaller dependency footprint.
3688
-
3689
- ## What to expect in the next weeks and the new ZenML
3690
- Currently, this release is bare bones. We are missing some basic features which used to be part of ZenML 0.3.8 (the previous release):
3691
-
3692
- * Standard interfaces for `TrainingPipeline`.
3693
- * Individual step interfaces like `PreprocessorStep`, `TrainerStep`, `DeployerStep` etc. need to be rewritten from within the new paradigm. They should
3694
- be included in the non-RC version of this release.
3695
- * A proper production setup with an orchestrator like Airflow.
3696
- * A post-execution workflow to analyze and inspect pipeline runs.
3697
- * The concept of `Backends` will evolve into a simple mechanism of transitioning individual steps into different runners.
3698
- * Support for `KubernetesOrchestrator`, `KubeflowOrchestrator`, `GCPOrchestrator` and `AWSOrchestrator` are also planned.
3699
- * Dependency management including Docker support is planned.
3700
-
3701
- [Our roadmap](https://zenml.hellonext.co/roadmap) goes into further detail on the timeline.
3702
-
3703
- We encourage every user (old or new) to start afresh with this release. Please go over our latest [docs](https://docs.zenml.io)
3704
- and [examples](examples) to get a hang of the new system.
3705
-
3706
- Onwards and upwards to 1.0.0!
3707
-
3708
- # 0.3.7.1
3709
- This release fixes some known bugs from previous releases and especially 0.3.7. Same procedure as always, please delete existing pipelines, metadata, and artifact stores.
3710
-
3711
- ```
3712
- cd zenml_enabled_repo
3713
- rm -rf pipelines/
3714
- rm -rf .zenml/
3715
- ```
3716
-
3717
- And then another ZenML init:
3718
-
3719
- ```
3720
- pip install --upgrade zenml
3721
- cd zenml_enabled_repo
3722
- zenml init
3723
- ```
3724
-
3725
- ## New Features
3726
- * Introduced new `zenml example` CLI sub-group: Easily pull examples via zenml to check it out.
3727
-
3728
- ```bash
3729
- zenml example pull # pulls all examples in `zenml_examples` directory
3730
- zenml example pull EXAMPLE_NAME # pulls specific example
3731
- zenml example info EXAMPLE_NAME # gives quick info regarding example
3732
- ```
3733
- Thanks Michael Xu for the suggestion!
3734
-
3735
- * Updated examples with new `zenml examples` paradigm for examples.
3736
-
3737
- ## Bug Fixes + Refactor
3738
-
3739
- * ZenML now works on Windows -> Thank you @Franky007Bond for the heads up.
3740
- * Updated numerous bugs in examples directory. Also updated README's.
3741
- * Fixed remote orchestration logic -> Now remote orchestration works.
3742
- * Changed datasource `to_config` to include reference to backend, metadata, and artifact store.
3743
-
3744
-
3745
- # 0.3.7
3746
- 0.3.7 is a much-needed, long-awaited, big refactor of the Datasources paradigm of ZenML. There are also bug fixes, improvements, and more!
3747
-
3748
- For those upgrading from an older version of ZenML, we ask to please delete their old `pipelines` dir and `.zenml` folders and start afresh with a `zenml init`.
3749
-
3750
- If only working locally, this is as simple as:
3751
-
3752
- ```
3753
- cd zenml_enabled_repo
3754
- rm -rf pipelines/
3755
- rm -rf .zenml/
3756
- ```
3757
-
3758
- And then another ZenML init:
3759
-
3760
- ```
3761
- pip install --upgrade zenml
3762
- cd zenml_enabled_repo
3763
- zenml init
3764
- ```
3765
-
3766
- ## New Features
3767
- * The inner-workings of the `BaseDatasource` have been modified along with the concrete implementations. Now, there is no relation between a `DataStep` and a `Datasource`: A `Datasource` holds all the logic to version and track itself via the new `commit` paradigm.
3768
-
3769
- * Introduced a new interface for datasources, the `process` method which is responsible for ingesting data and writing to TFRecords to be consumed by later steps.
3770
-
3771
- * Datasource versions (snapshots) can be accessed directly via the `commits` paradigm: Every commit is a new version of data.
3772
-
3773
- * Added `JSONDatasource` and `TFRecordsDatasource`.
3774
-
3775
- ## Bug Fixes + Refactor
3776
- A big thanks to our new contributor @aak7912 for the help in this release with issue #71 and PR #75.
3777
-
3778
- * Added an example for [regression](https://github.com/zenml-io/zenml/tree/main/examples/regression).
3779
- * `compare_training_runs()` now takes an optional `datasource` parameter to filter by datasource.
3780
- * `Trainer` interface refined to focus on `run_fn` rather than other helper functions.
3781
- * New docs released with a streamlined vision and coherent storyline: https://docs.zenml.io
3782
- * Got rid of unnecessary Torch dependency with base ZenML version.
3783
-
3784
-
3785
- # 0.3.6
3786
- 0.3.6 is a more inwards-facing release as part of a bigger effort to create a more flexible ZenML. As a first step, ZenML now supports arbitrary splits for all components natively, freeing us from the `train/eval` split paradigm. Here is an overview of changes:
3787
-
3788
- ## New Features
3789
- * The inner-workings of the `BaseTrainerStep`, `BaseEvaluatorStep` and the `BasePreprocessorStep` have been modified along with their respective components to work with the new split_mapping. Now, users can define arbitrary splits (not just train/eval). E.g. Doing a `train/eval/test` split is possible.
3790
-
3791
- * Within the instance of a `TrainerStep`, the user has access to `input_patterns` and `output_patterns` which provide the required uris with respect to their splits for the input and output(test_results) examples.
3792
-
3793
- * The built-in trainers are modified to work with the new changes.
3794
-
3795
- ## Bug Fixes + Refactor
3796
- A big thanks to our new super supporter @zyfzjsc988 for most of the feedback that led to bug fixes and enhancements for this release:
3797
-
3798
- * #63: Now one can specify which ports ZenML opens its add-on applications.
3799
- * #64 Now there is a way to list integrations with the following code:
3800
- ```
3801
- from zenml.utils.requirements_utils import list_integrations.
3802
- list_integrations()
3803
- ```
3804
- * Fixed #61: `view_anomalies()` breaking in the quickstart.
3805
- * Analytics is now `opt-in` by default, to get rid of the unnecessary prompt at `zenml init`. Users can still freely `opt-out` by using the CLI:
3806
-
3807
- ```
3808
- zenml config analytics opt-out
3809
- ```
3810
-
3811
- Again, the telemetry data is fully anonymized and just used to improve the product. Read more [here](https://docs.zenml.io/misc/usage-analytics)
3812
-
3813
- # 0.3.5
3814
-
3815
- ## New Features
3816
- * Added a new interface into the trainer step called [`test_fn`]() which is utilized to produce model predictions and save them as test results
3817
-
3818
- * Implemented a new evaluator step called [`AgnosticEvaluator`]() which is designed to work regardless of the model type as long as you run the `test_fn` in your trainer step
3819
-
3820
- * The first two changes allow torch trainer steps to be followed by an agnostic evaluator step, see the example [here]().
3821
-
3822
- * Proposed a new naming scheme, which is now integrated into the built-in steps, in order to make it easier to handle feature/label names
3823
-
3824
- * Implemented a new adapted version of 2 TFX components, namely the [`Trainer`]() and the [`Evaluator`]() to allow the aforementioned changes to take place
3825
-
3826
- * Modified the [`TorchFeedForwardTrainer`]() to showcase how to use TensorBoard in conjunction with PyTorch
3827
-
3828
-
3829
- ## Bug Fixes + Refactor
3830
- * Refactored how ZenML treats relative imports for custom steps. Now:
3831
- ```python
3832
-
3833
- ```
3834
-
3835
- * Updated the [Scikit Example](https://github.com/zenml-io/zenml/tree/main/examples/scikit), [PyTorch Lightning Example](https://github.com/zenml-io/zenml/tree/main/examples/pytorch_lightning), [GAN Example](https://github.com/zenml-io/zenml/tree/main/examples/gan) accordingly. Now they should work according to their README's.
3836
-
3837
- Big shout out to @SarahKing92 in issue #34 for raising the above issues!
3838
-
3839
-
3840
- # 0.3.4
3841
- This release is a big design change and refactor. It involves a significant change in the Configuration file structure, meaning this is a **breaking upgrade**.
3842
- For those upgrading from an older version of ZenML, we ask to please delete their old `pipelines` dir and `.zenml` folders and start afresh with a `zenml init`.
3843
-
3844
- If only working locally, this is as simple as:
3845
-
3846
- ```
3847
- cd zenml_enabled_repo
3848
- rm -rf pipelines/
3849
- rm -rf .zenml/
3850
- ```
3851
-
3852
- And then another ZenML init:
3853
-
3854
- ```
3855
- pip install --upgrade zenml
3856
- cd zenml_enabled_repo
3857
- zenml init
3858
- ```
3859
-
3860
- ## New Features
3861
- * Introduced another higher-level pipeline: The [NLPPipeline](https://github.com/zenml-io/zenml/blob/main/zenml/pipelines/nlp_pipeline.py). This is a generic
3862
- NLP pipeline for a text-datasource based training task. Full example of how to use the NLPPipeline can be found [here](https://github.com/zenml-io/zenml/tree/main/examples/nlp)
3863
- * Introduced a [BaseTokenizerStep](https://github.com/zenml-io/zenml/blob/main/zenml/steps/tokenizer/base_tokenizer.py) as a simple mechanism to define how to train and encode using any generic
3864
- tokenizer (again for NLP-based tasks).
3865
-
3866
- ## Bug Fixes + Refactor
3867
- * Significant change to imports: Now imports are way simpler and user-friendly. E.g. Instead of:
3868
- ```python
3869
- from zenml.core.pipelines.training_pipeline import TrainingPipeline
3870
- ```
3871
-
3872
- A user can simple do:
3873
-
3874
- ```python
3875
- from zenml.pipelines import TrainingPipeline
3876
- ```
3877
-
3878
- The caveat is of course that this might involve a re-write of older ZenML code imports.
3879
-
3880
- Note: Future releases are also expected to be breaking. Until announced, please expect that upgrading ZenML versions may cause older-ZenML
3881
- generated pipelines to behave unexpectedly.
3882
- <!-- -->