In old version all 3 bold arrow style was correct displayed.
(additional the component color is changed from red to gray, but I think this is related to the new themes and not important for me)
BR Helmut
@startuml
skinparam arrow {
Color #666666
FontColor #666666
FontSize 12
}
skinparam arrow {
Color green
FontColor green
}
skinparam arrow<<bluebold>> {
Color blue;line.Bold()
}
skinparam arrow<<bold>> {
Color ;line.Bold()
}
[a]
[b]
' not working anymore
a -->> b <<bold>> : "stereotype bold"
' not working anymore
a -->> b <<bluebold>> : "stereotype bluebold"
' working in old and new version
a -[#blue,bold]-> b : "line bluebold"
@enduml