Fix CVE-2025-6965 + .NET 10#74
Merged
Merged
Conversation
Packages have been updated & a warning in the tests has been resolved
I've upgraded to dotnet 10, maui is going to started the minimum version of controls on this track. Lots of warnings so will need to work through them
Everything has been updated to use source generated logging for better performance based on whether logging levels are enabled
.NET 10 knows the caller names of the arguments so doesn't need to have it passed, sweet as!
Updated to use this package since it has the fix for the vulnerability present in sqlite 2.X packages
I needed to pull in a sqlite ref instead of just referencing e. Sample is now .net 10
I've added a new editorconfig which consists of many rules I personally like to use. I have formatted the codebase entirely using this new config
I needed to setup the logging levels enabled since src generated log statements check it
When dealing with an IFormattable value, the ToString did not pass the current culture and would cause decimal formatting to be incorrect when moving between cultures with period and comma decimals. There is now a check for the value being formatted and the appropriate api used.
Looking sharp! Plus an extra reformat
Axemasta
force-pushed
the
chore/update-packages
branch
from
July 6, 2026 16:23
d0921ad to
9d175f1
Compare
|
Minimum allowed coverage is Generated by 🐒 cobertura-action against 9d175f1 |
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 library had a dependency on
sqlite-net-pclwhich in turn has a dependency on a vulnerable sqlite version. I've upgraded tosqlite-net-eandSourceGear.sqlite3which reference a newer sqlite version without the vulnerability. #73As part of this PR I've done alot of housekeeping: