fortify / fcli

fcli is a command-line utility for interacting with various Fortify products
https://fortify.github.io/fcli/
Other
27 stars 16 forks source link

chore: `ssc av create --from` now supports copy of `IssueTemplate,VersionAttributes,UserAccess` #483

Open gendry-gh opened 7 months ago

gendry-gh commented 7 months ago

chore: ssc av create --from now supports copy of IssueTemplate,VersionAttributes,UserAccess

By default, the --copy-from feature will copy everything from the source app, now including (with the priority):

mathieures commented 6 months ago

If it is possible to merge the fix for the attribute separator right away, it would be amazing!

rsenden commented 6 months ago

If it is possible to merge the fix for the attribute separator right away, it would be amazing!

Unfortunately, it's not that simple. This fix violates existing fcli conventions; all other options that take multiple values use , as the (primary) separator. It may be better to change this fix to stick to the original primary separator and use a different separator between the attribute values, like --attrs ATTR1=ABC|DEF,ATTR2=GHI|XYZ or similar. We'll need to check the impact of such a change though and whether we need to change this in any other places as well (for example, whether there are any other fcli options that take similar 'lists in list' values).

gendry-gh commented 6 months ago

Below fix to be moved to another PR: #491

fix: ssc create: the --attrs now supports multiple attributes with multiple values