-
Notifications
You must be signed in to change notification settings - Fork 908
Making Node24 changes in the ContainerOperationProviderEnhanced.cs file #5419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
surajitshil-03
merged 7 commits into
master
from
users/surajitshil/Node24ChangesInContainerOperationProviderEnhanced
Dec 4, 2025
Merged
Making Node24 changes in the ContainerOperationProviderEnhanced.cs file #5419
surajitshil-03
merged 7 commits into
master
from
users/surajitshil/Node24ChangesInContainerOperationProviderEnhanced
Dec 4, 2025
Conversation
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
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
sanjuyadav24
approved these changes
Dec 4, 2025
MantavyaDh
reviewed
Dec 4, 2025
MantavyaDh
approved these changes
Dec 4, 2025
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
Author
|
/azp run |
|
Azure Pipelines successfully started running 1 pipeline(s). |
sanjuyadav24
approved these changes
Dec 4, 2025
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.
Context
Adding Node 24 support to the new file ContainerOperationProviderEnhanced.cs created in PR #5313. This enhancement mirrors the Node 24 fallback implementation from ContainerOperationProvider.cs to ensure both container operation providers support the latest Node.js runtime with graceful degradation.
Related work-item: AB#2339436
Description
This PR adds Node 24 support to ContainerOperationProviderEnhanced.cs with an automatic fallback chain (Node 24 → Node 20 → Node 16) for container job startup. The implementation includes:
Risk Assessment (Low / Medium / High)
Low
Unit Tests Added or Updated (Yes / No)
No
Additional Testing Performed
Manual testing performed.

https://dev.azure.com/surajitshil/Node-24-upgrade/_build/results?buildId=665&view=results
https://dev.azure.com/surajitshil/Node-24-upgrade/_build/results?buildId=691&view=results
Change Behind Feature Flag (Yes / No)
Yes
Knob Name: UseNode24ToStartContainer
Tech Design / Approach
To provide consistent functionality to both the Container files for node24 changes.
Documentation Changes Required (Yes/No)
No
Logging Added/Updated (Yes/No)
Yes
✅ Added debug log: "Using Node 24 for container startup."
✅ Added context-aware warning: "Cannot run Node 24 in container. Falling back to Node 20 for container startup."
✅ Added context-aware warning: "Cannot run Node 24 and Node 20 in container. Falling back to Node 16 for container startup."
✅ Added context-aware error: "Cannot run Node 24, Node 20, and Node 16 in container. Container startup failed."
Telemetry Added/Updated (Yes/No)
No
Rollback Scenario and Process (Yes/No)
Yes
Rollback Plan:
Dependency Impact Assessed and Regression Tested (Yes/No)
NA