Skip to content

Commit a163eb3

Browse files
committed
added list of fixes to release notes and adapted version string for v9.0.6
1 parent 96b717a commit a163eb3

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed

doc/markdown/manual/release-notes/04_full_list_of_fixes.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,56 @@
22

33
# Release notes - Cluster Scheduler
44

5+
## v9.0.6
6+
7+
### Improvement
8+
9+
[CS-760](https://hpc-gridware.atlassian.net/browse/CS-760) JSONL output shows nested element \("usage"\) with the same name which can confuse and lead to parsing issues
10+
11+
[CS-1165](https://hpc-gridware.atlassian.net/browse/CS-1165) add a testsuite test for the ssh wrapper \(MPI\) template
12+
13+
[CS-1186](https://hpc-gridware.atlassian.net/browse/CS-1186) default PE settings trigger unnecessary calls to /bin/true
14+
15+
[CS-1195](https://hpc-gridware.atlassian.net/browse/CS-1195) make classic spooling the default
16+
17+
[CS-1196](https://hpc-gridware.atlassian.net/browse/CS-1196) the "starting up" info message should be the first message to print to the messages file at daemon startup
18+
19+
[CS-1256](https://hpc-gridware.atlassian.net/browse/CS-1256) allow one slave task to be started on the master host with the pe templates for mpich and mvapich
20+
21+
[CS-1257](https://hpc-gridware.atlassian.net/browse/CS-1257) in the MPI build scripts save the configure/make/make install log files into the installation directory
22+
23+
[CS-1258](https://hpc-gridware.atlassian.net/browse/CS-1258) log to execd messages file when and why sge\_execd rejects pe task requests \(qrsh -inherit\)
24+
25+
[CS-1261](https://hpc-gridware.atlassian.net/browse/CS-1261) qrsh -verbose shall log which transport client it uses and where the information comes from
26+
27+
[CS-1271](https://hpc-gridware.atlassian.net/browse/CS-1271) One line installer script should check if /etc/hosts is configured correctly to prevent installation issues
28+
29+
### Task
30+
31+
[CS-1059](https://hpc-gridware.atlassian.net/browse/CS-1059) verify sorting of JAT\_granted\_destin\_identifier\_list
32+
33+
[CS-1110](https://hpc-gridware.atlassian.net/browse/CS-1110) verify caching mechanism in qrsh -inherit
34+
35+
### Sub-task
36+
37+
[CS-645](https://hpc-gridware.atlassian.net/browse/CS-645) in schedule file print separator \*after\* writing the schedule records
38+
39+
[CS-1264](https://hpc-gridware.atlassian.net/browse/CS-1264) Clone and update Solaris 11 VM
40+
41+
### Bug
42+
43+
[CS-619](https://hpc-gridware.atlassian.net/browse/CS-619) queue limits which are overwritten on the submission command line have only effect if they are overwritten in the global scope
44+
45+
[CS-1132](https://hpc-gridware.atlassian.net/browse/CS-1132) reserved usage is not calculated for rss
46+
47+
[CS-1193](https://hpc-gridware.atlassian.net/browse/CS-1193) uninstalling a sge\_execd on the master host fails with "denied: can't delete master host "ubuntu-24-amd64-1" from admin host list"
48+
49+
[CS-1227](https://hpc-gridware.atlassian.net/browse/CS-1227) \(Auto\)installer fails to install OCS 9.0.5 packages on Rocky Linux 9
50+
51+
[CS-1231](https://hpc-gridware.atlassian.net/browse/CS-1231) Auto install fails on openSUSE Leap 15.6 during copying rc template
52+
53+
[CS-1267](https://hpc-gridware.atlassian.net/browse/CS-1267) broken build on Solaris 11 after update
54+
555
## v9.0.5
656

757
### Improvement

source/libs/sgeobj/ocs_Version.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#define OCS_VERSION_MAJOR 9
4040
#define OCS_VERSION_MINOR 0
4141
#define OCS_VERSION_PATCH 6
42-
#define OCS_VERSION_SUFFIX "alpha"
42+
#define OCS_VERSION_SUFFIX ""
4343

4444
static const std::string OCS_VERSION_STRING{std::to_string(OCS_VERSION_MAJOR) + "."
4545
+ std::to_string(OCS_VERSION_MINOR) + "." + std::to_string(OCS_VERSION_PATCH) + OCS_VERSION_SUFFIX};

0 commit comments

Comments
 (0)