diff --git a/CHANGES.md b/CHANGES.md index 4e43277f95a..1dd641991c0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,34 @@ $ towncrier create ..md --content "Short description" +## __cylc-8.3.6 (Released 2024-11-07)__ + +### 🔧 Fixes + +[#4983](https://github.com/cylc/cylc-flow/pull/4983) - Ensure the runahead limit is recomputed when legacy "suicide-triggers" are used, to prevent erroneous stall in niche cases. + +[#6263](https://github.com/cylc/cylc-flow/pull/6263) - Fix bug that prevented changes to user-defined xtriggers taking effect after a reload. + +[#6326](https://github.com/cylc/cylc-flow/pull/6326) - Fix a rare issue where missing job records could cause tasks to become stuck in active states. + +[#6364](https://github.com/cylc/cylc-flow/pull/6364) - Fixed bug where `cylc clean --rm share` would not take care of removing the target of the `share/cycle` symlink directory. + +[#6376](https://github.com/cylc/cylc-flow/pull/6376) - Fixes an issue that could cause Cylc to ignore the remaining hosts in a platform in response to an `ssh` error in some niche circumstances. + +[#6388](https://github.com/cylc/cylc-flow/pull/6388) - Fix task state filtering in Tui. + +[#6414](https://github.com/cylc/cylc-flow/pull/6414) - Broadcast will now reject truncated cycle points to aviod runtime errors. + +[#6422](https://github.com/cylc/cylc-flow/pull/6422) - Enabled jumping to the top/bottom of log files in Tui using the "home" and "end" keys. + +[#6431](https://github.com/cylc/cylc-flow/pull/6431) - The `cycle point format` was imposing an undesirable constraint on `wall_clock` offsets, this has been fixed. + +[#6433](https://github.com/cylc/cylc-flow/pull/6433) - Ignore requests to trigger or set active tasks with --flow=none. + +[#6445](https://github.com/cylc/cylc-flow/pull/6445) - Ensure `cylc trigger` does not fall back to `flow=none` when there are no active flows. + +[#6448](https://github.com/cylc/cylc-flow/pull/6448) - Fix the non-spawning of parentless sequential xtriggered tasks when outputs are set. + ## __cylc-8.3.5 (Released 2024-10-15)__ ### 🔧 Fixes diff --git a/changes.d/4983.fix.md b/changes.d/4983.fix.md deleted file mode 100644 index be0bec9ed1c..00000000000 --- a/changes.d/4983.fix.md +++ /dev/null @@ -1 +0,0 @@ -Ensure the runahead limit is recomputed when legacy "suicide-triggers" are used, to prevent erroneous stall in niche cases. diff --git a/changes.d/6263.fix.md b/changes.d/6263.fix.md deleted file mode 100644 index 86a6c01efe5..00000000000 --- a/changes.d/6263.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix bug that prevented changes to user-defined xtriggers taking effect after a reload. diff --git a/changes.d/6326.fix.md b/changes.d/6326.fix.md deleted file mode 100644 index 2b4d19a67ec..00000000000 --- a/changes.d/6326.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix a rare issue where missing job records could cause tasks to become stuck in active states. diff --git a/changes.d/6364.fix.md b/changes.d/6364.fix.md deleted file mode 100644 index 9ff613e2c18..00000000000 --- a/changes.d/6364.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed bug where `cylc clean --rm share` would not take care of removing the target of the `share/cycle` symlink directory. diff --git a/changes.d/6376.fix.md b/changes.d/6376.fix.md deleted file mode 100644 index 686f7eef945..00000000000 --- a/changes.d/6376.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixes an issue that could cause Cylc to ignore the remaining hosts in a platform in response to an `ssh` error in some niche circumstances. diff --git a/changes.d/6388.fix.md b/changes.d/6388.fix.md deleted file mode 100644 index 7fc3c8b7348..00000000000 --- a/changes.d/6388.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix task state filtering in Tui. diff --git a/changes.d/6414.fix.md b/changes.d/6414.fix.md deleted file mode 100644 index cecc178dd07..00000000000 --- a/changes.d/6414.fix.md +++ /dev/null @@ -1 +0,0 @@ -Broadcast will now reject truncated cycle points to aviod runtime errors. diff --git a/changes.d/6422.fix.md b/changes.d/6422.fix.md deleted file mode 100644 index f1af86d2107..00000000000 --- a/changes.d/6422.fix.md +++ /dev/null @@ -1 +0,0 @@ -Enabled jumping to the top/bottom of log files in Tui using the "home" and "end" keys. diff --git a/changes.d/6431.fix.md b/changes.d/6431.fix.md deleted file mode 100644 index 900bfee61d7..00000000000 --- a/changes.d/6431.fix.md +++ /dev/null @@ -1 +0,0 @@ -The `cycle point format` was imposing an undesirable constraint on `wall_clock` offsets, this has been fixed. diff --git a/changes.d/6433.fix.md b/changes.d/6433.fix.md deleted file mode 100644 index 92531f0d89a..00000000000 --- a/changes.d/6433.fix.md +++ /dev/null @@ -1 +0,0 @@ -Ignore requests to trigger or set active tasks with --flow=none. diff --git a/changes.d/6445.fix.md b/changes.d/6445.fix.md deleted file mode 100644 index fd51bbb789d..00000000000 --- a/changes.d/6445.fix.md +++ /dev/null @@ -1 +0,0 @@ -Ensure `cylc trigger` does not fall back to `flow=none` when there are no active flows. diff --git a/changes.d/6448.fix.md b/changes.d/6448.fix.md deleted file mode 100644 index 56a0a44f3ca..00000000000 --- a/changes.d/6448.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix the non-spawning of parentless sequential xtriggered tasks when outputs are set. diff --git a/cylc/flow/__init__.py b/cylc/flow/__init__.py index ec2562ddaee..2bba553382b 100644 --- a/cylc/flow/__init__.py +++ b/cylc/flow/__init__.py @@ -53,7 +53,7 @@ def environ_init(): environ_init() -__version__ = '8.3.6.dev' +__version__ = '8.3.6' def iter_entry_points(entry_point_name):