Files
backstage/.changeset/shiny-lobsters-fix.md
T
Alisson Fabiano cb1cfc018b fix: update changeset docs
Signed-off-by: Alisson Fabiano <afabiano@eshopworld.com>
2022-08-22 10:38:22 +01:00

678 B

@backstage/plugin-azure-devops-backend
@backstage/plugin-azure-devops-backend
patch

createRouter now requires an additional reader: UrlReader argument

export default async function createPlugin(
  env: PluginEnvironment,
): Promise<Router> {
  return createRouter({
    logger: env.logger,
    config: env.config,
+   reader: env.reader,
  });
}

Remember to check if you have already provided these settings previously.

[Azure DevOps]

# app-config.yaml
azureDevOps:
  host: dev.azure.com
  token: my-token
  organization: my-company

[Azure Integrations]

# app-config.yaml
integrations:
  azure:
    - host: dev.azure.com
      token: ${AZURE_TOKEN}