Skip to content

Commit

Permalink
Merge pull request #794 from microsoftgraph/dev
Browse files Browse the repository at this point in the history
Release 3.1.5
  • Loading branch information
andrueastman authored Jan 15, 2024
2 parents ee54a79 + 004ae52 commit 41defc3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<VersionPrefix>3.1.4</VersionPrefix>
<VersionPrefix>3.1.5</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageReleaseNotes>
- 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.
</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
Expand Down Expand Up @@ -58,9 +58,9 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Security.Claims" Version="4.3.0" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.0.3" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.2.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.7.4" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.7.5" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.1.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.1.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.1.1" />
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.Graph.Core/Models/ITokenValidable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ public interface ITokenValidable<T1,T2> where T1 : IEncryptedContentBearer<T2> w
/// <summary>
/// The collection of validation tokens
/// </summary>
IEnumerable<string> ValidationTokens { get; set; }
List<string> ValidationTokens { get; set; }

/// <summary>
/// The collection of encrypted token bearers
/// </summary>
IEnumerable<T1> Value { get; set; }
List<T1> Value { get; set; }
}
}

0 comments on commit 41defc3

Please sign in to comment.