File tree Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 18
18
Changes
19
19
=======
20
20
21
+ `1.9.0 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.8.1...v1.9.0 >`__ (2022-11-03)
22
+ -------------------------------------------------------------------------------------------------------
23
+
24
+ Bug Fixes
25
+ ~~~~~~~~~
26
+
27
+ - **core: ** fix metadata to match RFC and properly format wasDerivedFrom
28
+ (`#3166 <https://github.com/SwissDataScienceCenter/renku-python/issues/3166 >`__)
29
+ (`42aee90 <https://github.com/SwissDataScienceCenter/renku-python/commit/42aee90b893fd24b0b7cf968f7958ce46905e88f >`__)
30
+ - **core: ** fix rerun overwriting plan details with previous versions
31
+ (`#3172 <https://github.com/SwissDataScienceCenter/renku-python/issues/3172 >`__)
32
+ (`72ad1d5 <https://github.com/SwissDataScienceCenter/renku-python/commit/72ad1d58e6477288b95d483e91963b96a7411b1b >`__)
33
+ - **service: ** fixes core service not working with python 3.10
34
+ (`#3186 <https://github.com/SwissDataScienceCenter/renku-python/issues/3186 >`__)
35
+ (`dc7554f <https://github.com/SwissDataScienceCenter/renku-python/commit/dc7554fc8e3ae02444792e0f97b30417860dd5ed >`__)
36
+
37
+ Features
38
+ ~~~~~~~~
39
+
40
+ - **svc: ** added workflow endpoints in core service for new workflow UI
41
+ (`#3135 <https://github.com/SwissDataScienceCenter/renku-python/issues/3135 >`__)
42
+ (`3cf7c5d <https://github.com/SwissDataScienceCenter/renku-python/commit/3cf7c5df8a04acea407a28f3eee46bc49b1a80db >`__)
43
+
21
44
`1.8.1 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.8.0...v1.8.1 >`__ (2022-10-26)
22
45
-------------------------------------------------------------------------------------------------------
23
46
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ appVersion: "1.0"
3
3
description : A Helm chart for Kubernetes
4
4
name : renku-core
5
5
icon : https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4
6
- version : 1.8.1
6
+ version : 1.9.0
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ global:
28
28
renku-redis-host : " true"
29
29
existingSecret : redis-secret
30
30
existingSecretPasswordKey : redis-password
31
-
32
31
debug : false
33
32
# base path - this is the reverse proxy base path
34
33
apiBasePath : /api
@@ -98,7 +97,7 @@ versions:
98
97
fullnameOverride : " "
99
98
image :
100
99
repository : renku/renku-core
101
- tag : " v1.8.1 "
100
+ tag : " v1.9.0 "
102
101
pullPolicy : IfNotPresent
103
102
v8 :
104
103
name : v8
Original file line number Diff line number Diff line change 24
24
except ImportError :
25
25
from importlib_metadata import distribution # type: ignore
26
26
27
- __version__ = "1.8.1 "
27
+ __version__ = "1.9.0 "
28
28
__template_version__ = "0.3.1"
29
29
__minimum_project_version__ = "1.7.0"
30
30
You can’t perform that action at this time.
0 commit comments