zenml-nightly 0.70.0.dev20241205__py3-none-any.whl → 0.71.0.dev20241207__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.
README.md CHANGED
@@ -147,7 +147,7 @@ Or, through our CLI command:
147
147
  zenml stack deploy --provider aws
148
148
  ```
149
149
 
150
- Alternatively, if the necessary pieces of infrastructure is already deployed, you can register a cloud stack seamlessly through the stack wizard:
150
+ Alternatively, if the necessary pieces of infrastructure are already deployed, you can register a cloud stack seamlessly through the stack wizard:
151
151
 
152
152
  ```bash
153
153
  zenml stack register <STACK_NAME> --provider aws
@@ -195,9 +195,9 @@ def trainer(training_df: pd.DataFrame) -> Annotated["model", torch.nn.Module]:
195
195
 
196
196
  ![Exploring ZenML Models](/docs/book/.gitbook/assets/readme_mcp.gif)
197
197
 
198
- ### Purpose built for machine learning with integration to you favorite tools
198
+ ### Purpose built for machine learning with integrations to your favorite tools
199
199
 
200
- While ZenML brings a lot of value of the box, it also integrates into your existing tooling and infrastructure without you having to be locked in.
200
+ While ZenML brings a lot of value out of the box, it also integrates into your existing tooling and infrastructure without you having to be locked in.
201
201
 
