Version Packages (next)

This commit is contained in:
github-actions[bot]
2023-08-22 11:37:48 +00:00
parent 20def974d5
commit f8c8e8de37
407 changed files with 6036 additions and 258 deletions
+31
View File
@@ -1,5 +1,36 @@
# @backstage/integration
## 1.7.0-next.0
### Minor Changes
- 5f1a92b9f19f: Added `AzureDevOpsCredentialsProvider` to support multiple Azure DevOps organizations and **deprecated** `AzureIntegrationConfig.credential` and `AzureIntegrationConfig.token` in favour of `AzureIntegrationConfig.credentials`. You can now use specific credentials for different Azure DevOps (Server) organizations by specifying the `organizations` field on a credential:
```yaml
integrations:
azure:
- host: dev.azure.com
credentials:
- organizations:
- my-org
- my-other-org
clientId: ${AZURE_CLIENT_ID}
clientSecret: ${AZURE_CLIENT_SECRET}
tenantId: ${AZURE_TENANT_ID}
- organizations:
- yet-another-org
personalAccessToken: ${PERSONAL_ACCESS_TOKEN}
```
See the [Azure integration documentation](https://backstage.io/docs/integrations/azure/locations) for more information.
### Patch Changes
- cb2e19d82d95: Gitiles: Fixed auth prefix issue
- Updated dependencies
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
## 1.6.0
### Minor Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration",
"description": "Helpers for managing integrations towards external systems",
"version": "1.6.0",
"version": "1.7.0-next.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",