Skip to content

Commit

Permalink
Release v1.2.0 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei authored Jan 15, 2021
1 parent 28531ee commit 70aee3f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 22 deletions.
51 changes: 30 additions & 21 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,46 @@
"description": "Send alert notifications from Amazon AWS CloudWatch to Mattermost channels via AWS SNS.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-aws-SNS",
"support_url": "https://github.com/mattermost/mattermost-plugin-aws-SNS/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-aws-SNS/releases/tag/v1.1.0",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-aws-SNS/releases/tag/v1.2.0",
"icon_path": "assets/icon.svg",
"version": "1.1.0",
"version": "1.2.0",
"min_server_version": "5.2.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"executable": ""
},
"settings_schema": {
"header": "This plugin is used to receive alert notifications from [Amazon AWS CloudWatch](https://aws.amazon.com/cloudwatch/) to Mattermost channels via AWS SNS.",
"footer": "",
"settings": [{
"key": "TeamChannel",
"display_name": "Channel to send notifications to:",
"type": "text",
"help_text": "The channel to send notifications to, specified in the format `teamname,channelname`. If the specified channel does not exist, the plugin will create the channel for you.\n \n Note: Must be the team and channel handle used in the URL. For example, in the following URL, set the value to `myteam,mychannel`: https://example.com/myteam/channels/mychannel."
},
{
"key": "AllowedUserIds",
"display_name": "Authorized User IDs:",
"type": "text",
"help_text": "List of users authorized to accept AWS SNS subscriptions to a Mattermost channel. Must be a comma-separated list of user IDs.\n \n Tip: Use the [mattermost user search](https://mattermost.com/pl/cli-mattermost-user-search) CLI command to determine a user ID."
},
{
"key": "Token",
"display_name": "Token:",
"type": "generated",
"help_text": "Generated token to validate incoming requests from AWS SNS."
}]
"settings": [
{
"key": "TeamChannel",
"display_name": "Channel to send notifications to:",
"type": "text",
"help_text": "The channel to send notifications to, specified in the format `teamname,channelname`. If the specified channel does not exist, the plugin will create the channel for you.\n \n Note: Must be the team and channel handle used in the URL. For example, in the following URL, set the value to `myteam,mychannel`: https://example.com/myteam/channels/mychannel.",
"placeholder": "",
"default": null
},
{
"key": "AllowedUserIds",
"display_name": "Authorized User IDs:",
"type": "text",
"help_text": "List of users authorized to accept AWS SNS subscriptions to a Mattermost channel. Must be a comma-separated list of user IDs.\n \n Tip: Use the [mattermost user search](https://mattermost.com/pl/cli-mattermost-user-search) CLI command to determine a user ID.",
"placeholder": "",
"default": null
},
{
"key": "Token",
"display_name": "Token:",
"type": "generated",
"help_text": "Generated token to validate incoming requests from AWS SNS.",
"placeholder": "",
"default": null
}
]
}
}
2 changes: 1 addition & 1 deletion server/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ var manifest = struct {
Version string
}{
ID: "com.mattermost.aws-sns",
Version: "1.1.0",
Version: "1.2.0",
}

0 comments on commit 70aee3f

Please sign in to comment.