202
202
  ```python
203
203
  from bentoml._internal.bento import bento
@@ -333,7 +333,7 @@ the Apache License Version 2.0.
333
333
  <a href="https://github.com/zenml-io/zenml-projects">Projects Showcase</a>
334
334
  <br />
335
335
  <br />
336
- 🎉 Version 0.70.0 is out. Check out the release notes
336
+ 🎉 Version 0.71.0 is out. Check out the release notes
337
337
  <a href="https://github.com/zenml-io/zenml/releases">here</a>.
338
338
  <br />
339
339
  🖥️ Download our VS Code Extension <a href="https://marketplace.visualstudio.com/items?itemName=ZenML.zenml-vscode">here</a>.
RELEASE_NOTES.md CHANGED
@@ -1,5 +1,117 @@
1
1
  <!-- markdown-link-check-disable -->
2
2
 
3
+ # 0.71.0
4
+
5
+ ZenML version 0.71.0 delivers a new Modal step operator integration as its
6
+ core feature, enabling efficient cloud execution for ML pipelines with granular
7
+ hardware configuration options. The release strengthens enterprise capabilities
8
+ through improved token management and dashboard features, while expanding
9
+ artifact handling with dynamic naming and enhanced visualization support.
10
+ Additionally, it includes various infrastructure improvements and bug fixes
11
+ that enhance the platform's stability and usability, particularly around
12
+ Docker connectivity, Kubernetes management, and service connector operations.
13
+
14
+ ## New Feature: Modal Step Operator Integration
15
+
16
+ ZenML now [integrates with Modal](https://modal.com/), bringing lightning-fast
17
+ cloud execution capabilities to your ML pipelines. This new step operator[
18
+ https://docs.zenml.io/stack-components/step-operators/modal] allows you to
19
+ execute individual pipeline steps on Modal's specialized compute instances,
20
+ offering notable speed particularly for Docker image building and hardware
21
+ provisioning. With simple configuration options, you can precisely specify
22
+ hardware requirements like GPU type, CPU count, and memory for each step,
23
+ making it ideal for resource-intensive ML workloads.
24
+
25
+ ## Other Highlights
26
+
27
+ - **Workload API Token Management:** Refactored token management for improved
28
+ security with a generic API token dispenser.
29
+ - **Dashboard Enhancements:**
30
+ - Introduced service account management capabilities.
31
+ - Added API key creation and integration features.
32
+ - **Dynamic Artifact Naming:** Introduced capability to dynamically name
33
+ artifacts.
34
+ - **Visualization Enhancements:** Made dictionaries and lists visualizable,
35
+ added JSON visualization type.
36
+
37
+ ## Additional Features and Improvements
38
+
39
+ - Improved error messages for Docker daemon connectivity
40
+ - Enhanced SageMaker URL handling
41
+ - Simplified model version artifact linkage
42
+ - Added testing for pipeline templates
43
+ - Improved Kubernetes pod and label length management
44
+ - Allowed skipping type annotations for step inputs
45
+ - Enabled using feature service instances instead of just names
46
+
47
+ ## Bug Fixes
48
+
49
+ - Fixed issues with getting out of an inaccessible active stack
50
+ - Fixed race conditions in the service connector type registry
51
+ - Resolved migration test complications
52
+ - Corrected documentation links
53
+ - Fixed artifact store and artifact URI handling
54
+ - Addressed various scalability and compatibility issues
55
+
56
+ ## Documentation Updates
57
+
58
+ - Added documentation redirects
59
+ - Updated PyTorch documentation links
60
+ - Improved service connector documentation
61
+
62
+ ## What's Changed
63
+ * Refactored workload API token management for better security and implemented generic API token dispenser by @stefannica in https://github.com/zenml-io/zenml/pull/3154
64
+ * Add 0.70.0 to the migration tests by @avishniakov in https://github.com/zenml-io/zenml/pull/3190
65
+ * Adjustments to the PR template by @bcdurak in https://github.com/zenml-io/zenml/pull/3194
66
+ * [docs] Fix links in the how-to section of docs by @wjayesh in https://github.com/zenml-io/zenml/pull/3196
67
+ * Fixing sagemaker urls to take the settings into consideration by @bcdurak in https://github.com/zenml-io/zenml/pull/3195
68
+ * Add cached run into testing of migrations by @avishniakov in https://github.com/zenml-io/zenml/pull/3199
69
+ * Fix service connector type registry race conditions by @stefannica in https://github.com/zenml-io/zenml/pull/3202
70
+ * Refactor container resource configuration in Vertex Orchestrator test by @avishniakov in https://github.com/zenml-io/zenml/pull/3203
71
+ * [docs] Add missing redirects by @wjayesh in https://github.com/zenml-io/zenml/pull/3200
72
+ * Add links to `uv` new PyTorch documentation by @strickvl in https://github.com/zenml-io/zenml/pull/3204
73
+ * Fix broken docs link by @strickvl in https://github.com/zenml-io/zenml/pull/3208
74
+ * Bugfix for getting out of an inaccessible active stack with no permissions by @bcdurak in https://github.com/zenml-io/zenml/pull/3198
75
+ * Simplify model version artifact linkage by @schustmi in https://github.com/zenml-io/zenml/pull/3175
76
+ * Reenable macos testing by @avishniakov in https://github.com/zenml-io/zenml/pull/3205
77
+ * Various fixes and improvements by @stefannica in https://github.com/zenml-io/zenml/pull/3211
78
+ * Pass config path during zenml pipeline build by @schustmi in https://github.com/zenml-io/zenml/pull/3212
79
+ * Add test for running templates by @schustmi in https://github.com/zenml-io/zenml/pull/3192
80
+ * Fix service connector docstring by @schustmi in https://github.com/zenml-io/zenml/pull/3216
81
+ * Improve error message when docker daemon is not reachable by @schustmi in https://github.com/zenml-io/zenml/pull/3214
82
+ * Don't run migration for empty updates by @schustmi in https://github.com/zenml-io/zenml/pull/3210
83
+ * Remove `--check` from format script and fix naming by @safoinme in https://github.com/zenml-io/zenml/pull/3218
84
+ * More scalability improvements by @schustmi in https://github.com/zenml-io/zenml/pull/3206
85
+ * Use correct keyword for artifact store open by @schustmi in https://github.com/zenml-io/zenml/pull/3220
86
+ * Fix passing of some sagemaker settings by @schustmi in https://github.com/zenml-io/zenml/pull/3221
87
+ * Add hint when trying to connect with api key by @schustmi in https://github.com/zenml-io/zenml/pull/3222
88
+ * Allow passing None values as parameter for optional complex types by @schustmi in https://github.com/zenml-io/zenml/pull/3215
89
+ * Limit kubernetes pod and label length by @schustmi in https://github.com/zenml-io/zenml/pull/3217
90
+ * Updating the quickstart example to use the new `log_metadata` by @bcdurak in https://github.com/zenml-io/zenml/pull/3188
91
+ * Allow skipping type annotations for step inputs by @schustmi in https://github.com/zenml-io/zenml/pull/3223
92
+ * Modal Step Operator by @strickvl in https://github.com/zenml-io/zenml/pull/2948
93
+ * Add dynamic artifacts naming, documentation and tests by @avishniakov in https://github.com/zenml-io/zenml/pull/3201
94
+ * Run template CLI command and bugfix by @schustmi in https://github.com/zenml-io/zenml/pull/3225
95
+ * Make dicts/lists visualizable and add JSON as viz type by @wjayesh in https://github.com/zenml-io/zenml/pull/2882
96
+ * Instances of the `FeatureService`s are now used instead of only the names of the FeatureServices. by @aiakide in https://github.com/zenml-io/zenml/pull/3209
97
+ * Quickstart fixes by @schustmi in https://github.com/zenml-io/zenml/pull/3227
98
+ * Add missing docs by @schustmi in https://github.com/zenml-io/zenml/pull/3226
99
+ * Misc cleanup by @schustmi in https://github.com/zenml-io/zenml/pull/3229
100
+ * Fix input resolution for steps with dynamic artifact names by @schustmi in https://github.com/zenml-io/zenml/pull/3228
101
+ * Follow-up on the `run_metadata` changes by @bcdurak in https://github.com/zenml-io/zenml/pull/3193
102
+ * Fixed broken links by @htahir1 in https://github.com/zenml-io/zenml/pull/3232
103
+ * Fixed wandb login problem in Quickstart by @htahir1 in https://github.com/zenml-io/zenml/pull/3233
104
+ * Misc bugfixes by @schustmi in https://github.com/zenml-io/zenml/pull/3234
105
+ * Add additional way to fetch docker repo digest by @schustmi in https://github.com/zenml-io/zenml/pull/3231
106
+ * AWS Image Builder implementation by @stefannica in https://github.com/zenml-io/zenml/pull/2904
107
+ * Disable client-side caching for some orchestrators by @schustmi in https://github.com/zenml-io/zenml/pull/3235
108
+ * Fix artifact uris for artifacts with name placeholders by @schustmi in https://github.com/zenml-io/zenml/pull/3237
109
+ * Materializer test fix on Windows by @bcdurak in https://github.com/zenml-io/zenml/pull/3238
110
+ * Fix GET step run endpoint to return unhydrated response if requested by @schustmi in https://github.com/zenml-io/zenml/pull/3240
111
+ * Pipeline run API token fixes and improvements by @stefannica in https://github.com/zenml-io/zenml/pull/3242
112
+
113
+ **Full Changelog**: https://github.com/zenml-io/zenml/compare/0.70.0...0.71.0
114
+
3
115
  # 0.70.0
4
116
 
5
117
  The **ZenML 0.70.0** release includes a significant number of database schema changes and migrations, which means upgrading to this version will require extra caution. As always, please make sure to make a copy of your production database before upgrading.
zenml/VERSION CHANGED
@@ -1 +1 @@
1
- 0.70.0.dev20241205
1
+ 0.71.0.dev20241207
@@ -23,7 +23,7 @@ from typing import (
23
23
  cast,
24
24
  )
25
25
 
26
- from pydantic import field_validator
26
+ from pydantic import field_validator, BaseModel
27
27
 
28
28
  from zenml.config.base_settings import BaseSettings
29
29
  from zenml.experiment_trackers.base_experiment_tracker import (
@@ -60,18 +60,26 @@ class WandbExperimentTrackerSettings(BaseSettings):
60
60
  Args:
61
61
  value: The settings.
62
62
 
63
+ Raises:
64
+ ValueError: If converting the settings failed.
65
+
63
66
  Returns:
64
67
  Dict representation of the settings.
65
68
  """
66
69
  import wandb
67
70
 
68
71
  if isinstance(value, wandb.Settings):
69
- # Depending on the wandb version, either `make_static` or `to_dict`
70
- # is available to convert the settings to a dictionary
71
- if hasattr(value, "make_static"):
72
+ # Depending on the wandb version, either `model_dump`,
73
+ # `make_static` or `to_dict` is available to convert the settings
74
+ # to a dictionary
75
+ if isinstance(value, BaseModel):
76
+ return value.model_dump()
77
+ elif hasattr(value, "make_static"):
72
78
  return cast(Dict[str, Any], value.make_static())
73
- else:
79
+ elif hasattr(value, "to_dict"):
74
80
  return value.to_dict()
81
+ else:
82
+ raise ValueError("Unable to convert wandb settings to dict.")
75
83
  else:
76
84
  return value
77
85
 
zenml/zen_server/auth.py CHANGED
@@ -413,10 +413,7 @@ def authenticate_credentials(
413
413
  logger.error(error)
414
414
  raise CredentialsNotValid(error)
415
415
 
416
- if pipeline_run_status in [
417
- ExecutionStatus.FAILED,
418
- ExecutionStatus.COMPLETED,
419
- ]:
416
+ if pipeline_run_status.is_finished:
420
417
  error = (
421
418
  f"The execution of pipeline run "
422
419
  f"{decoded_token.pipeline_run_id} has already concluded and "
@@ -461,10 +458,7 @@ def authenticate_credentials(
461
458
  logger.error(error)
462
459
  raise CredentialsNotValid(error)
463
460
 
464
- if step_run_status in [
465
- ExecutionStatus.FAILED,
466
- ExecutionStatus.COMPLETED,
467
- ]:
461
+ if step_run_status.is_finished:
468
462
  error = (
469
463
  f"The execution of step run "
470
464
  f"{decoded_token.step_run_id} has already concluded and "
@@ -1,6 +1,6 @@
1
1
  apiVersion: v2
2
2
  name: zenml
3
- version: "0.70.0"
3
+ version: "0.71.0"
4
4
  description: Open source MLOps framework for portable production ready ML pipelines
5
5
  keywords:
6
6
  - mlops
@@ -20,8 +20,8 @@ ZenML is an open-source MLOps framework designed to help you create robust, main
20
20
  To install the ZenML chart directly from Amazon ECR, use the following command:
21
21
 
22
22
  ```bash
