Skip to content

Commit d1cbd66

Browse files
committed
add changelog and update version
1 parent 5531c05 commit d1cbd66

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGES.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,17 @@
1818
Changes
1919
=======
2020

21+
`1.1.4 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.1.3...v1.1.4>`__ (2022-03-28)
22+
-------------------------------------------------------------------------------------------------------
23+
24+
This is a bugfix release fixing an issue with cycle detection in workflows.
25+
26+
Bug Fixes
27+
~~~~~~~~~
28+
29+
- **core:** prevent creating cycles when creating/executing workflows.
30+
(`#2785 <https://github.com/SwissDataScienceCenter/renku-python/pull/2785>`__)
31+
2132
`1.1.3 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.1.2...v1.1.3>`__ (2022-03-25)
2233
-------------------------------------------------------------------------------------------------------
2334

helm-chart/renku-core/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ appVersion: "1.0"
33
description: A Helm chart for Kubernetes
44
name: renku-core
55
icon: https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4
6-
version: 1.1.3
6+
version: 1.1.4

helm-chart/renku-core/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ versions:
109109
fullnameOverride: ""
110110
image:
111111
repository: renku/renku-core
112-
tag: "v1.1.3"
112+
tag: "v1.1.4"
113113
pullPolicy: IfNotPresent
114114
v8:
115115
name: v8

renku/core/metadata/gateway/activity_gateway.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ def add(self, activity: Activity):
157157
all_activities = set()
158158

159159
for activity_chain in chain(upstream_chains, downstream_chains):
160-
for activity in activity_chain:
161-
all_activities.add(activity)
160+
for current_activity in activity_chain:
161+
all_activities.add(current_activity)
162162

163163
# NOTE: This call raises an exception if there is a cycle
164164
create_activity_graph(list(all_activities), with_inputs_outputs=True)

0 commit comments

Comments
 (0)