diff --git a/CHANGES.md b/CHANGES.md index 6f30ef93e..7765e97c1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,6 +12,28 @@ $ towncrier create ..md --content "Short description" +## cylc-ui-2.7.0 (Released 2025-01-08) + +### 🚀 Enhancements + +[#1886](https://github.com/cylc/cylc-ui/pull/1886) - Added an info view to display task information including metadata, prerequisites and outputs. + +[#1966](https://github.com/cylc/cylc-ui/pull/1966) - Added copy-to-clipboard buttons: + - the ID of a workflow/task/etc from the command menu + - the log file path in the Log view + +[#1973](https://github.com/cylc/cylc-ui/pull/1973) - Add a button to toggle families on and off in the tree view. + +[#1974](https://github.com/cylc/cylc-ui/pull/1974) - Add a "Select All" action in the task state filter. + +[#1982](https://github.com/cylc/cylc-ui/pull/1982) - Add link to Jupyter Lab from the Dashboard (if Jupyter Lab is installed). + +[#2016](https://github.com/cylc/cylc-ui/pull/2016) - Show [flow numbers](https://cylc.github.io/cylc-doc/stable/html/glossary.html#term-flow) when applicable. Removed tasks (flow=None) are now dimmed. + +### 🔧 Fixes + +[#1979](https://github.com/cylc/cylc-ui/pull/1979) - Don't offer the n-window selection if you don't have permissions to use it. + ## cylc-ui-2.6.0 (Released 2024-10-09) ### 🚀 Enhancements diff --git a/changes.d/1886.feat.md b/changes.d/1886.feat.md deleted file mode 100644 index 9f20cc650..000000000 --- a/changes.d/1886.feat.md +++ /dev/null @@ -1 +0,0 @@ -Added an info view to display task information including metadata, prerequisites and outputs. diff --git a/changes.d/1966.feat.md b/changes.d/1966.feat.md deleted file mode 100644 index 190b24dae..000000000 --- a/changes.d/1966.feat.md +++ /dev/null @@ -1,3 +0,0 @@ -Added copy-to-clipboard buttons: -- the ID of a workflow/task/etc from the command menu -- the log file path in the Log view diff --git a/changes.d/1973.feat.md b/changes.d/1973.feat.md deleted file mode 100644 index d6c039080..000000000 --- a/changes.d/1973.feat.md +++ /dev/null @@ -1 +0,0 @@ -Add a button to toggle families on and off in the tree view. diff --git a/changes.d/1974.feat.md b/changes.d/1974.feat.md deleted file mode 100644 index 95ee9326b..000000000 --- a/changes.d/1974.feat.md +++ /dev/null @@ -1 +0,0 @@ -Add a "Select All" action in the task state filter. diff --git a/changes.d/1979.fix.md b/changes.d/1979.fix.md deleted file mode 100644 index c29bb1ed4..000000000 --- a/changes.d/1979.fix.md +++ /dev/null @@ -1 +0,0 @@ -Don't offer the n-window selection if you don't have permissions to use it. diff --git a/changes.d/1982.feat.md b/changes.d/1982.feat.md deleted file mode 100644 index 4d9dc76d1..000000000 --- a/changes.d/1982.feat.md +++ /dev/null @@ -1 +0,0 @@ -Add link to Jupyter Lab from the Dashboard (if Jupyter Lab is installed). diff --git a/changes.d/2016.feat.md b/changes.d/2016.feat.md deleted file mode 100644 index ff2e9fe4e..000000000 --- a/changes.d/2016.feat.md +++ /dev/null @@ -1 +0,0 @@ -Show [flow numbers](https://cylc.github.io/cylc-doc/stable/html/glossary.html#term-flow) when applicable. Removed tasks (flow=None) are now dimmed. diff --git a/package.json b/package.json index c61f71f14..799cef07c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cylc-ui", - "version": "2.6.0", + "version": "2.7.0", "private": true, "license": "GPL-3.0-only", "type": "module",