Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ Changed

Fixed
~~~~~
* Fix the action query when filtering tags. The old implementation returned actions which have the
provided name as action name and not as tag name. (bug fix) #4828

Reported by @AngryDeveloper and contributed by Marcel Weinberg (@winem)
* Fix the passing of arrays to shell scripts where the arrays where not detected as such by the
st2 action_db utility. This caused arrays to be passed as Python lists serialized into a string.

Expand Down
2 changes: 1 addition & 1 deletion st2api/st2api/controllers/v1/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class ActionsController(resource.ContentPackResourceController):
supported_filters = {
'name': 'name',
'pack': 'pack',
'tags': 'name'
'tags': 'tag.name'
}

query_options = {
Expand Down