From 8c6b208a438957d30ff7ea606c7d60a47bf6be6b Mon Sep 17 00:00:00 2001 From: Andrei Vishniakov <31008759+avishniakov@users.noreply.github.com> Date: Wed, 13 Nov 2024 14:48:59 +0100 Subject: [PATCH 1/2] Adding the new version to the migration tests. (#3190) --- scripts/test-migrations.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-migrations.sh b/scripts/test-migrations.sh index 364fcd1cfb..1ddbc3ef4c 100755 --- a/scripts/test-migrations.sh +++ b/scripts/test-migrations.sh @@ -23,7 +23,7 @@ else fi # List of versions to test -VERSIONS=("0.40.3" "0.43.0" "0.44.3" "0.45.6" "0.47.0" "0.50.0" "0.51.0" "0.52.0" "0.53.1" "0.54.1" "0.55.5" "0.56.4" "0.57.1" "0.60.0" "0.61.0" "0.62.0" "0.63.0" "0.64.0" "0.65.0" "0.68.0") +VERSIONS=("0.40.3" "0.43.0" "0.44.3" "0.45.6" "0.47.0" "0.50.0" "0.51.0" "0.52.0" "0.53.1" "0.54.1" "0.55.5" "0.56.4" "0.57.1" "0.60.0" "0.61.0" "0.62.0" "0.63.0" "0.64.0" "0.65.0" "0.68.0" "0.70.0") # Try to get the latest version using pip index version=$(pip index versions zenml 2>/dev/null | grep -v YANKED | head -n1 | awk '{print $2}' | tr -d '()') From 8328a4224e96558ff8ee4c11047f57a45f9882fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Can=20Durak?= <36421093+bcdurak@users.noreply.github.com> Date: Wed, 13 Nov 2024 17:41:39 +0100 Subject: [PATCH 2/2] changed the template (#3194) --- .github/pull_request_template.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index b0e6204a7c..779fe944ec 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -4,10 +4,13 @@ I implemented/fixed _ to achieve _. ## Pre-requisites Please ensure you have done the following: - [ ] I have read the **CONTRIBUTING.md** document. -- [ ] If my change requires a change to docs, I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] I have based my new branch on `develop` and the open PR is targeting `develop`. If your branch wasn't based on develop read [Contribution guide on rebasing branch to develop](https://github.com/zenml-io/zenml/blob/main/CONTRIBUTING.md#-pull-requests-rebase-your-branch-on-develop). -- [ ] If my changes require changes to the dashboard, these changes are communicated/requested. +- [ ] **IMPORTANT**: I made sure that my changes are reflected properly in the following resources: + - [ ] [ZenML Docs](https://docs.zenml.io) + - [ ] Dashboard: Needs to be communicated to the frontend team. + - [ ] Templates: Might need adjustments (that are not reflected in the template tests) in case of non-breaking changes and deprecations. + - [ ] [Projects](https://github.com/zenml-io/zenml-projects): Depending on the version dependencies, different projects might get affected. ## Types of changes