diff --git a/.changeset/unlucky-clouds-build.md b/.changeset/unlucky-clouds-build.md index 6f7813a8e6..35aa277653 100644 --- a/.changeset/unlucky-clouds-build.md +++ b/.changeset/unlucky-clouds-build.md @@ -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` diff --git a/plugins/azure-devops-backend/config.d.ts b/plugins/azure-devops-backend/config.d.ts index c973a0595f..86fefeeef9 100644 --- a/plugins/azure-devops-backend/config.d.ts +++ b/plugins/azure-devops-backend/config.d.ts @@ -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; };