Skip to content

Commit e04e7e1

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Bumps versions for Azure.Identity, Azure.Identity.Broker and Microsoft.Graph.Core
1 parent 58d438f commit e04e7e1

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<Import Project="$(MSBuildThisFileDirectory)..\..\..\Repo.props" />
33
<PropertyGroup>
44
<LangVersion>9.0</LangVersion>
5-
<TargetFrameworks>netstandard2.0;net6.0;net472</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;net472;net9.0</TargetFrameworks>
66
<RootNamespace>Microsoft.Graph.PowerShell.Authentication.Core</RootNamespace>
7-
<Version>2.18.0</Version>
7+
<Version>2.25.0</Version>
88
</PropertyGroup>
99
<PropertyGroup>
1010
<EnableNETAnalyzers>true</EnableNETAnalyzers>
1111
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
1212
</PropertyGroup>
1313
<ItemGroup>
14-
<PackageReference Include="Azure.Identity" Version="1.11.4" />
15-
<PackageReference Include="Azure.Identity.Broker" Version="1.1.0" />
16-
<PackageReference Include="Microsoft.Graph.Core" Version="3.1.13" />
14+
<PackageReference Include="Azure.Identity" Version="1.13.1" />
15+
<PackageReference Include="Azure.Identity.Broker" Version="1.2.0" />
16+
<PackageReference Include="Microsoft.Graph.Core" Version="3.2.3" />
1717
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1818
<PackageReference Include="System.Text.Json" Version="8.0.5" />
1919
</ItemGroup>

src/Authentication/Authentication.Core/Utilities/AuthenticationHelpers.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ public static async Task<AzureIdentityAccessTokenProvider> GetAuthenticationProv
207207
{
208208
if (authContext is null)
209209
throw new AuthenticationException(ErrorConstants.Message.MissingAuthContext);
210-
var tokenCrdential = await GetTokenCredentialAsync(authContext, default).ConfigureAwait(false);
211-
return new AzureIdentityAccessTokenProvider(credential: tokenCrdential, scopes: GetScopes(authContext));
210+
var tokenCredential = await GetTokenCredentialAsync(authContext, default).ConfigureAwait(false);
211+
return new AzureIdentityAccessTokenProvider(credential:tokenCredential, observabilityOptions: null,isCaeEnabled: true,scopes: GetScopes(authContext));
212212
}
213213

214214
public static async Task<IAuthContext> AuthenticateAsync(IAuthContext authContext, CancellationToken cancellationToken)

src/Authentication/Authentication/Helpers/HttpHelpers.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ private static HttpClient GetGraphHttpClient(AzureIdentityAccessTokenProvider au
5454
new NationalCloudHandler(),
5555
new ODataQueryOptionsHandler(),
5656
new HttpVersionHandler(),
57-
new CompressionHandler(),
5857
new RetryHandler(new RetryHandlerOption{
5958
Delay = requestContext.RetryDelay,
6059
MaxRetry = requestContext.MaxRetry,

src/Authentication/Authentication/build-module.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $ErrorActionPreference = 'Stop'
88
$ModuleName = "Authentication"
99
$ModulePrefix = "Microsoft.Graph"
1010
$netStandard = "netstandard2.0"
11-
$netApp = "net6.0"
11+
$netApp = "net9.0"
1212
$netFx = "net472"
1313
$copyExtensions = @('.dll', '.pdb')
1414

0 commit comments

Comments
 (0)