Version Packages

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
github-actions[bot]
2023-09-19 14:15:46 +00:00
committed by Patrik Oldsberg
parent 2aed4037b0
commit b228d7d9c2
657 changed files with 9248 additions and 2495 deletions
+33
View File
@@ -1,5 +1,38 @@
# @backstage/integration
## 1.7.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
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
- 2d2fc9d20ebb: Additional fix for Gitiles auth links
- cb2e19d82d95: Gitiles: Fixed auth prefix issue
- Updated dependencies
- @backstage/config@1.1.0
- @backstage/errors@1.2.2
## 1.7.0-next.3
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/integration",
"description": "Helpers for managing integrations towards external systems",
"version": "1.7.0-next.3",
"version": "1.7.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",