Upgrade scheduler to compatible version 0.23.0 to fix Dependabot CI failure #2648
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 PR fixes the failing CI in Dependabot PR #2466 by upgrading the
scheduler
package to the highest compatible version.Problem
The original Dependabot PR attempted to upgrade
scheduler
from 0.20.2 to 0.26.0, but this caused CI failures due to peer dependency conflicts. Multiple FluentUI components requirescheduler
to be within the range>=0.19.0 <=0.23.0
, making version 0.26.0 incompatible.Solution
scheduler
from 0.20.2 to 0.23.0 (resolves to 0.23.2)scheduler@0.23.0
consistentlyVerification
Verified that the following commands succeed (as per the original issue instructions):
npm install
- installs dependencies without peer dependency conflictsnpx prettier --check .
- passes CI formatting checksnpm run build
- builds successfullyThe upgrade accomplishes the same goal as the original Dependabot PR while passing all CI checks.
Fixes #2647.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.