I just found 3 regressions (one major and two minor) :
1/ It impossible to add note almost everywhere close to the repeat:
@startuml
start
repeat
### It won't work from here...
note left : A note
:Test something;
if (Something went wrong?) then (no)
:OK;
break
endif
:Alert "Error";
repeat while (Something went wrong?) is (yes)
->no;
:Alert "Sucess";
### ... To here
stop
@enduml
2/ There is no padding if there is long text in a step:
@startuml
start
repeat
:Test something;
if (Something went wrong?) then (no)
:OK;
break
endif
:Alert "Error with long text";
repeat while (Something went wrong?) is (yes)
->no;
:Alert "Sucess";
stop
@enduml
OR
@startuml
start
repeat
:Test something;
if (Something went wrong?) then (no)
:OK;
break
endif
:Alert "Error";
repeat while (Something went wrong with long text?) is (yes)
->no;
:Alert "Sucess";
stop
@enduml

3/ There is an issue with arrows. You can get up to 3 arrow on the same line if add a label to the line:
@startuml
start
repeat
:Test something;
if (Something went wrong?) then (no)
:OK;
break
endif
->NOK;
:Alert "Error with long text";
repeat while (Something went wrong with long text?) is (yes)
->no;
:Alert "Sucess";
stop
@enduml
Around the "NOK"

Hope this helps!