Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"image": "mcr.microsoft.com/devcontainers/dotnet:dev-10.0-preview",
"image": "mcr.microsoft.com/devcontainers/dotnet:dev-10.0",
"name": "Microsoft MCP Codespace",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "20"
},
"ghcr.io/devcontainers/features/azure-cli:1": {},
"ghcr.io/devcontainers/features/powershell:1": {},
"ghcr.io/devcontainers/features/powershell:2.0.1": {},
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Every other feature in this file uses a major-version-only constraint (node:1, azure-cli:1, docker-in-docker:2, azd:0), and the feature's docs recommend powershell:2. Pinning to 2.0.1 prevents automatic patch/minor updates and breaks the pattern. Consider:

Suggested change
"ghcr.io/devcontainers/features/powershell:2.0.1": {},
"ghcr.io/devcontainers/features/powershell:2": {},

"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/azure/azure-dev/azd:0": {}
},
Expand Down