Repeat over multiple swimlanes bugged

0 votes
asked Nov 25, 2020 in Bug by MWK

I tried the following:

@startuml
|Developer|
start
repeat :Step1;
|Owner|
repeat while (Step 2)
->yes;
|Developer|
:Step 3;
stop
footer Observed %version()
@enduml

But it produces this:

https://www.planttext.com/api/plantuml/img/SoWkIImgAStDuQfnIIrBpSalI2sguG8BSXMb5gGcbYXO1PUa5XXQSzNub-U19A72vHcPEQaA6Y191IDDBbsxojHYQnHJm1eLZAs1nkKNSANbvvUa5Ydu9nMd5fMbfYYebgKM5MVcvsbeSZcavgK0dG00

Which is probably a bug. Is there a fix upcoming?

1 Answer

0 votes
answered Nov 26, 2020 by plantuml (295,000 points)

Thanks for the report.

This is fixed in last beta http://beta.plantuml.net/plantuml.jar and on the online server.

Tell us if find other issues !

commented Nov 27, 2020 by MWK

Thank you for fixing this! I noticed a follow-up bug regarding an arrow label. See here:

@startuml
|Developer|
start
repeat :Step1;
|Owner|
->yes;
repeat while (Step 2) is (return)
->yes;
|Developer|
:Step 3;
stop
footer Observed %version()
@enduml

PlantUML diagram

The arrow label between step 1 and step 2 is ommitted.

...