23
- # example command for version 0.70.0
24
- helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.70.0
23
+ # example command for version 0.71.0
24
+ helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.71.0
25
25
  ```
26
26
 
27
27
  Note: Ensure you have OCI support enabled in your Helm client and that you are authenticated with Amazon ECR.
@@ -41,7 +41,6 @@ from zenml.constants import (
41
41
  from zenml.enums import (
42
42
  APITokenType,
43
43
  AuthScheme,
44
- ExecutionStatus,
45
44
  OAuthDeviceStatus,
46
45
  OAuthGrantTypes,
47
46
  )
@@ -589,10 +588,7 @@ def api_token(
589
588
  "security reasons."
590
589
  )
591
590
 
592
- if pipeline_run.status in [
593
- ExecutionStatus.FAILED,
594
- ExecutionStatus.COMPLETED,
595
- ]:
591
+ if pipeline_run.status.is_finished:
596
592
  raise ValueError(
597
593
  f"The execution of pipeline run {pipeline_run_id} has already "
598
594
  "concluded and API tokens can no longer be generated for it "
@@ -609,10 +605,7 @@ def api_token(
609
605
  "be generated for non-existent step runs for security reasons."
610
606
  )
611
607
 
612
- if step_run.status in [
613
- ExecutionStatus.FAILED,
614
- ExecutionStatus.COMPLETED,
615
- ]:
608
+ if step_run.status.is_finished:
616
609
  raise ValueError(
617
610
  f"The execution of step run {step_run_id} has already "
618
611
  "concluded and API tokens can no longer be generated for it "
@@ -0,0 +1,23 @@
1
+ """Release [0.71.0].
2
+
3
+ Revision ID: 0.71.0
4
+ Revises: cc269488e5a9
5
+ Create Date: 2024-12-04 20:44:19.316139
6
+
7
+ """
8
+
9
+ # revision identifiers, used by Alembic.
10
+ revision = "0.71.0"
11
+ down_revision = "cc269488e5a9"
12
+ branch_labels = None
13
+ depends_on = None
14
+
15
+
16
+ def upgrade() -> None:
17
+ """Upgrade database schema and/or data, creating a new revision."""
18
+ pass
19
+
20
+
21
+ def downgrade() -> None:
22
+ """Downgrade database schema and/or data back to the previous revision."""
23
+ pass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zenml-nightly
3
- Version: 0.70.0.dev20241205
3
+ Version: 0.71.0.dev20241207
4
4
  Summary: ZenML: Write production-ready ML code.
5
5
  Home-page: https://zenml.io
6
6
  License: Apache-2.0
@@ -288,7 +288,7 @@ Or, through our CLI command:
288
288
  zenml stack deploy --provider aws
289
289
  ```
