Files
backstage/.changeset/eight-pears-attack.md
T
2022-10-20 14:26:19 -04:00

455 B

@backstage/plugin-catalog-backend-module-github
@backstage/plugin-catalog-backend-module-github
minor

BREAKING: Support authenticated backends by including a server token for catalog requests. The constructor of GithubLocationAnalyzer now requires an instance of TokenManager to be supplied:

...
  builder.addLocationAnalyzers(
    new GitHubLocationAnalyzer({
      discovery: env.discovery,
      config: env.config,
+     tokenManager: env.tokenManager,
    }),
  );
...