diff --git a/src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj b/src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj index 596274f68..f843032e4 100644 --- a/src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj +++ b/src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj @@ -21,11 +21,11 @@ false 35MSSharedLib1024.snk true - 3.1.4 + 3.1.5 -- Bumps abstraction dependencies to fix url encoding of special characters -- Bumps abstractions http dependencies to fix `ActicitySource` memory leak when the HttpClientRequestAdapter does not construct the HttpClient internally. +- Bumps JWT dependencies to sucurity vlunerability(https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/issues/792). +- Fixes ITokenValidable interface to use kiota generated types. true true @@ -58,9 +58,9 @@ - + - + diff --git a/src/Microsoft.Graph.Core/Models/ITokenValidable.cs b/src/Microsoft.Graph.Core/Models/ITokenValidable.cs index 8aca4e4cf..6543246b9 100644 --- a/src/Microsoft.Graph.Core/Models/ITokenValidable.cs +++ b/src/Microsoft.Graph.Core/Models/ITokenValidable.cs @@ -14,11 +14,11 @@ public interface ITokenValidable where T1 : IEncryptedContentBearer w /// /// The collection of validation tokens /// - IEnumerable ValidationTokens { get; set; } + List ValidationTokens { get; set; } /// /// The collection of encrypted token bearers /// - IEnumerable Value { get; set; } + List Value { get; set; } } } \ No newline at end of file