Skip to content

Commit

Permalink
Release v3.2.0 (#153)
Browse files Browse the repository at this point in the history
* Release v3.2.0

* Update plugin.json

* make apply

* remove duplicate legacy `make apply` target

* re-add make apply target
  • Loading branch information
mickmister authored Apr 12, 2023
1 parent c6f41cc commit d3dcd43
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ default: all

# Verify environment, and define PLUGIN_ID, PLUGIN_VERSION, HAS_SERVER and HAS_WEBAPP as needed.
include build/setup.mk
include build/legacy.mk

BUNDLE_NAME ?= $(PLUGIN_ID)-$(PLUGIN_VERSION).tar.gz

Expand Down
3 changes: 0 additions & 3 deletions build/legacy.mk

This file was deleted.

27 changes: 18 additions & 9 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@
"icon_path": "public/assets/azurebot.svg",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-azure-devops",
"support_url": "https://github.com/mattermost/mattermost-plugin-azure-devops/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-azure-devops/releases",
"version": "3.1.1",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-azure-devops/releases/3.2.0",
"version": "3.2.0",
"min_server_version": "5.37.3",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
Expand All @@ -28,25 +29,33 @@
"key": "azureDevopsAPIBaseURL",
"display_name": "Azure DevOps API base URL",
"type": "text",
"help_text": "Enter the base URL for Azure DevOps API"
"help_text": "Enter the base URL for Azure DevOps API",
"placeholder": "",
"default": null
},
{
"key": "azureDevopsOAuthAppID",
"display_name": "Azure DevOps OAuth App ID",
"type": "text",
"help_text": "Enter the app ID for the OAuth app registered with Azure DevOps"
"help_text": "Enter the app ID for the OAuth app registered with Azure DevOps",
"placeholder": "",
"default": null
},
{
"key": "azureDevopsOAuthClientSecret",
"display_name": "Azure DevOps OAuth Client Secret",
"type": "text",
"help_text": "Enter the client secret for the OAuth app registered with Azure DevOps."
"help_text": "Enter the client secret for the OAuth app registered with Azure DevOps.",
"placeholder": "",
"default": null
},
{
"key": "EncryptionSecret",
"display_name": "Encryption Secret:",
"type": "generated",
"help_text": "The secret key used to encrypt and decrypt the OAuth token.\nRegenerating the secret will require all users to re-connect their accounts to Azure DevOps."
"help_text": "The secret key used to encrypt and decrypt the OAuth token.\nRegenerating the secret will require all users to re-connect their accounts to Azure DevOps.",
"placeholder": "",
"default": null
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion server/plugin/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ var manifest = struct {
Version string
}{
ID: "mattermost-plugin-azure-devops",
Version: "3.1.1",
Version: "3.2.0",
}

0 comments on commit d3dcd43

Please sign in to comment.