From f172396dd2a2f76544c7e49a6744fd1d06c6fe9e Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Wed, 18 Sep 2024 20:02:15 +0200 Subject: [PATCH 1/3] release notes for v0.6.0 --- RELEASE_NOTES | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 20080acf..f203c1ed 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,6 +1,37 @@ This file contains a description of the major changes to the EESSI build-and-deploy bot. For more detailed information, please see the git log. +v0.6.0 (18 September 2024) +-------------------------- + +This is a minor release of the EESSI build-and-deploy bot. + +Bug fixes: +* mark 'with_accelerator' setting as required (#282) + +Improvements: +* move merged PR job directories to 'trash_bin_dir' (#271) + * the target directory can be defined with the 'app.cfg' setting 'trash_bin_dir' + * it uses 'shutil.move' which tries to use 'mv' if source and target are on the + same filesystem +* add setting to give all jobs a unique name (#273) +* move closed PR job directories to 'trash_bin_dir' (#275) +* add filter for accelerators (#276) +* add support for updating Slurm options through user-defined python module in + target PR (#277) +* use GitHub API for downloading the diff of a PR (#278) +* add documentation about private repos (#279) +* pass accelerator value to job scripts (via job.cfg) and extend PR comment if + the 'accelerator' argument is used (#280) + +New 'app.cfg' settings (see README.md and app.cfg.example for details): +* (optional) 'allow_update_submit_opts' +* (required) 'job_name' +* (required) 'moved_job_dirs_comment' +* (required) 'trash_bin_dir' +* (required) 'with_accelerator' + + v0.5.0 (16 May 2024) -------------------------- From 5cdc4baa9a21ac859dc9aac638a45b403a2bda7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20R=C3=B6blitz?= Date: Wed, 18 Sep 2024 20:16:13 +0200 Subject: [PATCH 2/3] merge info on 280 and 282 Co-authored-by: Kenneth Hoste --- RELEASE_NOTES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index f203c1ed..84ca89e8 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -22,7 +22,7 @@ Improvements: * use GitHub API for downloading the diff of a PR (#278) * add documentation about private repos (#279) * pass accelerator value to job scripts (via job.cfg) and extend PR comment if - the 'accelerator' argument is used (#280) + the 'accelerator' argument is used (#280, #282) New 'app.cfg' settings (see README.md and app.cfg.example for details): * (optional) 'allow_update_submit_opts' From a22c4340bd5f6ee6e9984d6fa2bf785c385d546c Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Wed, 18 Sep 2024 20:26:03 +0200 Subject: [PATCH 3/3] update release notes --- RELEASE_NOTES | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index f203c1ed..dd5378e1 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -6,9 +6,6 @@ v0.6.0 (18 September 2024) This is a minor release of the EESSI build-and-deploy bot. -Bug fixes: -* mark 'with_accelerator' setting as required (#282) - Improvements: * move merged PR job directories to 'trash_bin_dir' (#271) * the target directory can be defined with the 'app.cfg' setting 'trash_bin_dir' @@ -22,14 +19,14 @@ Improvements: * use GitHub API for downloading the diff of a PR (#278) * add documentation about private repos (#279) * pass accelerator value to job scripts (via job.cfg) and extend PR comment if - the 'accelerator' argument is used (#280) + the 'accelerator' argument is used (#280, #282) New 'app.cfg' settings (see README.md and app.cfg.example for details): -* (optional) 'allow_update_submit_opts' -* (required) 'job_name' -* (required) 'moved_job_dirs_comment' -* (required) 'trash_bin_dir' -* (required) 'with_accelerator' +* (optional) 'allow_update_submit_opts' in section '[buildenv]' +* (required) 'job_name' in section '[buildenv]' +* (required) 'moved_job_dirs_comment' in section '[clean_up]' +* (required) 'trash_bin_dir' in section '[clean_up]' +* (required) 'with_accelerator' in section '[submitted_job_comments]' v0.5.0 (16 May 2024)