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 @@ -85,6 +85,10 @@ Fixed
* Update ``st2 execution get`` command to always include ``context.user``, ``start_timestamp`` and
``end_timestamp`` attributes. (improvement) #4739

* Fixed ``core.sendmail`` base64 encoding of longer subject lines (bug fix) #4795

Contributed by @stevemuskiewicz and @guzzijones

3.1.0 - June 27, 2019
---------------------

Expand Down
2 changes: 1 addition & 1 deletion contrib/core/actions/send_mail/send_mail
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ if [[ -z $trimmed && $SEND_EMPTY_BODY -eq 1 ]] || [[ -n $trimmed ]]; then
cat <<EOF
TO: ${TO}
FROM: ${FROM}
SUBJECT: =?UTF-8?B?$(echo ${SUBJECT} | base64)?=
SUBJECT: =?UTF-8?B?$(echo ${SUBJECT} | base64 -w 0)?=
EOF

if [[ -n $ATTACHMENTS ]]; then
Expand Down
2 changes: 1 addition & 1 deletion contrib/core/pack.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name : core
description : Basic core actions.
version : 1.0.0
version : 1.0.1
python_versions:
- "2"
- "3"
Expand Down