microsoft / microsoft/aspire.dev
[What's New Analysis] Add missing Azure 13.1 features to existing docs
@DamianEdwards is already working on this.
Since Feb 9, 2026.
- Dominant language
- MDX
- Stars
- 193
- Forks
- 87
- Avg merge
- 1d 22h
- Merged PRs (30d)
- 73
Description
Summary
Several Azure features from Aspire 13.1 are documented in what's-new but NOT in their respective integration docs.
Missing Features
1. WithDeploymentSlot for App Service (13.1)
What's New says:
builder.AddAzureAppServiceEnvironment("appservice")
.WithDeploymentSlot("staging");
Current doc: azure-app-service-integration exists but does NOT mention WithDeploymentSlot.
Action: Add deployment slots section to azure-app-service-integration.
2. ClearDefaultRoleAssignments (13.1)
What's New says:
// Disable automatic role assignments on Azure resources
builder.AddAzureStorage("storage")
.ClearDefaultRoleAssignments();
Current doc: manage-azure-role-assignments covers WithRoleAssignments to override, but NOT ClearDefaultRoleAssignments to completely disable.
Action: Add section on clearing/disabling default roles to manage-azure-role-assignments.
3. Azure Managed Redis Rename (13.1)
Breaking change:
// Old (deprecated)
builder.AddAzureRedisEnterprise("cache");
// New
builder.AddAzureManagedRedis("cache");
Action: Verify azure-cache-for-redis-integration uses new API name.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.