Skip to content

Commit

Permalink
Merge pull request #949 from microsoftgraph/dependabot/nuget/src/Micr…
Browse files Browse the repository at this point in the history
…osoft.Graph.Core/kiota-dependencies-1bcb09706d

chore(deps): bump the kiota-dependencies group across 3 directories with 4 updates
  • Loading branch information
github-actions[bot] authored Jan 10, 2025
2 parents 4e4bb1a + 7223a11 commit ef4385b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
18 changes: 9 additions & 9 deletions src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.2.0" />
<PackageReference Include="Microsoft.IdentityModel.Validators" Version="8.2.0" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.3.0" />
<PackageReference Include="Microsoft.IdentityModel.Validators" Version="8.3.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.14.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.14.0" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.15.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.14.0" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.16.3" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.16.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.16.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.16.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.16.3" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.16.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.16.3" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="System.Reflection.Emit" Version="4.7.0">
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ public void Should_CreatePipeline_Without_HttpMessageHandlerInput()
using ParametersNameDecodingHandler odataQueryHandler = (ParametersNameDecodingHandler)redirectHandler.InnerHandler;
using UserAgentHandler userAgentHandler = (UserAgentHandler)odataQueryHandler.InnerHandler;
using HeadersInspectionHandler headersInspectionHandler = (HeadersInspectionHandler)userAgentHandler.InnerHandler;
using GraphTelemetryHandler telemetryHandler = (GraphTelemetryHandler)headersInspectionHandler.InnerHandler;
using BodyInspectionHandler bodyInspectionHandler = (BodyInspectionHandler)headersInspectionHandler.InnerHandler;
using GraphTelemetryHandler telemetryHandler = (GraphTelemetryHandler)bodyInspectionHandler.InnerHandler;
using MockRedirectHandler innerMost = (MockRedirectHandler)telemetryHandler.InnerHandler;

Assert.NotNull(telemetryHandler);
Expand Down Expand Up @@ -106,7 +107,8 @@ public void CreatePipelineWithHttpMessageHandlerInput()
using ParametersNameDecodingHandler odataQueryHandler = (ParametersNameDecodingHandler)redirectHandler.InnerHandler;
using UserAgentHandler userAgentHandler = (UserAgentHandler)odataQueryHandler.InnerHandler;
using HeadersInspectionHandler headersInspectionHandler = (HeadersInspectionHandler)userAgentHandler.InnerHandler;
using GraphTelemetryHandler telemetryHandler = (GraphTelemetryHandler)headersInspectionHandler.InnerHandler;
using BodyInspectionHandler bodyInspectionHandler = (BodyInspectionHandler)headersInspectionHandler.InnerHandler;
using GraphTelemetryHandler telemetryHandler = (GraphTelemetryHandler)bodyInspectionHandler.InnerHandler;
using MockRedirectHandler innerMost = (MockRedirectHandler)telemetryHandler.InnerHandler;

Assert.NotNull(telemetryHandler);
Expand Down

0 comments on commit ef4385b

Please sign in to comment.