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 1818Changes
1919=======
2020
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+
2144`1.8.1 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.8.0...v1.8.1 >`__ (2022-10-26)
2245-------------------------------------------------------------------------------------------------------
2346
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ appVersion: "1.0"
33description : A Helm chart for Kubernetes
44name : renku-core
55icon : 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:
2828 renku-redis-host : " true"
2929 existingSecret : redis-secret
3030 existingSecretPasswordKey : redis-password
31-
3231 debug : false
3332# base path - this is the reverse proxy base path
3433apiBasePath : /api
@@ -98,7 +97,7 @@ versions:
9897 fullnameOverride : " "
9998 image :
10099 repository : renku/renku-core
101- tag : " v1.8.1 "
100+ tag : " v1.9.0 "
102101 pullPolicy : IfNotPresent
103102 v8 :
104103 name : v8
Original file line number Diff line number Diff line change 2424except ImportError :
2525 from importlib_metadata import distribution # type: ignore
2626
27- __version__ = "1.8.1 "
27+ __version__ = "1.9.0 "
2828__template_version__ = "0.3.1"
2929__minimum_project_version__ = "1.7.0"
3030
You can’t perform that action at this time.
0 commit comments