Skip to content

Commit

Permalink
Release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rezib committed Feb 9, 2017
1 parent f1884a0 commit 483ece8
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 4 deletions.
55 changes: 55 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,58 @@
slurm-web (2.2.0) unstable; urgency=medium

[ Yen C. Li ]
* REST API:
* Honor Slurm PrivateData settings for jobs and reservations (#149)
* Use GET instead of POST for most routes. The optional authentication token
is now given in a new Authorization HTTP header (#63).
* Remove password from token (#64)
* Handle LDAP SERVER_DOWN exception (#107)
* Dashboard:
* Make path to top-left corner logo configurable (#102)
* Show full name at the top right corner (#110)
* Show real cluster name instead of local (#61)
* Show TRES instead of nodelist in jobs view (#89)
* Show node down/drain reason (#90)
* Add optional extra customizable col in jobs view (#65)
* Significantly reduce margins between racks (#126)
* Fix empty jobs view lock (#136)
* Fix serial authentification failures (#137)
* Factorize dashboard error management (#124,#150)
* Add WCKey to dashboard jobs view (#141)
* Fix global logout on one cluster auth fail (#158)
* Disable caching effect on dashboard conf files (#99,#159)
* Doc:
* Update for new features

[ Rémi Palancher ]
* Tests:
* Introduce a programmable testing environment with mocks and fake data
sources.
* REST API:
* Fix PySLURM call to job find_id() following API change introduced with
PySLURM >= 16.05 (#138).
* Remove use of join in partitions view following API change introduced with
PySLURM >= 16.05 (#140).
* Slurm-web REST API now depends on PySLURM >= 16.05
* Doc:
* Minor doc formatting fixes

[ Alexandre Beche ]
* REST API:
* Adding sinfo endpoint to slurmrestapi (#145)

[ oulinbao ]
* Doc:
* Correct typo Flash to Flask in README (#148)

[ Kilian Cavalotti ]
* Integration:
* Provide DockerFile and associated scripts to instanciate Slurm-web within
Docker container. The install guide documentation has been updated with
instanciation instructions. (#160)

-- Rémi Palancher <[email protected]> Wed, 08 Feb 2017 10:05:25 +0100

slurm-web (2.1.3) unstable; urgency=medium

* Fix LDAP SSL/TLS server certificate validation
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@

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

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '2.1'
version = '2.2.0'
# The full version, including alpha/beta/rc tags.
release = '2.1'
release = '2.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion rest/slurmrestapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def custom403(error):
@app.route('/version', methods=['GET', 'OPTIONS'])
@crossdomain(origin=origins)
def version():
return "Slurm-web REST API v2.1"
return "Slurm-web REST API v2.2"


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

0 comments on commit 483ece8

Please sign in to comment.