From b24523a384f14f649dff376be9c066185fad43ba Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Fri, 29 Nov 2024 14:16:35 +0000 Subject: [PATCH 1/2] Release 0.3.0 --- CHANGELOG.rst | 44 +++++++++++++++++++++++++++++++++++++++- ray_provider/__init__.py | 2 +- 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e88b890..551593e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,10 +2,12 @@ CHANGELOG ========= 0.3.0 (2024-11-29) ------------------- +--------------------- **Breaking changes** +* Simplify the project structure and debugging by @tatiana in #93 + In order to improve the development and troubleshooting DAGs created with this provider, we introduced breaking changes to the folder structure. It was flattened and the import paths to existing decorators, hooks, operators and trigger changed, as documented in the table below: @@ -21,6 +23,46 @@ changed, as documented in the table below: | Trigger | ray_provider.triggers.ray.RayJobTrigger | ray_provider.triggers.RayJobTrigger | +-----------+---------------------------------------------+-----------------------------------------+ +* Removal of ``SubmitRayJob.terminal_states``. The same values are now available at ``ray_provider.constants.TERMINAL_JOB_STATUSES``. + + +**Features** + +* Support using callable ``config`` in ``@ray.task`` by @tatiana in #103 +* Support running Ray jobs indefinitely without timing out by @venkatajagannath and @tatiana in #74 + +**Bug fixes** + +* Fix integration test and bug in load balancer wait logic by @pankajastro in #85 +* Bugfix: Better exception handling and cluster clean up by @venkatajagannath in #68 +* Stop catching generic ``Exception`` in operators by @tatiana in #100 +* Stop catching generic ``Exception`` in trigger by @tatiana in #99 + +**Docs** + +* Add docs to deploy project on Astro Cloud by @pankajastro in #90 +* Fix dead reference in docs index page by @pankajastro in #87 +* Cloud Auth documentation update by @venkatajagannath in #58 +* Improve main docs page by @TJaniF in #71 + +**Others** + +Local development + +* Fix the local development environment and update documentation by @tatiana in #92 +* Enable secret detection precommit check by @pankajastro in #91 +* Add astro cli project + kind Raycluster setup instruction by @pankajastro in #83 +* Remove pytest durations from tests by @tatiana in #102 +* Fix running make docker-run when there is a new version by @tatiana in #99 and #101 +* Improve Astro CLI DAGs test so running hatch test-cov locally doesn't fail by @tatiana in #97 + +CI + +* CI improvement by @venkatajagannath in #73 +* CI fix related to broken coverage upload artifact by @pankajkoti in #60 +* Allow tests to run for PRs from forked repos by @venkatajagannath in #72 +* Update CODEOWNERS by @tatiana in #84 +* Add Airflow 2.10 (released in August 2024) to tests by @tatiana in #96 0.2.1 (2024-09-04) diff --git a/ray_provider/__init__.py b/ray_provider/__init__.py index 04fb8c2..a5541bb 100644 --- a/ray_provider/__init__.py +++ b/ray_provider/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.2.1" +__version__ = "0.3.0" from typing import Any From 18974b41a6d2a1791774f8cf09e1f6da320148b4 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Fri, 29 Nov 2024 15:13:54 +0000 Subject: [PATCH 2/2] Replace PR string identifiers by hyperlinks --- CHANGELOG.rst | 47 +++++++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 551593e..cd66c54 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,7 @@ CHANGELOG **Breaking changes** -* Simplify the project structure and debugging by @tatiana in #93 +* Simplify the project structure and debugging by @tatiana in `#93 `_. In order to improve the development and troubleshooting DAGs created with this provider, we introduced breaking changes to the folder structure. It was flattened and the import paths to existing decorators, hooks, operators and trigger @@ -23,46 +23,45 @@ changed, as documented in the table below: | Trigger | ray_provider.triggers.ray.RayJobTrigger | ray_provider.triggers.RayJobTrigger | +-----------+---------------------------------------------+-----------------------------------------+ -* Removal of ``SubmitRayJob.terminal_states``. The same values are now available at ``ray_provider.constants.TERMINAL_JOB_STATUSES``. - +* Removal of ``SubmitRayJob.terminal_states``. The same values are now available at ``ray_provider.constants.TERMINAL_JOB_STATUSES``. This change introduced in `#100 `_. **Features** -* Support using callable ``config`` in ``@ray.task`` by @tatiana in #103 -* Support running Ray jobs indefinitely without timing out by @venkatajagannath and @tatiana in #74 +* Support using callable ``config`` in ``@ray.task`` by @tatiana in `#103 `_. +* Support running Ray jobs indefinitely without timing out by @venkatajagannath and @tatiana in `#74 `_. **Bug fixes** -* Fix integration test and bug in load balancer wait logic by @pankajastro in #85 -* Bugfix: Better exception handling and cluster clean up by @venkatajagannath in #68 -* Stop catching generic ``Exception`` in operators by @tatiana in #100 -* Stop catching generic ``Exception`` in trigger by @tatiana in #99 +* Fix integration test and bug in load balancer wait logic by @pankajastro in `#85 `_ +* Bugfix: Better exception handling and cluster clean up by @venkatajagannath in `#68 `_ +* Stop catching generic ``Exception`` in operators by @tatiana in `#100 `_ +* Stop catching generic ``Exception`` in trigger by @tatiana in `#99 `_ **Docs** -* Add docs to deploy project on Astro Cloud by @pankajastro in #90 -* Fix dead reference in docs index page by @pankajastro in #87 -* Cloud Auth documentation update by @venkatajagannath in #58 -* Improve main docs page by @TJaniF in #71 +* Add docs to deploy project on Astro Cloud by @pankajastro in `#90 `_ +* Fix dead reference in docs index page by @pankajastro in `#87 `_ +* Cloud Auth documentation update by @venkatajagannath in `#58 `_ +* Improve main docs page by @TJaniF in `#71 `_ **Others** Local development -* Fix the local development environment and update documentation by @tatiana in #92 -* Enable secret detection precommit check by @pankajastro in #91 -* Add astro cli project + kind Raycluster setup instruction by @pankajastro in #83 -* Remove pytest durations from tests by @tatiana in #102 -* Fix running make docker-run when there is a new version by @tatiana in #99 and #101 -* Improve Astro CLI DAGs test so running hatch test-cov locally doesn't fail by @tatiana in #97 +* Fix the local development environment and update documentation by @tatiana in `#92 `_ +* Enable secret detection precommit check by @pankajastro in `#91 `_ +* Add astro cli project + kind Raycluster setup instruction by @pankajastro in `#83 `_ +* Remove pytest durations from tests by @tatiana in `#102 `_ +* Fix running make docker-run when there is a new version by @tatiana in #99 and `#101 `_ +* Improve Astro CLI DAGs test so running hatch test-cov locally doesn't fail by @tatiana in `#97 `_ CI -* CI improvement by @venkatajagannath in #73 -* CI fix related to broken coverage upload artifact by @pankajkoti in #60 -* Allow tests to run for PRs from forked repos by @venkatajagannath in #72 -* Update CODEOWNERS by @tatiana in #84 -* Add Airflow 2.10 (released in August 2024) to tests by @tatiana in #96 +* CI improvement by @venkatajagannath in `#73 `_ +* CI fix related to broken coverage upload artifact by @pankajkoti in `#60 `_ +* Allow tests to run for PRs from forked repos by @venkatajagannath in `#72 `_ +* Update CODEOWNERS by @tatiana in `#84 `_ +* Add Airflow 2.10 (released in August 2024) to tests by @tatiana in `#96 `_ 0.2.1 (2024-09-04)