From 361e507b643e40d61c43d327a38771e1e1de2d67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 10:46:56 +0000 Subject: [PATCH] Prepare release 8.2.2 Workflow: Release stage 1 - create release PR (Cylc 8+ only), run: 28 --- CHANGES.md | 22 ++++++++++++++++++++++ changes.d/5237.feat.md | 2 -- changes.d/5693.fix.md | 1 - changes.d/5694.fix.md | 3 --- changes.d/5704.fix.md | 1 - changes.d/5708.fix.md | 1 - changes.d/5755.fix.md | 1 - cylc/flow/__init__.py | 2 +- 8 files changed, 23 insertions(+), 10 deletions(-) delete mode 100644 changes.d/5237.feat.md delete mode 100644 changes.d/5693.fix.md delete mode 100644 changes.d/5694.fix.md delete mode 100644 changes.d/5704.fix.md delete mode 100644 changes.d/5708.fix.md delete mode 100644 changes.d/5755.fix.md diff --git a/CHANGES.md b/CHANGES.md index 2893d851c32..9a5af5524fe 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,28 @@ $ towncrier create ..md --content "Short description" +## __cylc-8.2.2 (Released 2023-10-05)__ + +### 🚀 Enhancements + +[#5237](https://github.com/cylc/cylc-flow/pull/5237) - Back-compat: allow workflow-state xtriggers (and the `cylc workflow-state` + command) to read Cylc 7 databases. + +### 🔧 Fixes + +[#5693](https://github.com/cylc/cylc-flow/pull/5693) - Log command issuer, if not the workflow owner, for all commands. + +[#5694](https://github.com/cylc/cylc-flow/pull/5694) - Don't fail config file parsing if current working directory does not exist. + (Note however this may not be enough to prevent file parsing commands failing + elsewhere in the Python library). + +[#5704](https://github.com/cylc/cylc-flow/pull/5704) - Fix off-by-one error in automatic upgrade of Cylc 7 "max active cycle points" to Cylc 8 "runahead limit". + +[#5708](https://github.com/cylc/cylc-flow/pull/5708) - Fix runahead limit at start-up, with recurrences that start beyond the limit. + +[#5755](https://github.com/cylc/cylc-flow/pull/5755) - Fixes an issue where submit-failed tasks could be incorrectly considered as completed rather than causing the workflow to stall. + + ## __cylc-8.2.1 (Released 2023-08-14)__ ### 🔧 Fixes diff --git a/changes.d/5237.feat.md b/changes.d/5237.feat.md deleted file mode 100644 index a236108d0e9..00000000000 --- a/changes.d/5237.feat.md +++ /dev/null @@ -1,2 +0,0 @@ -Back-compat: allow workflow-state xtriggers (and the `cylc workflow-state` -command) to read Cylc 7 databases. diff --git a/changes.d/5693.fix.md b/changes.d/5693.fix.md deleted file mode 100644 index 52019b77c36..00000000000 --- a/changes.d/5693.fix.md +++ /dev/null @@ -1 +0,0 @@ -Log command issuer, if not the workflow owner, for all commands. diff --git a/changes.d/5694.fix.md b/changes.d/5694.fix.md deleted file mode 100644 index f8fa04eaa9c..00000000000 --- a/changes.d/5694.fix.md +++ /dev/null @@ -1,3 +0,0 @@ -Don't fail config file parsing if current working directory does not exist. -(Note however this may not be enough to prevent file parsing commands failing -elsewhere in the Python library). diff --git a/changes.d/5704.fix.md b/changes.d/5704.fix.md deleted file mode 100644 index 42315c63421..00000000000 --- a/changes.d/5704.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix off-by-one error in automatic upgrade of Cylc 7 "max active cycle points" to Cylc 8 "runahead limit". \ No newline at end of file diff --git a/changes.d/5708.fix.md b/changes.d/5708.fix.md deleted file mode 100644 index a20bdeeccb3..00000000000 --- a/changes.d/5708.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix runahead limit at start-up, with recurrences that start beyond the limit. diff --git a/changes.d/5755.fix.md b/changes.d/5755.fix.md deleted file mode 100644 index e1f645d0c03..00000000000 --- a/changes.d/5755.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixes an issue where submit-failed tasks could be incorrectly considered as completed rather than causing the workflow to stall. diff --git a/cylc/flow/__init__.py b/cylc/flow/__init__.py index c7cffa9b363..436f0179f44 100644 --- a/cylc/flow/__init__.py +++ b/cylc/flow/__init__.py @@ -53,7 +53,7 @@ def environ_init(): environ_init() -__version__ = '8.2.2.dev' +__version__ = '8.2.2' def iter_entry_points(entry_point_name):