Skip to content

Commit 050b4e6

Browse files
github-actions[bot]mdonadoni
authored andcommitted
chore(maint-0.9): release 0.9.4
1 parent 179fa89 commit 050b4e6

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.9.3"
2+
".": "0.9.4"
33
}

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [0.9.4](https://github.com/reanahub/reana-workflow-controller/compare/0.9.3...0.9.4) (2024-11-29)
4+
5+
6+
### Build
7+
8+
* **docker:** pin setuptools 70 ([#601](https://github.com/reanahub/reana-workflow-controller/issues/601)) ([be6a388](https://github.com/reanahub/reana-workflow-controller/commit/be6a3885f4f2e84ca77c7e09a89e5f2f06185452))
9+
* **python:** bump shared REANA packages as of 2024-11-28 ([#620](https://github.com/reanahub/reana-workflow-controller/issues/620)) ([179fa89](https://github.com/reanahub/reana-workflow-controller/commit/179fa89ccc4a5e77fca9efa403f4ad2003b40db3))
10+
11+
12+
### Features
13+
14+
* **config:** upgrade to Jupyter SciPy 7.2.2 notebook ([#614](https://github.com/reanahub/reana-workflow-controller/issues/614)) ([72f0c4c](https://github.com/reanahub/reana-workflow-controller/commit/72f0c4c69759c8abf1d67c735232e5b6c033d504))
15+
* **helm:** allow cluster administrator to configure ingress host ([#588](https://github.com/reanahub/reana-workflow-controller/issues/588)) ([a7c9c85](https://github.com/reanahub/reana-workflow-controller/commit/a7c9c851277f3ca191c073fdc6c6d5d4149a95e8))
16+
* **sessions:** expose user secrets in interactive sessions ([#591](https://github.com/reanahub/reana-workflow-controller/issues/591)) ([784efee](https://github.com/reanahub/reana-workflow-controller/commit/784efee4be8b4a9785d03d3d05b00f3da2b455c2))
17+
18+
19+
### Bug fixes
20+
21+
* **config:** read secret key from env ([#615](https://github.com/reanahub/reana-workflow-controller/issues/615)) ([7df1279](https://github.com/reanahub/reana-workflow-controller/commit/7df1279f45e0981a06c3af705873c4d1d797404d))
22+
* **manager:** avoid privilege escalation in Kubernetes jobs ([#615](https://github.com/reanahub/reana-workflow-controller/issues/615)) ([24563e5](https://github.com/reanahub/reana-workflow-controller/commit/24563e568044e29d4399f78d8c081d144f116761))
23+
* **manager:** pass RabbitMQ connection details to workflow engine ([#615](https://github.com/reanahub/reana-workflow-controller/issues/615)) ([cf4ee73](https://github.com/reanahub/reana-workflow-controller/commit/cf4ee734788da33f15a80e1fc1f0b3233ea5a007))
24+
* **set_workflow_status:** validate endpoint arguments ([#589](https://github.com/reanahub/reana-workflow-controller/issues/589)) ([5945d7f](https://github.com/reanahub/reana-workflow-controller/commit/5945d7fca095531b3601e551c527457f9413643c))
25+
326
## [0.9.3](https://github.com/reanahub/reana-workflow-controller/compare/0.9.2...0.9.3) (2024-03-04)
427

528

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ CMD exec uwsgi \
108108

109109
# Set image labels
110110
LABEL org.opencontainers.image.authors="[email protected]"
111-
LABEL org.opencontainers.image.created="2024-03-04"
111+
LABEL org.opencontainers.image.created="2024-11-29"
112112
LABEL org.opencontainers.image.description="REANA reproducible analysis platform - workflow controller component"
113113
LABEL org.opencontainers.image.documentation="https://reana-workflow-controller.readthedocs.io/"
114114
LABEL org.opencontainers.image.licenses="MIT"
@@ -117,5 +117,5 @@ LABEL org.opencontainers.image.title="reana-workflow-controller"
117117
LABEL org.opencontainers.image.url="https://github.com/reanahub/reana-workflow-controller"
118118
LABEL org.opencontainers.image.vendor="reanahub"
119119
# x-release-please-start-version
120-
LABEL org.opencontainers.image.version="0.9.3"
120+
LABEL org.opencontainers.image.version="0.9.4"
121121
# x-release-please-end

docs/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"info": {
33
"description": "Submit and manage workflows",
44
"title": "REANA Workflow Controller",
5-
"version": "0.9.3"
5+
"version": "0.9.4"
66
},
77
"paths": {
88
"/api/workflows": {

reana_workflow_controller/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
from __future__ import absolute_import, print_function
1616

17-
__version__ = "0.9.3"
17+
__version__ = "0.9.4"

0 commit comments

Comments
 (0)