Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added GraphQL.Client 1.0.0 #368

Merged
merged 8 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 24 additions & 4 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,30 @@
"listed": true,
"version": "3.8.0"
},
"GraphQL.Client": {
"listed": true,
"version": "1.0.0"
},
"GraphQL.Client.Abstractions": {
"listed": true,
"version": "2.0.0"
},
"GraphQL.Client.Abstractions.Websocket": {
"listed": true,
"version": "2.1.0"
},
"GraphQL.Client.Serializer.Newtonsoft": {
"listed": true,
"version": "3.1.9"
},
"GraphQL.Common": {
"listed": true,
"version": "1.0.0"
},
"GraphQL.Primitives": {
"listed": true,
"version": "2.0.0"
},
"Grpc.Core": {
"listed": true,
"version": "1.20.0"
Expand Down Expand Up @@ -1081,10 +1105,6 @@
"listed": true,
"version": "3.0.205"
},
"OneOf": {
"listed": true,
"version": "3.0.205"
},
"OpenSearch.Net": {
"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 @@ -146,7 +146,9 @@ public async Task Ensure_Min_Version_Is_Correct_Ignoring_Analyzers_And_Native_Li
// Versions < 1.3.1 has dependencies on PolySharp
@"Utf8StringInterpolation",
// Versions 2.0.0 has dependencies on Utf8StringInterpolation 1.3.0
@"ZLogger"
@"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"
};

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