Skip to content

Commit 483ece8

Browse files
committed
Release v2.2.0
1 parent f1884a0 commit 483ece8

File tree

3 files changed

+59
-4
lines changed

3 files changed

+59
-4
lines changed

debian/changelog

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
slurm-web (2.2.0) unstable; urgency=medium
2+
3+
[ Yen C. Li ]
4+
* REST API:
5+
* Honor Slurm PrivateData settings for jobs and reservations (#149)
6+
* Use GET instead of POST for most routes. The optional authentication token
7+
is now given in a new Authorization HTTP header (#63).
8+
* Remove password from token (#64)
9+
* Handle LDAP SERVER_DOWN exception (#107)
10+
* Dashboard:
11+
* Make path to top-left corner logo configurable (#102)
12+
* Show full name at the top right corner (#110)
13+
* Show real cluster name instead of local (#61)
14+
* Show TRES instead of nodelist in jobs view (#89)
15+
* Show node down/drain reason (#90)
16+
* Add optional extra customizable col in jobs view (#65)
17+
* Significantly reduce margins between racks (#126)
18+
* Fix empty jobs view lock (#136)
19+
* Fix serial authentification failures (#137)
20+
* Factorize dashboard error management (#124,#150)
21+
* Add WCKey to dashboard jobs view (#141)
22+
* Fix global logout on one cluster auth fail (#158)
23+
* Disable caching effect on dashboard conf files (#99,#159)
24+
* Doc:
25+
* Update for new features
26+
27+
[ Rémi Palancher ]
28+
* Tests:
29+
* Introduce a programmable testing environment with mocks and fake data
30+
sources.
31+
* REST API:
32+
* Fix PySLURM call to job find_id() following API change introduced with
33+
PySLURM >= 16.05 (#138).
34+
* Remove use of join in partitions view following API change introduced with
35+
PySLURM >= 16.05 (#140).
36+
* Slurm-web REST API now depends on PySLURM >= 16.05
37+
* Doc:
38+
* Minor doc formatting fixes
39+
40+
[ Alexandre Beche ]
41+
* REST API:
42+
* Adding sinfo endpoint to slurmrestapi (#145)
43+
44+
[ oulinbao ]
45+
* Doc:
46+
* Correct typo Flash to Flask in README (#148)
47+
48+
[ Kilian Cavalotti ]
49+
* Integration:
50+
* Provide DockerFile and associated scripts to instanciate Slurm-web within
51+
Docker container. The install guide documentation has been updated with
52+
instanciation instructions. (#160)
53+
54+
-- Rémi Palancher <[email protected]> Wed, 08 Feb 2017 10:05:25 +0100
55+
156
slurm-web (2.1.3) unstable; urgency=medium
257

358
* Fix LDAP SSL/TLS server certificate validation

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@
4444

4545
# General information about the project.
4646
project = u'Slurm-web'
47-
copyright = u'2015, EDF CCN-HPC'
47+
copyright = u'2015-2017, EDF CCN-HPC'
4848

4949
# The version info for the project you're documenting, acts as replacement for
5050
# |version| and |release|, also used in various other places throughout the
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '2.1'
54+
version = '2.2.0'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '2.1'
56+
release = '2.2.0'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

rest/slurmrestapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def custom403(error):
7474
@app.route('/version', methods=['GET', 'OPTIONS'])
7575
@crossdomain(origin=origins)
7676
def version():
77-
return "Slurm-web REST API v2.1"
77+
return "Slurm-web REST API v2.2"
7878

7979

8080
@app.route('/login', methods=['POST', 'OPTIONS'])

0 commit comments

Comments
 (0)