290
290
 
291
- Alternatively, if the necessary pieces of infrastructure is already deployed, you can register a cloud stack seamlessly through the stack wizard:
291
+ Alternatively, if the necessary pieces of infrastructure are already deployed, you can register a cloud stack seamlessly through the stack wizard:
292
292
 
293
293
  ```bash
294
294
  zenml stack register <STACK_NAME> --provider aws
@@ -336,9 +336,9 @@ def trainer(training_df: pd.DataFrame) -> Annotated["model", torch.nn.Module]:
336
336
 
337
337
  ![Exploring ZenML Models](/docs/book/.gitbook/assets/readme_mcp.gif)
338
338
 
339
- ### Purpose built for machine learning with integration to you favorite tools
339
+ ### Purpose built for machine learning with integrations to your favorite tools
340
340
 
341
- While ZenML brings a lot of value of the box, it also integrates into your existing tooling and infrastructure without you having to be locked in.
341
+ While ZenML brings a lot of value out of the box, it also integrates into your existing tooling and infrastructure without you having to be locked in.
342
342
 
343
343
  ```python
344
344
  from bentoml._internal.bento import bento
@@ -474,7 +474,7 @@ the Apache License Version 2.0.
474
474
  <a href="https://github.com/zenml-io/zenml-projects">Projects Showcase</a>
