Skip to content

Commit

Permalink
GraphQL.Client.Serializer.SystemTextJson (#436)
Browse files Browse the repository at this point in the history
* Added GraphQL.Client.Serializer.SystemTextJson

* Update registry.json

* Excluded older versions because of Panic.StringUtils dependency which is not supported
  • Loading branch information
IvanMurzak authored Dec 9, 2024
1 parent 4dd4794 commit bbbd779
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,10 @@
"listed": true,
"version": "3.1.9"
},
"GraphQL.Client.Serializer.SystemTextJson": {
"listed": true,
"version": "3.1.9"
},
"GraphQL.Common": {
"listed": true,
"version": "1.0.0"
Expand Down
4 changes: 3 additions & 1 deletion src/UnityNuGet.Tests/RegistryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ public async Task Ensure_Min_Version_Is_Correct_Ignoring_Analyzers_And_Native_Li
// Versions 2.0.0 has dependencies on Utf8StringInterpolation 1.3.0
@"ZLogger",
// Version 3.1.8 has dependency on `Panic.StringUtils` which doesn't support .netstandard2.0 or 2.1. Rest of versions are fine.
@"GraphQL.Client.Serializer.Newtonsoft"
@"GraphQL.Client.Serializer.Newtonsoft",
// Version 3.1.8 has dependency on `Panic.StringUtils` which doesn't support .netstandard2.0 or 2.1. Rest of versions are fine.
@"GraphQL.Client.Serializer.SystemTextJson"
};

var excludedPackagesRegex = new Regex(@$"^{string.Join('|', excludedPackages)}$");
Expand Down

0 comments on commit bbbd779

Please sign in to comment.