diff --git a/registry.json b/registry.json index 3769dc0..d0253e8 100644 --- a/registry.json +++ b/registry.json @@ -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" @@ -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" diff --git a/src/UnityNuGet.Tests/RegistryTests.cs b/src/UnityNuGet.Tests/RegistryTests.cs index 2c6d71e..008d9e4 100644 --- a/src/UnityNuGet.Tests/RegistryTests.cs +++ b/src/UnityNuGet.Tests/RegistryTests.cs @@ -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)}$");