475
475
  <br />
476
476
  <br />
477
- 🎉 Version 0.70.0 is out. Check out the release notes
477
+ 🎉 Version 0.71.0 is out. Check out the release notes
478
478
  <a href="https://github.com/zenml-io/zenml/releases">here</a>.
479
479
  <br />
480
480
  🖥️ Download our VS Code Extension <a href="https://marketplace.visualstudio.com/items?itemName=ZenML.zenml-vscode">here</a>.
@@ -1,12 +1,12 @@
1
1
  CLA.md,sha256=_ZIvAMX21mdV8bzxQLOYGIDu5vw8WSG7zQwQ_ea27XM,11654
2
2
  CODE-OF-CONDUCT.md,sha256=9zBNLt5KHB64X_qwNWaKWl7BvXkFUEluWd5heLPYQBM,5496
3
3
  CONTRIBUTING.md,sha256=bls3RAZF76sz531nvErQM9EiyeLACOluusZ8-pyH9j4,11488
4
- README.md,sha256=38jgYqkFyw1YBQbdUa0jBMZmF95u4pfAJ175cgWkR40,13883
5
- RELEASE_NOTES.md,sha256=DleauURHESDrTrcVzCVLqPiSM9NIAk5vldvEFMc7qlk,389375
4
+ README.md,sha256=Tjq3TqVfZjJmAgVqHQThOrBxMszUoEBOBzNUHOP_nPA,13890
5
+ RELEASE_NOTES.md,sha256=vXcUYeQObADBY79bTVCn6mwBs-81i5iKWIq5BCTo_Fc,397266
6
6
  ROADMAP.md,sha256=hiLSmr16BH8Dfx7SaQM4JcXCGCVl6mFZPFAwJeDTrJU,407
7
7
  SECURITY.md,sha256=9DepA8y03yvCZLHEfcXLTDH4lUyKHquAdukBsccNN7c,682
8
8
  zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
9
- zenml/VERSION,sha256=X6-u6bVGKNm0cZvxlekTecn09q73rskjLlOTI27nH6k,19
9
+ zenml/VERSION,sha256=hOWi6djPUlsgGLGSSw7c358YWZoPTuMeQPQ8q75Z9fk,19
10
10
  zenml/__init__.py,sha256=SkMObQA41ajqdZqGErN00S1Vf3KAxpLvbZ-OBy5uYoo,2130
11
11
  zenml/actions/__init__.py,sha256=mrt6wPo73iKRxK754_NqsGyJ3buW7RnVeIGXr1xEw8Y,681
12
12
  zenml/actions/base_action.py,sha256=UcaHev6BTuLDwuswnyaPjdA8AgUqB5xPZ-lRtuvf2FU,25553
@@ -556,7 +556,7 @@ zenml/integrations/wandb/__init__.py,sha256=LBlnX4chpaB3atIsxkF0RSz2AJs9gHQWRptk
556
556
  zenml/integrations/wandb/experiment_trackers/__init__.py,sha256=8nFyyvh-PTF5d9ZfjS7xFSWTWSpreRB1azePv-Ex2sc,771
557
557
  zenml/integrations/wandb/experiment_trackers/wandb_experiment_tracker.py,sha256=xNkF-3-WwpC8OV38T5evV35t6rH5o3O6uBlX4cimsKs,5092
558
558
  zenml/integrations/wandb/flavors/__init__.py,sha256=b4oJHyCdMN98XB-8S-Pnv39HA-oXQWpup6eZmCmIAEY,894
559
- zenml/integrations/wandb/flavors/wandb_experiment_tracker_flavor.py,sha256=ST5Nl85wHr5VE6wHUMGiuj4Ia8Q7aMEbFQVbQ_kmsis,4438
559
+ zenml/integrations/wandb/flavors/wandb_experiment_tracker_flavor.py,sha256=nfugO2S_IPdReH6kUg3dL3WJbQnMTUfItlG2z-8GS_s,4766
560
560
  zenml/integrations/whylogs/__init__.py,sha256=1SD1Hk65cP9DgKNgGxrnkNni7BQa3KLBmX_uOvrnyDU,2313
561
561
  zenml/integrations/whylogs/constants.py,sha256=Txs7qQjmj4vuoqC6rJvoBJ-4yv41CrapExG0_5TvEpw,752
562
562
  zenml/integrations/whylogs/data_validators/__init__.py,sha256=cLblrK_3Hckc_p8YjqJir28V9Nx_-pFPEIknjodQNQQ,820
@@ -798,7 +798,7 @@ zenml/utils/uuid_utils.py,sha256=aOGQ2SdREexcVQICPU2jUAgjvAJxTmh4ESdM52PEhck,204
798
798
  zenml/utils/visualization_utils.py,sha256=bRhgho_c8oKSBGtT4ptWj0PsXsKTKs64L3qZty3sBTM,4702
799
799
  zenml/utils/yaml_utils.py,sha256=DsbvKcJ_HYXDnNT2uSF1oKsPgP9xGpZ6G-qTFg6nQn4,5759
800
800
  zenml/zen_server/__init__.py,sha256=WyltI9TzFW2mEHZVOs6alLWMCQrrZaFALtrQXs83STA,1355
