Skip to content

Commit

Permalink
v2.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nzlosh committed Nov 27, 2021
1 parent b23b81d commit 706ea0d
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 7 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
### Changed
### Removed

## [2.2.0] 2021-11-27
### Added
- support for slackv3 backend and passing action-alias extra parameters as Slack block or attachment.
- documentation to use Slack blocks or attachments.
- tests for Python from 3.6 to 3.10

### Changed
- hard coded notification_route to use user configured route when calling match_and_execute.

### Removed
- logging sensitive api tokens in debug logs.
- "<action-alias>" for action execution help text.

## [2.1.4] 2020-08-14
### Added
- Session are deleted automatically when a chat user fails to authenticate against St2 API.
Expand Down
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright 2016-2021 Carlos <nzlosh@yahoo.com> and err-stackstorm contributors
Copyright 2015 葫芦娃 <fmnisme@gmail.com>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
# -- Project information -----------------------------------------------------

project = 'err-stackstorm'
copyright = '2019, err-stackstorm contributors'
copyright = '2019-2021, err-stackstorm contributors'
author = 'err-stackstorm contributors'

# The full version, including alpha/beta/rc tags
release = '2.1.4'
release = '2.2.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.3/semantic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-serialize-object/2.5.0/jquery.serialize-object.min.js"></script>
<script>
console.log("err-stackstorm v2.1.4")
console.log("err-stackstorm v2.2.0")
function get_uuid_from_querystring(){
uuid = undefined;
params = window.location.href.split("?");
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="err-stackstorm",
version="2.1.4",
version="2.2.0",
author="Err-StackStorm Plugin contributors",
author_email="nzlosh@yahoo.com",
description="An Errbot plugin for StackStorm ChatOps.",
Expand Down
2 changes: 1 addition & 1 deletion st2.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from lib.authentication_handler import AuthHandlerFactory, ClientSideAuthHandler

LOG = logging.getLogger("errbot.plugin.st2")
ERR_STACKSTORM_VERSION = "2.1.4"
ERR_STACKSTORM_VERSION = "2.2.0"


class St2(BotPlugin):
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "2.1.4"
"version": "2.2.0"
}

0 comments on commit 706ea0d

Please sign in to comment.