Removed deprecated for now

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2023-11-17 11:45:56 -06:00
parent 6c178e1bf2
commit 64b2f1e9bf
2 changed files with 4 additions and 11 deletions
+2 -2
View File
@@ -2,6 +2,6 @@
'@backstage/plugin-azure-devops-backend': minor
---
**BREAKING** New `fromConfig` static method must be used now when created an instance of the `AzureDevOpsApi`
**BREAKING** New `fromConfig` static method must be used now when creating an instance of the `AzureDevOpsApi`
Added support for using the `AzureDevOpsCredentialsProvider` and deprecated the entire `azureDevOps` configuration section
Added support for using the `AzureDevOpsCredentialsProvider`
+2 -9
View File
@@ -15,28 +15,21 @@
*/
export interface Config {
/** Configuration options for the azure-devops-backend plugin
* @deprecated Use `integrations.azure` instead.
* @see https://backstage.io/docs/integrations/azure/locations
/**
* Configuration options for the azure-devops-backend plugin
*/
azureDevOps: {
/**
* The hostname of the given Azure instance
* @deprecated Use `integrations.azure` instead.
* @see https://backstage.io/docs/integrations/azure/locations
*/
host: string;
/**
* Token used to authenticate requests.
* @visibility secret
* @deprecated Use `integrations.azure` instead.
* @see https://backstage.io/docs/integrations/azure/locations
*/
token: string;
/**
* The organization of the given Azure instance
* @deprecated Use `integrations.azure` instead.
* @see https://backstage.io/docs/integrations/azure/locations
*/
organization: string;
};