[ServiceFabricRemoting] Bump Service Fabric dependencies to 8.4.268 - #4510
Merged
Kielek merged 2 commits intoJun 16, 2026
Merged
Conversation
Raise the minimum required version of Microsoft.ServiceFabric.Actors and Microsoft.ServiceFabric.Services.Remoting from 7.1.2448 to 8.4.268, as the 7.1 Service Fabric runtime is going out of support. Add an explicit System.Fabric binding redirect to the test project's App.config so the ServiceFabric.Mocks-based state provider/manager tests type-load correctly on net462. With the 7.1 floor MSBuild auto-generated this redirect because of a version conflict; the 8.4 floor removes the conflict (and the redirect), so it must be declared explicitly.
Kielek
approved these changes
Jun 16, 2026
This was referenced Jun 16, 2026
This was referenced Jun 19, 2026
Closed
Merged
Closed
Merged
Merged
This was referenced Jul 30, 2026
Closed
Merged
Merged
Closed
Open
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.
Fixes #
Changes
Raises the minimum required version of
Microsoft.ServiceFabric.ActorsandMicrosoft.ServiceFabric.Services.Remotingfrom7.1.2448to8.4.268. TheService Fabric
7.1runtime is going out of support, so the library shouldfloor at a supported runtime version.
The library's remoting adapter surface (
IServiceRemotingClient,IServiceRemotingClientFactory,IServiceRemotingMessageDispatcher, etc.) isunchanged between 7.1 and 8.4 and recompiles cleanly.
Also adds an explicit
System.Fabricbinding redirect to the test project'sApp.config. With the old7.1floor, MSBuild auto-generated this redirect toresolve a version conflict between
ServiceFabric.Mocksand theMicrosoft.ServiceFabric.*packages. The8.4floor removes that conflict (andtherefore the auto-generated redirect), which exposed a latent
TypeLoadExceptionin theServiceFabric.Mocksstate provider/manager on thenet462target. Declaring the redirect explicitly makes the testsdeterministic regardless of the resolved package graph. The redirect is ignored
on the
net8.0/net9.0/net10.0targets.Validated: all four target frameworks (
net462,net8.0,net9.0,net10.0) build clean and pass 6/6 tests.Merge requirement checklist
CHANGELOG.mdfiles updated for non-trivial changes