801
- zenml/zen_server/auth.py,sha256=Pt7VpfCQbFQJ3VzggIzWTlkVQv2MiOcjy03X9BIlcaQ,35067
801
+ zenml/zen_server/auth.py,sha256=MPmzFgZ_NHtAmadeWE6oF6riNHN9mmqVwuwq62ohojE,34887
802
802
  zenml/zen_server/cache.py,sha256=Tc4TSugmsU1bhThxlYfE8rv0KmltIX1CcVHgzrJ0Eus,6633
803
803
  zenml/zen_server/cloud_utils.py,sha256=Pb0tpLyVy1XkXZgZHqA9kUC5V39hikEW2YqReBtArS4,8458
804
804
  zenml/zen_server/dashboard/assets/404-Cqu3EDCm.js,sha256=8NWcDgDkY8menHwtGdwbEZnHuJi2iLbjPuCFuGytmBg,1033
@@ -995,8 +995,8 @@ zenml/zen_server/deploy/docker/docker_provider.py,sha256=18pNpxvP8xqbxS_KxvYTEIu
995
995
  zenml/zen_server/deploy/docker/docker_zen_server.py,sha256=KvnqtEcVUrIBHy2vmPNGnab9Ss8qEJ3ZxagC4MmMJ3M,7444
996
996
  zenml/zen_server/deploy/exceptions.py,sha256=tX0GNnLB_GMkeN7zGNlJRwtlrpZ5Slvyj_unVYVmGxk,1396
997
997
  zenml/zen_server/deploy/helm/.helmignore,sha256=u5h-ao70WpklXR1jKBJILV8PMlXqhBUgtNkDQt9f4rM,349
998
- zenml/zen_server/deploy/helm/Chart.yaml,sha256=1q33ZrjALQdB8w-InBShRPnL4fcKfHRo_YwktZX5H54,333
999
- zenml/zen_server/deploy/helm/README.md,sha256=x6_gW8BZXSusNp_XzafZ2i5XaYUDJl2xgZ9kvv5sXb8,1777
998
+ zenml/zen_server/deploy/helm/Chart.yaml,sha256=OKZ-VKWriX0v0RLXg15FC3BdWlb8c0GFoakr3i0xuK8,333
999
+ zenml/zen_server/deploy/helm/README.md,sha256=lbJdMO0FKAr1aBS-hymxPmsszUCxS-vy-lnr6PUGREg,1777
1000
1000
  zenml/zen_server/deploy/helm/templates/NOTES.txt,sha256=1APbGHYNf5cKDyDXkTYE3ybVBSPrYiSJh4dKCUOtH2c,1977
1001
1001
  zenml/zen_server/deploy/helm/templates/_environment.tpl,sha256=yZd8zNaWqaYjJOf19P_dfPBxyeAubGxJYt86U4LLcTA,18578
1002
1002
  zenml/zen_server/deploy/helm/templates/_helpers.tpl,sha256=SuPztyigDEA00ftUfQtDCNK25RWZB4x58BXthNLJKJA,2042
@@ -1028,7 +1028,7 @@ zenml/zen_server/routers/__init__.py,sha256=ViyAhWL-ogHxE9wBvB_iMcur5H1NRVrzXkpo
1028
1028
  zenml/zen_server/routers/actions_endpoints.py,sha256=TgFFU9fMu43iqTu-ybnxJ5QokzV-eivRAd6pW2TrFe0,9549
1029
1029
  zenml/zen_server/routers/artifact_endpoint.py,sha256=XhbOat2pddDluiT0a_QH2RfNcqlwtf3yf2Fh92a6ZDw,5175
1030
1030
  zenml/zen_server/routers/artifact_version_endpoints.py,sha256=TZpBPhNI6njJLKI-QX8wbNIn9-fFFGXKWqaVdiXFZVw,8528
1031
- zenml/zen_server/routers/auth_endpoints.py,sha256=wWJQ_QwXlRdYmqCWK15Lgw8WTFUOgYqnNdb6xnhUnlI,22500
1031
+ zenml/zen_server/routers/auth_endpoints.py,sha256=fBxV7rYZTJUXpvaJZO_XfT6MF4OzI-bMP9eYTUhcgsg,22323
1032
1032
  zenml/zen_server/routers/code_repositories_endpoints.py,sha256=WFCRPsv3Qrm8QtCr5zxfSdgCS5WI1DPNCF4Y6vLXGow,4747
