Skip to content

Commit

Permalink
release: 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
audrium committed Nov 22, 2021
1 parent 20502b7 commit 093f287
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
Changes
=======

Version 0.8.0 (UNRELEASED)
Version 0.8.0 (2021-11-22)
---------------------------

- Adds users quota accounting.
- Adds support for Snakemake workflow engine.
- Adds ``include_progress`` and ``include_workspace_size`` query args to workflow list endpoint.
- Adds workflow prioritization in the queue by complexity
- Adds workflow prioritization in the queue by complexity.
- Adds ``priority`` and ``min_job_memory`` params to workflow submission publisher.
- Adds Yadage workflow specification loading to ``start_workflow`` endpoint.
- Adds a check in scheduler if at least one workflow job could be started in Kubernetes.
- Adds configuration environment variable to set workflow scheduling policy (``REANA_WORKFLOW_SCHEDULING_POLICY``).
- Adds configuration environment variable to set a timeout between consuming workflows (``REANA_SCHEDULER_REQUEUE_SLEEP``).
- Adds configuration environment variable to set an API rate limiter (``REANA_RATELIMIT_AUTHENTICATED_USER``, ``REANA_RATELIMIT_GUEST_USER``).
- Adds new ``info`` endpoint allowing to retrieve information about cluster capabilities such as available workspaces.
- Changes workflow execution consumer to receive only one message at a time.
- Changes to PostgreSQL 12.8
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"description": "Submit workflows to be run on REANA Cloud",
"title": "REANA Server",
"version": "0.8.0a6"
"version": "0.8.0"
},
"parameters": {},
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion reana_server/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.8.0a6"
__version__ = "0.8.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
history = open("CHANGES.rst").read()

tests_require = [
"pytest-reana>=0.8.0a7,<0.9.0",
"pytest-reana>=0.8.0,<0.9.0",
]

extras_require = {
Expand Down

0 comments on commit 093f287

Please sign in to comment.