diff --git a/Makefile b/Makefile index 662ff121..46d802ad 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/build/legacy.mk b/build/legacy.mk deleted file mode 100644 index 0c327339..00000000 --- a/build/legacy.mk +++ /dev/null @@ -1,3 +0,0 @@ -.PHONY: apply -apply: - @echo make apply is deprecated and has no effect. diff --git a/plugin.json b/plugin.json index eaad6130..267745df 100644 --- a/plugin.json +++ b/plugin.json @@ -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" @@ -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 } ] } diff --git a/server/plugin/manifest.go b/server/plugin/manifest.go index db977e8b..6756492f 100644 --- a/server/plugin/manifest.go +++ b/server/plugin/manifest.go @@ -7,5 +7,5 @@ var manifest = struct { Version string }{ ID: "mattermost-plugin-azure-devops", - Version: "3.1.1", + Version: "3.2.0", }