1033
1033
  zenml/zen_server/routers/devices_endpoints.py,sha256=luqj7owGuQ-2LyAC6Pka7GjEVpYpfi_QDdFKXhWlXek,10712
1034
1034
  zenml/zen_server/routers/event_source_endpoints.py,sha256=dXupWrySV3LtxsqMVoYpUJ-OK7q6o6ehfuYW_RU1JlA,10379
@@ -1149,6 +1149,7 @@ zenml/zen_stores/migrations/versions/0.67.0_release.py,sha256=uUZfHxO7xQI_UABYeR
1149
1149
  zenml/zen_stores/migrations/versions/0.68.0_release.py,sha256=Dgh6xKSTQSYjuvZudBNS8csNgJyn3q0kYwZ0zFMTk2E,462
1150
1150
  zenml/zen_stores/migrations/versions/0.68.1_release.py,sha256=JIZguADVO-m5oGHxS3QjKCIcOKgs59vv-bh5MIeHwmw,450
1151
1151
  zenml/zen_stores/migrations/versions/0.70.0_release.py,sha256=t8CPYXGpEfF83qfTR63crxJnD6edzkaadAyXY9-8w4s,462
1152
+ zenml/zen_stores/migrations/versions/0.71.0_release.py,sha256=IR0uhjH9XnoLd-9af4EKj3Bfb8xHQJrxCxYULlxTn4k,462
1152
1153
  zenml/zen_stores/migrations/versions/026d4577b6a0_add_code_path.py,sha256=hXLzvQcylNrbCVD6vha52PFkSPNC2klW9kA0vuQX_cE,1091
1153
1154
  zenml/zen_stores/migrations/versions/03742aa7fdd7_add_secrets.py,sha256=gewKqu1AnzvNTjVvK1eaAwP0hVneWDUyDRSLTvRCdpg,1587
1154
1155
  zenml/zen_stores/migrations/versions/0701da9951a0_added_service_table.py,sha256=dmMUbQhcQparYdV9nfxcgcJTwlEbUWJlzMQ9d0YQyrs,3399
@@ -1287,8 +1288,8 @@ zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=Bq1djrUP9saoD7vECjS7
1287
1288
  zenml/zen_stores/sql_zen_store.py,sha256=UG37nByum6t-YmLF4KRPJFpLvVl-JMRyPYtDXO1uvE8,408356
1288
1289
  zenml/zen_stores/template_utils.py,sha256=EKYBgmDLTS_PSMWaIO5yvHPLiQvMqHcsAe6NUCrv-i4,9068
1289
1290
  zenml/zen_stores/zen_store_interface.py,sha256=vf2gKBWfUUPtcGZC35oQB6pPNVzWVyQC8nWxVLjfrxM,92692
1290
- zenml_nightly-0.70.0.dev20241205.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
1291
- zenml_nightly-0.70.0.dev20241205.dist-info/METADATA,sha256=22VogDvGCWB-wR_KLtPA319lgNav71iYXWlIp3DYTgE,21208
1292
- zenml_nightly-0.70.0.dev20241205.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
1293
- zenml_nightly-0.70.0.dev20241205.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
1294
- zenml_nightly-0.70.0.dev20241205.dist-info/RECORD,,
1291
+ zenml_nightly-0.71.0.dev20241207.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
1292
+ zenml_nightly-0.71.0.dev20241207.dist-info/METADATA,sha256=vhTsU0R2niOg_DthmZFbIMlWpAYxZZXt2xSD56QNbUc,21215
1293
+ zenml_nightly-0.71.0.dev20241207.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
1294
+ zenml_nightly-0.71.0.dev20241207.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
1295
+ zenml_nightly-0.71.0.dev20241207.dist-info/RECORD,,