From a04b529aab72fd16952d67c74f9ce612233585b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:43:43 +0000 Subject: [PATCH 1/2] Prepare release 8.3.3 Workflow: Release stage 1 - create release PR (Cylc 8+ only), run: 42 --- CHANGES.md | 12 ++++++++++++ changes.d/6213.fix.md | 1 - changes.d/6241.fix.md | 1 - changes.d/6242.fix.md | 1 - changes.d/6249.fix.md | 1 - cylc/flow/__init__.py | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 changes.d/6213.fix.md delete mode 100644 changes.d/6241.fix.md delete mode 100644 changes.d/6242.fix.md delete mode 100644 changes.d/6249.fix.md diff --git a/CHANGES.md b/CHANGES.md index 061d935a010..4a55a3a1e1d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,18 @@ $ towncrier create ..md --content "Short description" +## __cylc-8.3.3 (Released 2024-07-23)__ + +### 🔧 Fixes + +[#6213](https://github.com/cylc/cylc-flow/pull/6213) - Fix bug where the `-S`, `-O` and `-D` options in `cylc vr` would not be applied correctly when restarting a workflow. + +[#6241](https://github.com/cylc/cylc-flow/pull/6241) - Allow flow-merge when triggering n=0 tasks. + +[#6242](https://github.com/cylc/cylc-flow/pull/6242) - Put `share/bin` in the `PATH` of scheduler environment, event handlers therein will now be found. + +[#6249](https://github.com/cylc/cylc-flow/pull/6249) - Fix a race condition between global config reload and debug logging that caused "platform not defined" errors when running workflows that contained a "rose-suite.conf" file in verbose or debug mode. + ## __cylc-8.3.2 (Released 2024-07-10)__ ### 🔧 Fixes diff --git a/changes.d/6213.fix.md b/changes.d/6213.fix.md deleted file mode 100644 index 8765a262023..00000000000 --- a/changes.d/6213.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix bug where the `-S`, `-O` and `-D` options in `cylc vr` would not be applied correctly when restarting a workflow. diff --git a/changes.d/6241.fix.md b/changes.d/6241.fix.md deleted file mode 100644 index 13bd11925dd..00000000000 --- a/changes.d/6241.fix.md +++ /dev/null @@ -1 +0,0 @@ -Allow flow-merge when triggering n=0 tasks. diff --git a/changes.d/6242.fix.md b/changes.d/6242.fix.md deleted file mode 100644 index 87edde1efab..00000000000 --- a/changes.d/6242.fix.md +++ /dev/null @@ -1 +0,0 @@ -Put `share/bin` in the `PATH` of scheduler environment, event handlers therein will now be found. \ No newline at end of file diff --git a/changes.d/6249.fix.md b/changes.d/6249.fix.md deleted file mode 100644 index a20b65b9008..00000000000 --- a/changes.d/6249.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a race condition between global config reload and debug logging that caused "platform not defined" errors when running workflows that contained a "rose-suite.conf" file in verbose or debug mode. diff --git a/cylc/flow/__init__.py b/cylc/flow/__init__.py index 5112d295c05..eaa6d468b9d 100644 --- a/cylc/flow/__init__.py +++ b/cylc/flow/__init__.py @@ -53,7 +53,7 @@ def environ_init(): environ_init() -__version__ = '8.3.3.dev' +__version__ = '8.3.3' def iter_entry_points(entry_point_name): From e7888c9603c7afdc230cffc603e83f857a2f3f16 Mon Sep 17 00:00:00 2001 From: Ronnie Dutta <61982285+MetRonnie@users.noreply.github.com> Date: Tue, 23 Jul 2024 17:12:56 +0100 Subject: [PATCH 2/2] Fix changelog --- 6103.fix.md | 2 -- CHANGES.md | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 6103.fix.md diff --git a/6103.fix.md b/6103.fix.md deleted file mode 100644 index 47844cd1ea6..00000000000 --- a/6103.fix.md +++ /dev/null @@ -1,2 +0,0 @@ -Absolute dependencies (dependencies on tasks in a specified cycle rather than at a specified offset) are now visible in the GUI beyond the specified cycle. - diff --git a/CHANGES.md b/CHANGES.md index 4a55a3a1e1d..0c33e6ce915 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -15,13 +15,15 @@ $ towncrier create ..md --content "Short description" ### 🔧 Fixes +[#6103](https://github.com/cylc/cylc-flow/pull/6103) - Absolute dependencies (dependencies on tasks in a specified cycle rather than at a specified offset) are now visible in the GUI beyond the specified cycle. + [#6213](https://github.com/cylc/cylc-flow/pull/6213) - Fix bug where the `-S`, `-O` and `-D` options in `cylc vr` would not be applied correctly when restarting a workflow. [#6241](https://github.com/cylc/cylc-flow/pull/6241) - Allow flow-merge when triggering n=0 tasks. [#6242](https://github.com/cylc/cylc-flow/pull/6242) - Put `share/bin` in the `PATH` of scheduler environment, event handlers therein will now be found. -[#6249](https://github.com/cylc/cylc-flow/pull/6249) - Fix a race condition between global config reload and debug logging that caused "platform not defined" errors when running workflows that contained a "rose-suite.conf" file in verbose or debug mode. +[#6249](https://github.com/cylc/cylc-flow/pull/6249), [#6252](https://github.com/cylc/cylc-flow/pull/6252) - Fix a race condition between global config reload and debug logging that caused "platform not defined" errors when running workflows that contained a "rose-suite.conf" file in verbose or debug mode. ## __cylc-8.3.2 (Released 2024-07-10)__