File tree Expand file tree Collapse file tree 7 files changed +26
-7
lines changed
Expand file tree Collapse file tree 7 files changed +26
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ Unreleased]
8+ ### Added
9+ ### Changed
10+ ### Removed
11+
12+ ## [ 2.2.0] 2021-11-27
13+ ### Added
14+ - support for slackv3 backend and passing action-alias extra parameters as Slack block or attachment.
15+ - documentation to use Slack blocks or attachments.
16+ - tests for Python from 3.6 to 3.10
17+
18+ ### Changed
19+ - hard coded notification_route to use user configured route when calling match_and_execute.
20+
21+ ### Removed
22+ - logging sensitive api tokens in debug logs.
23+ - "<action-alias >" for action execution help text.
24+
725## [ 2.1.4] 2020-08-14
826### Added
927 - Session are deleted automatically when a chat user fails to authenticate against St2 API.
Original file line number Diff line number Diff line change 186186 same "printed page" as the copyright notice for easier
187187 identification within third-party archives.
188188
189- Copyright {yyyy} {name of copyright owner}
189+ Copyright 2016-2021 Carlos <nzlosh@yahoo.com> and err-stackstorm contributors
190+ Copyright 2015 葫芦娃 <fmnisme@gmail.com>
190191
191192 Licensed under the Apache License, Version 2.0 (the "License");
192193 you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change 1818# -- Project information -----------------------------------------------------
1919
2020project = 'err-stackstorm'
21- copyright = '2019, err-stackstorm contributors'
21+ copyright = '2019-2021 , err-stackstorm contributors'
2222author = 'err-stackstorm contributors'
2323
2424# The full version, including alpha/beta/rc tags
25- release = '2.1.4 '
25+ release = '2.2.0 '
2626
2727
2828# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 66 < script src ="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.3/semantic.min.js "> </ script >
77 < script src ="https://cdnjs.cloudflare.com/ajax/libs/jquery-serialize-object/2.5.0/jquery.serialize-object.min.js "> </ script >
88 < script >
9- console . log ( "err-stackstorm v2.1.4 " )
9+ console . log ( "err-stackstorm v2.2.0 " )
1010 function get_uuid_from_querystring ( ) {
1111 uuid = undefined ;
1212 params = window . location . href . split ( "?" ) ;
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = "err-stackstorm" ,
8- version = "2.1.4 " ,
8+ version = "2.2.0 " ,
99 author = "Err-StackStorm Plugin contributors" ,
1010 author_email = "nzlosh@yahoo.com" ,
1111 description = "An Errbot plugin for StackStorm ChatOps." ,
Original file line number Diff line number Diff line change 2222from lib .authentication_handler import AuthHandlerFactory , ClientSideAuthHandler
2323
2424LOG = logging .getLogger ("errbot.plugin.st2" )
25- ERR_STACKSTORM_VERSION = "2.1.4 "
25+ ERR_STACKSTORM_VERSION = "2.2.0 "
2626
2727
2828class St2 (BotPlugin ):
Original file line number Diff line number Diff line change 11{
2- "version" : " 2.1.4 "
2+ "version" : " 2.2.0 "
33}
You can’t perform that action at this time.
0 commit comments