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
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"dotnet-ef": {
"version": "11.0.0-rc.2.26429.111",
"version": "11.0.0-rc.2.26431.104",
"commands": [
"dotnet-ef"
]
Expand All @@ -27,7 +27,7 @@
]
},
"microsoft.dotnet.helix.jobmonitor": {
"version": "11.0.0-beta.26429.111",
"version": "11.0.0-beta.26431.104",
"commands": [
"dotnet-helix-job-monitor"
]
Expand Down
188 changes: 94 additions & 94 deletions eng/Version.Details.props

Large diffs are not rendered by default.

378 changes: 189 additions & 189 deletions eng/Version.Details.xml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"jdk": "latest"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26429.111",
"Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26429.111",
"Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26429.111",
"Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26431.104",
"Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.26431.104",
"Microsoft.DotNet.SharedFramework.Sdk": "11.0.0-beta.26431.104",
"Microsoft.Build.NoTargets": "3.7.134",
"Microsoft.Build.Traversal": "3.4.0",
"Microsoft.WixToolset.Sdk": "6.0.3-dotnet.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public override Task InitializeAsync()

[Theory]
[MemberData(nameof(InitializerTestData))]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/68856")]
public void InitializersRunsModernCallbacksByDefaultWhenPresent(bool streaming, bool webassembly, bool server, string[] expectedInvokedCallbacks)
{
var url = $"{ServerPathBase}/initializers?streaming={streaming}&wasm={webassembly}&server={server}";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
using Microsoft.AspNetCore.E2ETesting;
using Microsoft.AspNetCore.InternalTesting;
using OpenQA.Selenium;
using TestServer;
using Xunit.Abstractions;
Expand Down Expand Up @@ -108,6 +109,7 @@ public void CanColumnSortByDateOnly()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/68680")]
public void PaginatorCorrectItemsPerPage()
{
Navigate($"{ServerPathBase}/quickgrid-interactive");
Expand Down
2 changes: 2 additions & 0 deletions src/Components/test/E2ETest/Tests/VirtualizationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5796,6 +5796,7 @@ public void ScrollToItem_FixedHeight_LandsAtTop(bool useProvider)
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/68644")]
public void ScrollToItem_AfterEndJump_LandsAtTarget()
{
const int targetIndex = 200;
Expand Down Expand Up @@ -6302,6 +6303,7 @@ public void ScrollToItem_ExternalCancellation_TaskCancels()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/68777")]
public void ScrollToItem_UserScrollDuringProviderFetch_UserScrollWins()
{
// While the provider is fetching for ScrollToItemAsync, a real user scroll must win.
Expand Down
Loading