Could you add support for redmine tags - https://www.redmine.org/plugins/redmineup_tags
In my example, I am passing an array
Redmine::issue()->create(
// ...
'tag_list' => [
'approved',
'finished',
],
);
But I get an error
Redmine \ Exception \ SerializerException
Could not create XML from array: ""
I added a fix to this PR - #379, but it was rejected.