Skip to content

Commit e18d7fc

Browse files
github-actions[bot]Zen-MLbcdurakschustmi
authored
Prepare release 0.75.0 (#3383)
* Adding the new version to the necessary files. * adding release notes * Update RELEASE_NOTES.md Co-authored-by: Michael Schuster <[email protected]> --------- Co-authored-by: ZenML GmbH <[email protected]> Co-authored-by: Baris Can Durak <[email protected]> Co-authored-by: Barış Can Durak <[email protected]> Co-authored-by: Michael Schuster <[email protected]>
1 parent a20e8a7 commit e18d7fc

File tree

15 files changed

+106
-16
lines changed

15 files changed

+106
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ the Apache License Version 2.0.
386386
<a href="https://github.com/zenml-io/zenml-projects">Projects Showcase</a>
387387
<br />
388388
<br />
389-
🎉 Version 0.74.0 is out. Check out the release notes
389+
🎉 Version 0.75.0 is out. Check out the release notes
390390
<a href="https://github.com/zenml-io/zenml/releases">here</a>.
391391
<br />
392392
🖥️ Download our VS Code Extension <a href="https://marketplace.visualstudio.com/items?itemName=ZenML.zenml-vscode">here</a>.

RELEASE_NOTES.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,72 @@
11
<!-- markdown-link-check-disable -->
22

3+
# 0.75.0
4+
5+
The `0.75.0` release introduces dashboard enhancements for stack component
6+
management along with improvements to documentation and service connector
7+
capabilities. Users can now create and update stack components directly
8+
from the dashboard.
9+
10+
## Features
11+
12+
- Create and update stack components directly from the dashboard
13+
- Custom authentication method support during auto-configuration of service connectors
14+
- Enhanced model artifact retrieval by creation date instead of version name
15+
- Additional SageMaker environment settings
16+
17+
## Improvements
18+
19+
- Expanded fastapi dependency range for better compatibility
20+
- Improved pipeline source root documentation and logging
21+
- Better sorting functionality when using custom fetching
22+
23+
## Fixes
24+
25+
- Fixed registration of components with custom flavors
26+
- Fixed sorting logic when using custom fetching criteria
27+
- Prevented inner fsspec logs from being flushed to the artifact store
28+
29+
## Documentation
30+
31+
- Added LLM messaging and video resources to documentation
32+
- Improved formatting for model deployers documentation
33+
- Fixed GCP service connector docs
34+
- Added SDK documentation links
35+
- Enhanced README with LLM messaging
36+
37+
## What's Changed
38+
39+
* Adding `0.74.0` to the migration tests by @bcdurak in https://github.com/zenml-io/zenml/pull/3351
40+
* Fixing the release preparation workflow by @bcdurak in https://github.com/zenml-io/zenml/pull/3348
41+
* Expand `fastapi` dependency range by @strickvl in https://github.com/zenml-io/zenml/pull/3340
42+
* Document the programmatic API access options by @stefannica in https://github.com/zenml-io/zenml/pull/3352
43+
* Fix some docs links by @schustmi in https://github.com/zenml-io/zenml/pull/3353
44+
* [docs] Rename llms.txt file, add header and docs by @wjayesh in https://github.com/zenml-io/zenml/pull/3346
45+
* Add `llms.txt` YouTube video to docs by @strickvl in https://github.com/zenml-io/zenml/pull/3354
46+
* Fix model deployers docs formatting by @strickvl in https://github.com/zenml-io/zenml/pull/3356
47+
* Get the latest artifact of a model by creation date instead of version name by @pierre-godard in https://github.com/zenml-io/zenml/pull/3343
48+
* Improve source root docs/logs when running a pipeline by @schustmi in https://github.com/zenml-io/zenml/pull/3357
49+
* Fix registration of components with custom flavors by @schustmi in https://github.com/zenml-io/zenml/pull/3363
50+
* Fix GCP service connector docs by @stefannica in https://github.com/zenml-io/zenml/pull/3365
51+
* Allow auth method to be customized during auto-configuration of service connectors by @stefannica in https://github.com/zenml-io/zenml/pull/3367
52+
* Add some sdkdocs links by @htahir1 in https://github.com/zenml-io/zenml/pull/3358
53+
* doc: fix link by @tanguyantoine in https://github.com/zenml-io/zenml/pull/3369
54+
* Fix sorting when using custom fetching by @schustmi in https://github.com/zenml-io/zenml/pull/3366
55+
* Add sagemaker env settings by @stefannica in https://github.com/zenml-io/zenml/pull/3368
56+
* Update README with LLM messaging and llms.txt by @wjayesh in https://github.com/zenml-io/zenml/pull/3362
57+
* CI Linting fix by @bcdurak in https://github.com/zenml-io/zenml/pull/3377
58+
* Don't flush inner fsspec logs to the artifact store by @stefannica in https://github.com/zenml-io/zenml/pull/3373
59+
* Bugfix for Sagemaker env variables by @bcdurak in https://github.com/zenml-io/zenml/pull/3380
60+
* Correct isintance check for sagemaker env variables by @bcdurak in https://github.com/zenml-io/zenml/pull/3382
61+
62+
## New Contributors
63+
64+
* @pierre-godard made their first contribution in https://github.com/zenml-io/zenml/pull/3343
65+
* @tanguyantoine made their first contribution in https://github.com/zenml-io/zenml/pull/3369
66+
67+
**Full Changelog**: https://github.com/zenml-io/zenml/compare/0.74.0...0.75.0
68+
69+
370
# 0.74.0
471

572
The `0.74.0` release introduces several major features including [SageMaker

examples/quickstart/configs/training_aws.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Environment configuration
22
settings:
33
docker:
4-
parent_image: "715803424590.dkr.ecr.eu-central-1.amazonaws.com/zenml-public-pipelines:quickstart-0.74.0-py3.11-aws"
4+
parent_image: "715803424590.dkr.ecr.eu-central-1.amazonaws.com/zenml-public-pipelines:quickstart-0.75.0-py3.11-aws"
55
skip_build: True # If you switch this to False remove the parent_image
66
requirements: requirements.txt
77
environment:

examples/quickstart/configs/training_azure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Environment configuration
22
settings:
33
docker:
4-
parent_image: "zenmldocker/zenml-public-pipelines:quickstart-0.74.0-py3.11-azure"
4+
parent_image: "zenmldocker/zenml-public-pipelines:quickstart-0.75.0-py3.11-azure"
55
skip_build: True
66
requirements: requirements.txt
77
environment:

examples/quickstart/configs/training_gcp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Environment configuration
22
settings:
33
docker:
4-
parent_image: "zenmldocker/zenml-public-pipelines:quickstart-0.74.0-py3.11-gcp"
4+
parent_image: "zenmldocker/zenml-public-pipelines:quickstart-0.75.0-py3.11-gcp"
55
skip_build: True
66
requirements: requirements.txt
77
environment:

examples/quickstart/quickstart.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@
499499
"# Common imports and setup\n",
500500
"if CLOUD_PROVIDER.lower() == \"gcp\":\n",
501501
" parent_image = (\n",
502-
" \"zenmldocker/zenml-public-pipelines:quickstart-0.74.0-py3.11-gcp\"\n",
502+
" \"zenmldocker/zenml-public-pipelines:quickstart-0.75.0-py3.11-gcp\"\n",
503503
" )\n",
504504
" skip_build = True\n",
505505
"\n",
@@ -508,7 +508,7 @@
508508
" SagemakerOrchestratorSettings,\n",
509509
" )\n",
510510
"\n",
511-
" parent_image = \"339712793861.dkr.ecr.eu-central-1.amazonaws.com/zenml-public-pipelines:quickstart-0.74.0-py3.11-aws\"\n",
511+
" parent_image = \"339712793861.dkr.ecr.eu-central-1.amazonaws.com/zenml-public-pipelines:quickstart-0.75.0-py3.11-aws\"\n",
512512
" skip_build = True # if you switch this to False, you need to remove the parent image\n",
513513
"\n",
514514
" settings[\"orchestrator.sagemaker\"] = SagemakerOrchestratorSettings(\n",
@@ -517,7 +517,7 @@
517517
"\n",
518518
"elif CLOUD_PROVIDER.lower() == \"azure\":\n",
519519
" parent_image = (\n",
520-
" \"zenmldocker/zenml-public-pipelines:quickstart-0.74.0-py3.11-azure\"\n",
520+
" \"zenmldocker/zenml-public-pipelines:quickstart-0.75.0-py3.11-azure\"\n",
521521
" )\n",
522522
" skip_build = True\n",
523523
"\n",

examples/quickstart/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zenml[server]==0.74.0
1+
zenml[server]==0.75.0
22
notebook
33
pyarrow
44
datasets

examples/quickstart/requirements_aws.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zenml[server]==0.74.0
1+
zenml[server]==0.75.0
22
notebook
33
pyarrow
44
datasets

examples/quickstart/requirements_azure.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zenml[server]==0.74.0
1+
zenml[server]==0.75.0
22
notebook
33
pyarrow
44
datasets

examples/quickstart/requirements_gcp.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zenml[server]==0.74.0
1+
zenml[server]==0.75.0
22
notebook
33
pyarrow
44
datasets

0 commit comments

Comments
 (0)