Skip to content

Commit

Permalink
release: 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Sep 26, 2023
1 parent 0fa088a commit 3729df2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
16 changes: 10 additions & 6 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
Changes
=======

Version 0.9.3 (UNRELEASED)
Version 0.9.3 (2023-09-26)
--------------------------

- Adds support for Python 3.12.
- Adds OpenAPI specification support for ``prune_workspace`` endpoint that allows to delete files that are neither inputs nor outputs from the workspace.
- Adds support for ``tests.files`` in ``reana.yaml`` allowing to specify Gherking feature files for testing.
- Adds the OpenAPI specification support for ``prune_workspace`` endpoint that allows to delete files that are neither inputs nor outputs from the workspace.
- Adds support for ``tests.files`` in ``reana.yaml`` allowing to specify Gherkin feature files for testing runnable examples.
- Changes the OpenAPI specification to include the ``run_stopped_at`` property in the workflow progress information returned by the workflow list and workflow status endpoints.
- Changes the server OpenAPI specification to add the `maximum_interactive_session_inactivity_period` value to the `info` endpoint.
- Changes email sending to allow configuring authentication and encryption options.
- Fixes the verbs used to describe changes to the status of a workflow in order to avoid incorrect phrases such as ``workflow has been failed``.
- Changes the OpenAPI specification to include the ``maximum_interactive_session_inactivity_period`` value to the ``info`` endpoint.
- Changes the email sending utility to allow configuring authentication and encryption options.
- Changes validation of REANA specification to emit warnings about unknown properties.
- Fixes the verbs used to describe changes to the status of a workflow in order to avoid incorrect grammatical phrases such as ``workflow has been failed``.
- Fixes the loading of Snakemake and CWL workflow specifications when no parameters are specified.
- Fixes the OpenAPI specification of GitLab OAuth endpoint return statuses.
- Fixes container image names to be Podman-compatible.
- Fixes the email sending utility to not send emails when notifications are disabled globally.

Version 0.9.2.1 (2023-07-19)
----------------------------
Expand Down
4 changes: 2 additions & 2 deletions reana_commons/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of REANA.
# Copyright (C) 2018, 2019, 2020, 2021, 2022 CERN.
# Copyright (C) 2018, 2019, 2020, 2021, 2022, 2023 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.9.3a6"
__version__ = "0.9.3"
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.9.0a6,<0.10.0",
"pytest-reana>=0.9.1,<0.10.0",
]


Expand Down

0 comments on commit 3729df2

Please sign in to comment.