Version Packages (next)

This commit is contained in:
github-actions[bot]
2025-05-13 13:52:18 +00:00
parent 08438a179f
commit 1c0cb7be17
314 changed files with 4427 additions and 158 deletions
+33
View File
@@ -1,5 +1,38 @@
# @backstage/integration
## 1.17.0-next.3
### Minor Changes
- d945206: Added support for federated credentials using managed identities in the Azure DevOps integration. Federated credentials are only available for Azure DevOps organizations that have been configured to use Entra ID for authentication.
```diff
integrations:
azure:
- host: dev.azure.com
credentials:
+ - clientId: ${APP_REGISTRATION_CLIENT_ID}
+ managedIdentityClientId: system-assigned
+ tenantId: ${AZURE_TENANT_ID}
```
This also adds support for automatically using the system-assigned managed identity of an Azure resource by specifying `system-assigned` as the client ID of the managed identity.
```diff
integrations:
azure:
- host: dev.azure.com
credentials:
- - clientId: ${AZURE_CLIENT_ID}
+ - clientId: system-assigned
```
### Patch Changes
- Updated dependencies
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
## 1.17.0-next.2
### Minor Changes