5.7 KiB
@backstage/integration
0.4.0
Minor Changes
-
ffffea8e6: Update theGitLabIntegrationConfigto require the fieldsapiBaseUrlandbaseUrl. ThereadGitLabIntegrationConfigfunction is now more strict and has better error reporting. This change mirrors actual reality in code more properly - the fields are actually necessary for many parts of code to actually function, so they should no longer be optional.Some checks that used to happen deep inside code that consumed config, now happen upfront at startup. This means that you may encounter new errors at backend startup, if you had actual mistakes in config but didn't happen to exercise the code paths that actually would break. But for most users, no change will be necessary.
An example minimal GitLab config block that just adds a token to public GitLab would look similar to this:
integrations: gitlab: - host: gitlab.com token: $env: GITLAB_TOKENA full fledged config that points to a locally hosted GitLab could look like this:
integrations: gitlab: - host: gitlab.my-company.com apiBaseUrl: https://gitlab.my-company.com/api/v4 baseUrl: https://gitlab.my-company.com token: $env: OUR_GITLAB_TOKENIn this case, the only optional field is
baseUrlwhich is formed from thehostif needed.
0.3.2
Patch Changes
-
c4abcdb60: Fix GitLab handling of paths with spaces -
064c513e1: Properly forward errors that occur when looking up GitLab project IDs. -
3149bfe63: Add aresolveUrlmethod to integrations, that works like the two-argument URL constructor. The reason for using this is that Azure have their paths in a query parameter, rather than the pathname of the URL.The implementation is optional (when not present, the URL constructor is used), so this does not imply a breaking change.
-
2e62aea6f: #4322 Bitbucket own hosted v5.11.1 branchUrl fix and enabled error tracing… #4347
0.3.1
Patch Changes
6800da78d: Fix default branch API url for custom hosted Bitbucket server9dd057662: Upgrade git-url-parse to v11.4.4 which fixes parsing an Azure DevOps branch ref.
0.3.0
Minor Changes
-
ed6baab66: - Deprecating thescaffolder.${provider}.tokenauth duplication and favoringintegrations.${provider}instead. If you receive deprecation warnings your config should change like the following:scaffolder: github: token: $env: GITHUB_TOKEN visibility: publicTo something that looks like this:
integration: github: - host: github.com token: $env: GITHUB_TOKEN scaffolder: github: visibility: publicYou can also configure multiple different hosts under the
integrationconfig like the following:integration: github: - host: github.com token: $env: GITHUB_TOKEN - host: ghe.mycompany.com token: $env: GITHUB_ENTERPRISE_TOKENThis of course is the case for all the providers respectively.
-
Adding support for cross provider scaffolding, you can now create repositories in for example Bitbucket using a template residing in GitHub.
-
Fix GitLab scaffolding so that it returns a
catalogInfoUrlwhich automatically imports the project into the catalog. -
The
Store Pathfield on thescaffolderfrontend has now changed so that you require the full URL to the desired destination repository.
backstage/new-repositorywould becomehttps://github.com/backstage/new-repositoryif provider was GitHub for example. -
Patch Changes
-
0b135e7e0: Add support for GitHub Apps authentication for backend plugins.GithubCredentialsProviderrequests and caches GitHub credentials based on a repository or organization url.The
GithubCredentialsProviderclass should be considered stateful since tokens will be cached internally. Consecutive calls to get credentials will return the same token, tokens older than 50 minutes will be considered expired and reissued.GithubCredentialsProviderwill default to the configured access token if no GitHub Apps are configured.More information on how to create and configure a GitHub App to use with backstage can be found in the documentation.
Usage:
const credentialsProvider = new GithubCredentialsProvider(config); const { token, headers } = await credentialsProvider.getCredentials({ url: 'https://github.com/', });Updates
GithubUrlReaderto use theGithubCredentialsProvider. -
fa8ba330a: Fix GitLab API base URL and add it by default to the gitlab.com host
0.2.0
Minor Changes
466354aaa: Build out theScmIntegrationsclass, as well as the individual*Integrationclasses
0.1.5
Patch Changes
036a84373: Provide support for on-prem azure devops
0.1.4
Patch Changes
1d1c2860f: Implement readTree on BitBucketUrlReader and getBitbucketDownloadUrl4eafdec4a: Introduce readTree method for GitLab URL Reader178e09323: Validate that integration config contains a valid host
0.1.3
Patch Changes
38e24db00: Move the core url and auth logic to integration for the four major providersb8ecf6f48: Add the basics of cross-integration concerns- Updated dependencies [
e3bd9fc2f] - Updated dependencies [
e3bd9fc2f]- @backstage/config@0.1.2
0.1.2
Patch Changes
b3d4e4e57: Move the frontend visibility declarations of integrations config from @backstage/backend-common to @backstage/integration
0.1.1
Patch Changes
7b37e6834: Added the integration package