diff --git a/CHANGES.md b/CHANGES.md index 12df78625..d4f561a62 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,6 +12,30 @@ $ towncrier create ..md --content "Short description" +## cylc-ui-2.5.0 (Released 2024-06-18) + +### 🚀 Enhancements + +[#1466](https://github.com/cylc/cylc-ui/pull/1466) - Added gantt view: a new view showing job durations over time. + +[#1510](https://github.com/cylc/cylc-ui/pull/1510) - Analysis view: added a time series layout which plots run time against cycle points. + +[#1717](https://github.com/cylc/cylc-ui/pull/1717), [#1744](https://github.com/cylc/cylc-ui/pull/1744), [#1745](https://github.com/cylc/cylc-ui/pull/1745), [#1751](https://github.com/cylc/cylc-ui/pull/1751) - More view options are now remembered & restored when navigating between workflows. + +[#1755](https://github.com/cylc/cylc-ui/pull/1755) - Add a toolbar button for changing the graph window extent. + +[#1763](https://github.com/cylc/cylc-ui/pull/1763) - Added graph view feature to group nodes by cycle point + +### 🔧 Fixes + +[#1758](https://github.com/cylc/cylc-ui/pull/1758) - Clicking "Log" in the command menu now works correctly for workflows in the sidebar. + +[#1778](https://github.com/cylc/cylc-ui/pull/1778) - Compatibility with JupyterHub 4.1 XSRF changes + +[#1780](https://github.com/cylc/cylc-ui/pull/1780) - Fixed graph view rendering bug in Firefox. + +[#1802](https://github.com/cylc/cylc-ui/pull/1802) - Fixed bug where task progress animations would reset when switching between tabs in the workspace. + ## cylc-ui-2.4.0 (Released 2024-04-02) ### Enhancements diff --git a/changes.d/1466.feat.md b/changes.d/1466.feat.md deleted file mode 100644 index 5e36df027..000000000 --- a/changes.d/1466.feat.md +++ /dev/null @@ -1 +0,0 @@ -Added gantt view: a new view showing job durations over time. diff --git a/changes.d/1510.feat.md b/changes.d/1510.feat.md deleted file mode 100644 index 74938e36e..000000000 --- a/changes.d/1510.feat.md +++ /dev/null @@ -1 +0,0 @@ -Analysis view: added a time series layout which plots run time against cycle points. diff --git a/changes.d/1717.feat.md b/changes.d/1717.feat.md deleted file mode 100644 index 7938e3f9b..000000000 --- a/changes.d/1717.feat.md +++ /dev/null @@ -1 +0,0 @@ -More view options are now remembered & restored when navigating between workflows. \ No newline at end of file diff --git a/changes.d/1744.feat.md b/changes.d/1744.feat.md deleted file mode 100644 index 7938e3f9b..000000000 --- a/changes.d/1744.feat.md +++ /dev/null @@ -1 +0,0 @@ -More view options are now remembered & restored when navigating between workflows. \ No newline at end of file diff --git a/changes.d/1745.feat.md b/changes.d/1745.feat.md deleted file mode 100644 index a537957b4..000000000 --- a/changes.d/1745.feat.md +++ /dev/null @@ -1 +0,0 @@ -More view options are now remembered & restored when navigating between workflows. diff --git a/changes.d/1751.feat.md b/changes.d/1751.feat.md deleted file mode 100644 index 7938e3f9b..000000000 --- a/changes.d/1751.feat.md +++ /dev/null @@ -1 +0,0 @@ -More view options are now remembered & restored when navigating between workflows. \ No newline at end of file diff --git a/changes.d/1755.feat.md b/changes.d/1755.feat.md deleted file mode 100644 index 161e5ed17..000000000 --- a/changes.d/1755.feat.md +++ /dev/null @@ -1 +0,0 @@ -Add a toolbar button for changing the graph window extent. diff --git a/changes.d/1758.fix.md b/changes.d/1758.fix.md deleted file mode 100644 index a3e2f241b..000000000 --- a/changes.d/1758.fix.md +++ /dev/null @@ -1 +0,0 @@ -Clicking "Log" in the command menu now works correctly for workflows in the sidebar. diff --git a/changes.d/1763.feat.md b/changes.d/1763.feat.md deleted file mode 100644 index 0cbbc5d7b..000000000 --- a/changes.d/1763.feat.md +++ /dev/null @@ -1 +0,0 @@ -Added graph view feature to group nodes by cycle point \ No newline at end of file diff --git a/changes.d/1778.fix b/changes.d/1778.fix deleted file mode 100644 index b8d3bcbf2..000000000 --- a/changes.d/1778.fix +++ /dev/null @@ -1 +0,0 @@ -Compatibility with JupyterHub 4.1 XSRF changes \ No newline at end of file diff --git a/changes.d/1780.fix.md b/changes.d/1780.fix.md deleted file mode 100644 index e7529a585..000000000 --- a/changes.d/1780.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed graph view rendering bug in Firefox. \ No newline at end of file diff --git a/changes.d/1802.fix.md b/changes.d/1802.fix.md deleted file mode 100644 index 37b289658..000000000 --- a/changes.d/1802.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed bug where task progress animations would reset when switching between tabs in the workspace. \ No newline at end of file diff --git a/package.json b/package.json index 0501f3bf3..1c2b3642b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cylc-ui", - "version": "2.4.0", + "version": "2.5.0", "private": true, "license": "GPL-3.0-only", "type": "module",