Skip to content

Commit 706ea0d

Browse files
committed
v2.2.0 release
1 parent b23b81d commit 706ea0d

File tree

7 files changed

+26
-7
lines changed

7 files changed

+26
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and 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.

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@
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.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
# -- Project information -----------------------------------------------------
1919

2020
project = 'err-stackstorm'
21-
copyright = '2019, err-stackstorm contributors'
21+
copyright = '2019-2021, err-stackstorm contributors'
2222
author = '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 ---------------------------------------------------

html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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("?");

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.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.",

st2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from lib.authentication_handler import AuthHandlerFactory, ClientSideAuthHandler
2323

2424
LOG = logging.getLogger("errbot.plugin.st2")
25-
ERR_STACKSTORM_VERSION = "2.1.4"
25+
ERR_STACKSTORM_VERSION = "2.2.0"
2626

2727

2828
class St2(BotPlugin):

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "2.1.4"
2+
"version": "2.2.0"
33
}

0 commit comments

Comments
 (0)