Skip to content

Commit 8db0def

Browse files
committed
Merge remote-tracking branch 'upstream/master' into graph-group-collapse
2 parents d12a073 + 149657e commit 8db0def

File tree

26 files changed

+646
-341
lines changed

26 files changed

+646
-341
lines changed

.github/workflows/shortlog.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
- 'CONTRIBUTING.md'
88
- '.github/workflows/shortlog.yml'
99
- '.mailmap'
10+
schedule:
11+
- cron: '37 06 * * 1' # 06:37, Monday
1012

1113
jobs:
1214
test:

CHANGES.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,34 @@ $ towncrier create <PR-number>.<feat|fix>.md --content "Short description"
1212

1313
<!-- towncrier release notes start -->
1414

15+
## cylc-ui-2.8.0 (Released 2025-07-23)
16+
17+
### 🚀 Enhancements
18+
19+
[#2017](https://github.com/cylc/cylc-ui/pull/2017) - Added option to set automatic scrolling in log view
20+
21+
[#2025](https://github.com/cylc/cylc-ui/pull/2025) - Added conditional default log file based on job outcome
22+
23+
[#2102](https://github.com/cylc/cylc-ui/pull/2102) - Added xtriggers and run mode to the task info view.
24+
25+
[#2135](https://github.com/cylc/cylc-ui/pull/2135) - Show more Cylc version info in the sidebar.
26+
27+
[#2169](https://github.com/cylc/cylc-ui/pull/2169) - Added workflow warning information:
28+
- A dismissable warning icon in the workflows sidebar and workspace toolbar which illuminates when a warning is present.
29+
- All warnings are listed in events section of the dashboard.
30+
31+
[#2176](https://github.com/cylc/cylc-ui/pull/2176) - Workspace tab layout is now remembered beyond the current browser session.
32+
33+
[#2190](https://github.com/cylc/cylc-ui/pull/2190) - Added icon modifiers for tasks waiting on failure-retry, xtriggers or wallclock.
34+
35+
[#2222](https://github.com/cylc/cylc-ui/pull/2222) - The Edit Runtime form now supports multi-line environment variables.
36+
37+
### 🔧 Fixes
38+
39+
[#2163](https://github.com/cylc/cylc-ui/pull/2163) - Fixed sorting controls appearing in wrong tab when multiple analysis view tabs are open.
40+
41+
[#2174](https://github.com/cylc/cylc-ui/pull/2174) - Fixed spurious error when running a command on multiple workflows.
42+
1543
## cylc-ui-2.7.0 (Released 2025-01-08)
1644

1745
### 🚀 Enhancements

changes.d/2017.feat.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/2025.feat.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/2135.feat.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/2163.fix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/2174.fix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/2176.feat.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/2222.feat.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cylc-ui",
3-
"version": "2.7.0",
3+
"version": "2.8.0",
44
"private": true,
55
"license": "GPL-3.0-only",
66
"type": "module",
@@ -31,7 +31,7 @@
3131
"@mdi/js": "7.4.47",
3232
"@vueuse/core": "13.5.0",
3333
"apexcharts": "3.54.1",
34-
"axios": "1.10.0",
34+
"axios": "1.11.0",
3535
"dedent": "1.6.0",
3636
"enumify": "2.0.0",
3737
"graphiql": "4.1.2",
@@ -45,8 +45,8 @@
4545
"simple-icons": "15.2.0",
4646
"subscriptions-transport-ws": "0.11.0",
4747
"svg-pan-zoom": "3.6.2",
48-
"vue": "3.5.17",
49-
"vue-i18n": "11.1.5",
48+
"vue": "3.5.18",
49+
"vue-i18n": "11.1.10",
5050
"vue-router": "4.5.1",
5151
"vue-the-mask": "0.11.1",
5252
"vue3-apexcharts": "1.8.0",
@@ -55,13 +55,13 @@
5555
},
5656
"devDependencies": {
5757
"@cypress/code-coverage": "3.14.5",
58-
"@vitejs/plugin-react": "4.6.0",
59-
"@vitejs/plugin-vue": "5.2.4",
58+
"@vitejs/plugin-react": "4.7.0",
59+
"@vitejs/plugin-vue": "6.0.1",
6060
"@vitest/coverage-istanbul": "3.2.4",
6161
"@vue/test-utils": "2.4.6",
6262
"concurrently": "9.2.0",
6363
"cross-fetch": "4.1.0",
64-
"cypress": "14.5.1",
64+
"cypress": "14.5.3",
6565
"cypress-vite": "1.6.0",
6666
"eslint": "8.57.1",
6767
"eslint-config-standard": "17.1.0",
@@ -83,10 +83,10 @@
8383
"sass-embedded": "1.89.2",
8484
"sinon": "21.0.0",
8585
"standard": "17.1.2",
86-
"vite": "6.3.5",
86+
"vite": "7.0.6",
8787
"vite-plugin-eslint": "1.8.1",
8888
"vite-plugin-istanbul": "7.1.0",
89-
"vite-plugin-vuetify": "2.1.1",
89+
"vite-plugin-vuetify": "2.1.2",
9090
"vitest": "3.2.4"
9191
},
9292
"peerDependenciesMeta": {

0 commit comments

Comments
 (0)