Update Azure Functions templates to version 2.0.2 and adjust README.md references#56
Merged
Update Azure Functions templates to version 2.0.2 and adjust README.md references#56
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request updates all Azure Functions devcontainer templates to version 2.0.2, adds support for Azure Functions CLI 4.7.0, updates default runtime versions for .NET and Node.js to their latest versions, and fixes the release workflow to ensure generated documentation references the correct branch name (master instead of main).
Changes:
- Bumped all five Azure Functions devcontainer templates (.NET, Java, Node.js, PowerShell, Python) from version 2.0.1 to 2.0.2
- Added Azure Functions CLI version 4.7.0 as a selectable option across all templates
- Updated default .NET runtime from 8.0 to 10.0 and Node.js runtime from 22 to 24
- Fixed release workflow to replace
blob/mainwithblob/masterin auto-generated README.md files
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/azure-functions-dotnet/devcontainer-template.json | Updated version to 2.0.2, changed default .NET version to 10.0, added CLI 4.7.0 |
| src/azure-functions-java/devcontainer-template.json | Updated version to 2.0.2, added Azure Functions CLI 4.7.0 |
| src/azure-functions-node/devcontainer-template.json | Updated version to 2.0.2, changed default Node.js version to 24, added CLI 4.7.0 |
| src/azure-functions-powershell/devcontainer-template.json | Updated version to 2.0.2, added Azure Functions CLI 4.7.0 |
| src/azure-functions-python/devcontainer-template.json | Updated version to 2.0.2, added Azure Functions CLI 4.7.0 |
| .github/workflows/release.yml | Added sed command to fix branch references in generated documentation |
| test/azure-functions-powershell/test.sh | Fixed whitespace formatting |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates all Azure Functions devcontainer templates to version 2.0.2, sets newer default runtime versions, and adds Azure Functions CLI version 4.7.0 as a selectable option. Additionally, the release workflow now ensures that generated documentation links reference the correct branch.
Devcontainer template updates:
2.0.2in all Azure Functions devcontainer templates:.NET,Java,Node.js,PowerShell, andPython. [1] [2] [3] [4] [5]4.7.0to the list of proposedazureFunctionsCliVersionoptions in all templates. [1] [2] [3] [4] [5]Default runtime updates:
10.0inazure-functions-dotnetand Node.js runtime version to24inazure-functions-node. [1] [2]Release workflow improvement:
blob/mainwithblob/masterin generatedREADME.mdfiles to ensure correct documentation links.