From bfe28c6b8bef062938014d4433098e1d7a8394c6 Mon Sep 17 00:00:00 2001 From: blag Date: Tue, 14 Jul 2020 14:49:02 -0700 Subject: [PATCH 1/3] Fix st2.action.file_writen typo --- st2common/st2common/constants/triggers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st2common/st2common/constants/triggers.py b/st2common/st2common/constants/triggers.py index 90c94293e4..bc668e8879 100644 --- a/st2common/st2common/constants/triggers.py +++ b/st2common/st2common/constants/triggers.py @@ -67,7 +67,7 @@ } ACTION_FILE_WRITTEN_TRIGGER = { - 'name': 'st2.action.file_writen', + 'name': 'st2.action.file_written', 'pack': SYSTEM_PACK_NAME, 'description': 'Trigger encapsulating action file being written on disk.', 'payload_schema': { From 8337d6d46b19ca33977572dfbf5465b704927220 Mon Sep 17 00:00:00 2001 From: blag Date: Tue, 14 Jul 2020 14:53:25 -0700 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 80e0e6c280..647e4fcdc5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -33,6 +33,8 @@ Fixed up correctly, specifically when specifying a bastion host / jump box. (bug fix) #4973 Contributed by Nick Maludy (@nmaludy Encore Technologies) +* The built-in ``st2.action.file_writen`` trigger has been renamed to ``st2.action.file_written`` + to fix the typo (bug fix) #4992 Removed ~~~~~~~ From 6606e93fac41b4bbb26d8234438bb9ab4d45cf3a Mon Sep 17 00:00:00 2001 From: blag Date: Mon, 20 Jul 2020 17:03:11 -0700 Subject: [PATCH 3/3] Move changelog entry to Changed subsection --- CHANGELOG.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 574975ccdd..4601edd55f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -40,13 +40,17 @@ Fixed up correctly, specifically when specifying a bastion host / jump box. (bug fix) #4973 Contributed by Nick Maludy (@nmaludy Encore Technologies) -* The built-in ``st2.action.file_writen`` trigger has been renamed to ``st2.action.file_written`` - to fix the typo (bug fix) #4992 * Fixed a bug where a python3 sensor using ssl needs to be monkey patched earlier. See also #4832, #4975 and gevent/gevent#1016 (bug fix) #4976 Contributed by @punkrokk +Changed +~~~~~~~ + +* The built-in ``st2.action.file_writen`` trigger has been renamed to ``st2.action.file_written`` + to fix the typo (bug fix) #4992 + Removed ~~~~~~~