Update foundationdb-dotnet-client NuGet Package to v7.3.2#1
Open
KrzysFR wants to merge 1 commit into
Open
Conversation
Owner
|
Yeah the tests are a bit squirelly because they rely on internals from the orleans code base. I've since decided not to use fdb for my solution because it just isn't the right fit for my current scale, but I appreciate the PR. |
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 PR updates the NuGet package for the FoundationDB .NET Client from v7.3.0-preview2 to v7.3.2
The latest version includes a renaming of some of the "core" namespaces (from
Doxense.*toSnowBank.*) though this repository only used the namespace for the "tuples" which was renamed fromDoxense.Collections.TuplestoSnowBank.Data.Tuples.The only source breaking change I found was that the
Last<T>()method on tuples has been renamed toGetLast<T>(), because it was colliding with theLastproperty name on some of the tuple types (and it could also be confused with the Last LINQ method).I had to upgrade some
Microsoft.*to fix some package downgrade errors in the Orleans.FoundationDb.Tests project.I am not sure how to run the test project though, so I am unable to check if there are any issues with the changes.