Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@

<PropertyGroup Label="Common dependency versions">
<MicrosoftIdentityModelVersion Condition="'$(MicrosoftIdentityModelVersion)' == ''">8.15.0</MicrosoftIdentityModelVersion>
<MicrosoftIdentityClientVersion Condition="'$(MicrosoftIdentityClientVersion)' == ''">4.79.2</MicrosoftIdentityClientVersion>
<MicrosoftIdentityClientVersion Condition="'$(MicrosoftIdentityClientVersion)' == ''">4.81.0</MicrosoftIdentityClientVersion>
<MicrosoftIdentityAbstractionsVersion Condition="'$(MicrosoftIdentityAbstractionsVersion)' == ''">10.0.0</MicrosoftIdentityAbstractionsVersion>
<FxCopAnalyzersVersion>3.3.0</FxCopAnalyzersVersion>
<SystemTextEncodingsWebVersion>4.7.2</SystemTextEncodingsWebVersion>
Expand Down
2 changes: 1 addition & 1 deletion tests/DevApps/aspnet-mvc/OwinWebApi/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Identity.Client" publicKeyToken="0A613F4DD989E8AE" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.79.2.0" newVersion="4.79.2.0"/>
<bindingRedirect oldVersion="0.0.0.0-4.81.0.0" newVersion="4.81.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Identity.Web.Diagnostics" publicKeyToken="0A613F4DD989E8AE" culture="neutral"/>
Expand Down
2 changes: 1 addition & 1 deletion tests/DevApps/aspnet-mvc/OwinWebApp/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Identity.Client" publicKeyToken="0A613F4DD989E8AE" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.79.2.0" newVersion="4.79.2.0"/>
<bindingRedirect oldVersion="0.0.0.0-4.81.0.0" newVersion="4.81.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Identity.Web.Diagnostics" publicKeyToken="0A613F4DD989E8AE" culture="neutral"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class FederatedIdentityCaeTests
private const string CaeClaims = @"{""access_token"":{""xms_cc"":{""values"":[""claims1""]}}}";
private const string UamiClientId = "04ca4d6a-c720-4ba1-aa06-f6634b73fe7a";

[Fact]
[Fact(Skip = "See https://github.com/AzureAD/microsoft-identity-web/issues/3669")]
public async Task ManagedIdentityWithFic_WithClaims_BypassesCache()
{
TokenAcquirerFactoryTesting.ResetTokenAcquirerFactoryInTest();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class ManagedIdentityTests

private sealed record VaultSecret(string Value);

[Fact]
[Fact(Skip = "See https://github.com/AzureAD/microsoft-identity-web/issues/3669")]
public async Task ManagedIdentity_ReturnsBearerHeader()
{
TokenAcquirerFactoryTesting.ResetTokenAcquirerFactoryInTest();
Expand Down Expand Up @@ -70,7 +70,7 @@ public async Task ManagedIdentity_ReturnsBearerHeader()
Assert.Equal($"Bearer {MockToken}", header);
}

[Fact]
[Fact(Skip = "See https://github.com/AzureAD/microsoft-identity-web/issues/3669")]
public async Task ManagedIdentity_WithClaims_HeaderBypassesCache()
{
// Arrange
Expand Down Expand Up @@ -120,7 +120,7 @@ public async Task ManagedIdentity_WithClaims_HeaderBypassesCache()
Assert.Equal("Bearer token2", header2);
}

[Fact]
[Fact(Skip = "See https://github.com/AzureAD/microsoft-identity-web/issues/3669")]
public async Task UserAssigned_MI_Caching_and_Claims()
{
// Arrange
Expand Down Expand Up @@ -172,7 +172,7 @@ public async Task UserAssigned_MI_Caching_and_Claims()
Assert.Equal("token-3", r4.AccessToken);
}

[Fact]
[Fact(Skip = "See https://github.com/AzureAD/microsoft-identity-web/issues/3669")]
public async Task SystemAssigned_MSI_Forwards_ClientCapabilities_InQuery()
{
// Arrange
Expand Down
Loading