Skip to content

Commit

Permalink
Release 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rezib committed Dec 1, 2021
1 parent efb2327 commit 6a16311
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 6 deletions.
18 changes: 18 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
slurm-web (2.4.0) unstable; urgency=medium

* Back to standard old pybuild/setuptools as pip/wheel based builds are not
available on all supported debian releases
* Introduce slurm-web-common package to install slurm-web Python module
files common to all slurm-web python packages. making slurm-web binary
package a meta-package to install all Slurm-web components.
* Adopt dh_python3 deps management
* Rely on standard debian build paths to simplify d/*.install
* Bump d/compat to 9
* Fix bytes/unicode encoding issues related to python3 porting, newer version
of pyslurm/slurm or whatever.
* Fix restapi module import in WSGI script
* Fix interpolation error with IP addresses whitelist
* Fix handling of job exclusive field in dashboard

-- Rémi Palancher <[email protected]> Wed, 01 Dec 2021 15:00:12 +0100

slurm-web (2.3.0) unstable; urgency=medium

* Portage to python3
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '2.2.6'
version = '2.4.0'
# The full version, including alpha/beta/rc tags.
release = '2.2.6'
release = '2.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
13 changes: 11 additions & 2 deletions rhel/slurm-web.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Main preamble
Summary: Slurm-web dashboard and REST API
Name: slurm-web
Version: 2.3.1
Release: 1%{?dist}.edf
Version: 2.4.0
Release: 1%{?dist}.edf
Source0: %{name}-%{version}.tar.gz
License: GPLv3
Group: Application/System
Expand Down Expand Up @@ -134,6 +134,15 @@ chmod 0400 /etc/slurm-web/secret.key
rm -f /etc/slurm-web/secret.key

%changelog
* Wed Dec 01 2021 Rémi Palancher <[email protected]> 2.4.0-1el8.edf
- Adopt packaging scheme similar to scibian
- Back to setuptools as pip/wheels is not available on all supported platforms
- Cleanup of post/postun snippets
- Fix bytes/unicode encoding issues related to python3 porting, newer version
of pyslurm/slurm or whatever
- Fix restapi module import in WSGI script
- Fix interpolation error with IP addresses whitelist
- Fix handling of job exclusive field in dashboard
* Thu Jun 17 2021 Nilce BOUSSAMBA <[email protected]> 2.3.1-1el8.edf
- Add postinst & postrm scripts, simplejson python package mandatory to handle Json file & fix some bug related to 2to3 migration
* Mon Mar 22 2021 Guillaume Ranquet <[email protected]> 2.3.0-1el8.edf
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='slurm-web',
version='2.3.1',
version='2.4.0',
author='EDF CCN-HPC',
author_email='[email protected]',
description='Web solution for Slurm HPC job schedulers',
Expand Down
2 changes: 1 addition & 1 deletion src/slurmweb/restapi/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.2"
return "Slurm-web REST API v2.4"


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

0 comments on commit 6a16311

Please sign in to comment.