- Update
formatters.pyto includepriorityfield
- Update
search_issueto includeinclude_componentsandinclude_subtasksas flags
-
add_field_valueandupdate_field_valueactions now return a dictionary representation of the issue being modified. Previously these actions would return only thelabelsfield if it exists as an attribute. This addresses #53 but is also beneficial for displaying other field values (inclusive oflabels) that may have been updated. -
Fix for #54 which prevents callers of the
update_field_valueaction from updatinglabelswhich must be passed as a list via the api. As labels cannot contain spaces we split thevaluefield of this action on whitespace in the case wherefield=="labels". Example invocation:
st2 action execute jira.update_field_value issue_key=NETOPS-1 field=labels value='Label1 Label2'
- Update
README.mdto includeapi_tokenas an auth method
- Add new
api_tokenauth method. This authentication method is different than apatauthentication request. (PR #54) - Added
patandcookieauth methods to the sensors.
- Adjust jql in sensor to better support large JIRA projects
- Detect new issues by id vs comparing to an in-memory list
- Add new
jira.bulk_link_issuesaction (PR #50)
- #48 Update
jira==3.2.0
- Add PAT-based authentication (PR #47)
- Drop Python 2.7 support
- Add new
jira.get_issue_componentsaction - Add new
jira.get_issue_subtasksaction
- Add new action
link_issue. This allows linking issues together
- Support cookie-based authentication (PR #42)
- Remove cryptography, pyjwt, pyyaml requirements since we don't use them (PR #41)
- Add
validateoption to pack config to enable validating credentials before running any actions (PR #33) Special thanks to @guymatz for this contribution
- Minor linting change
- Add new
jira.add_field_valueaction
- Add new
jira.transition_issue_by_nameaction
- Updated PyYAML to 4.2b4 for CVE-2017-18342
- Add new
jira.assign_issuesaction
- Add new
jira.issues_tracker_for_apiv2sensor
- Version bump to fix tagging issue, no code changes
- Adding support for BASIC authentication
- Return custom fields in formatter
- Add new
jira.search_issuesaction
- Add new
jira.get_issue_commentsaction - Add new
jira.get_issue_attachmentsaction - Add new
include_commentsandinclude_attachmentsparameter tojira.get_issueaction which allows users to retrieve comments and attachments in a single call when retrieving issue details. For backward compatibility reasons, both arguments default toFalse.
- Added 'verify' option to disable SSL certificate verification
- Updated action
runner_typefromrun-pythontopython-script
- Rename
config.yamltoconfig.schema.yamland update to use schema.