Skip to content

[net10.0] Merge main to net10 #28937

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 38 commits into from
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2cc5a76
fix for flaky tests (#28887)
anandhan-rajagopal Apr 9, 2025
43f90d0
Update Versions.props to 9.0.70 SR7 (#28900)
PureWeen Apr 10, 2025
037fd6c
Update bug-report.yml with latest public releases (#28922)
PureWeen Apr 10, 2025
a8e1c3d
Update dependencies from https://github.com/dotnet/xharness build 202…
dotnet-maestro[bot] Apr 11, 2025
358f7e7
fix (#28919)
bhavanesh2001 Apr 11, 2025
0ba6db5
Merge branch 'main' into merge-main-net10
rmarinho Apr 11, 2025
ff8cff2
[ai] Add release notes prompt (#28896)
rmarinho Apr 11, 2025
064b913
[ci] Produce nightly for inflight/current (#28940)
rmarinho Apr 12, 2025
4178da7
Update dependencies from https://github.com/dotnet/xharness build 202…
dotnet-maestro[bot] Apr 14, 2025
d6d8223
Stop iOS SetNeedsLayout propagation by looking at VisualElement compu…
albyrock87 Apr 14, 2025
ef1ec07
[Testing]Fix some Flaky UI tests that fails on android (#28956)
bhavanesh2001 Apr 14, 2025
8e875b7
[ci] Update arcade (#29000)
rmarinho Apr 15, 2025
b83b19c
[ci] Update sdk
rmarinho Apr 15, 2025
d6957f8
Merge main to net10.0
rmarinho Apr 15, 2025
a725374
Fix public api
rmarinho Apr 15, 2025
3314e14
Fixed Keyboard Scrolling in editors with Center or End VerticalTextAl…
NirmalKumarYuvaraj Mar 23, 2025
61991e6
[XC] better support for nullable props and BPs (#28550)
StephaneDelcroix Mar 23, 2025
4c09dd7
[iOS] Changing carousel view orientation with disabled loop - fix (#2…
kubaflo Mar 23, 2025
ef98fa4
Fixed ScrollView Orientation Neither issue (#27231)
Vignesh-SF3580 Mar 24, 2025
055d9ec
Fix HideSoftInputOnTapped Not Working Net9 (#28534)
SuthiYuvaraj Mar 24, 2025
99f3cc5
[Testing] Migration of Compatibility.Core platform-specific unit test…
anandhan-rajagopal Mar 26, 2025
d0c2ac6
Fix mistake in RadioButtonTests.Windows.cs
jsuarezruiz Mar 27, 2025
a9108aa
[Windows] Flyout Menu Icon disappears from Window Title Bar after Nav…
NirmalKumarYuvaraj Mar 28, 2025
559da79
[Android, iOS] Dynamically setting SearchHandler Query property does …
HarishwaranVijayakumar Mar 28, 2025
589fd52
[Catalyst] Fixed the CanMixGroups Set to False Still Allows Reorderin…
Ahamed-Ali Mar 30, 2025
7127454
[Android] Fix for SearchHandler Placeholder did not update when chang…
Tamilarasan-Paranthaman Apr 3, 2025
5b10625
[Testing] Migration of Compatibility.Core platform-specific unit test…
TamilarasanSF4853 Apr 3, 2025
2266e0d
Fixed Test case failure in PR 28486 (#28780)
Vignesh-SF3580 Apr 8, 2025
62b699e
Revert "Fix HideSoftInputOnTapped Not Working Net9 (#28534)" (#28802)
SuthiYuvaraj Apr 8, 2025
7e09fc7
Fixed testcase failures in PR28867. (#28889)
Vignesh-SF3580 Apr 10, 2025
767307c
[Testing] Feature Matrix UITest Cases for CollectionView Header/Foote…
LogishaSelvarajSF4525 Apr 14, 2025
fc724b0
Fixed Test case failure in PR 28867 (#28964)
Ahamed-Ali Apr 15, 2025
74fabd6
Fixed Test case failure in PR 28867 - MAC Screenshot (#29009)
PureWeen Apr 15, 2025
793db81
Avoid qualified name in x:Type binding for Blazor Hybrid template (#2…
BretJohnson Apr 15, 2025
87f8b92
[2025/04/11] Candidate - In Flight Branch (#28867)
PureWeen Apr 16, 2025
e9171db
Add retries and avoid Appium Doctor on Linux (#28845)
jsuarezruiz Apr 16, 2025
683bf06
Merge branch 'main' into merge-main-net10
rmarinho Apr 16, 2025
75d2cf2
Fix merge
rmarinho Apr 16, 2025
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
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ body:
label: Version with bug
description: In what version do you see this issue? Run `dotnet workload list` to find your version.
options:
- 10.0.0-preview.3
- 10.0.0-preview.2
- 10.0.0-preview.1
- 9.0.60 SR6
- 9.0.50 SR5
- 9.0.40 SR4
- 9.0.30 SR3
Expand Down Expand Up @@ -165,7 +168,10 @@ body:
- 9.0.30 SR3
- 9.0.40 SR4
- 9.0.50 SR5
- 9.0.60 SR6
- 10.0.0-preview.1
- 10.0.0-preview.2
- 10.0.0-preview.3
validations:
required: true
- type: dropdown
Expand Down
4 changes: 1 addition & 3 deletions src/Controls/tests/TestCases.HostApp/Issues/Issue10222.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ async void InitCV()

cv.ScrollTo(items.Count - 1);

//give the cv time to scroll
var rand = new Random();
await Task.Delay(rand.Next(10, 200));
await Task.Delay(200);

await Navigation.PopAsync(false);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,12 @@ public void DropEventCoordinates()
App.WaitForElement("Green");
App.DragAndDrop("Blue", "Green");

// Wait for all UI elements to confirm drag and drop operation completion
App.WaitForElement("DropRelativeLayout");
App.WaitForElement("DropRelativeScreen");
App.WaitForElement("DropRelativeLabel");
App.WaitForElement("DragStartRelativeScreen");

var dropRelativeToLayout = GetCoordinatesFromLabel(App.FindElement("DropRelativeLayout").GetText());
var dropRelativeToScreen = GetCoordinatesFromLabel(App.FindElement("DropRelativeScreen").GetText());
var dropRelativeToLabel = GetCoordinatesFromLabel(App.FindElement("DropRelativeLabel").GetText());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public void Issue10222Test()
{
App.WaitForElement("goTo");
App.Tap("goTo");
App.WaitForElement("items1");
App.WaitForElement("goTo");
App.WaitForElement("items1", timeout: TimeSpan.FromSeconds(1));
App.WaitForElement("goTo", timeout: TimeSpan.FromSeconds(2));
}
}
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ public void PaddingWithoutSafeArea()
Assert.That(zeroPadding, Is.EqualTo(1));
App.WaitForElement(ResetButton);
App.Tap(ResetButton);
App.WaitForElement(PaddingEntry);
App.EnterText(PaddingEntry, "100");
App.WaitForElement(PaddingTest);
App.Tap(PaddingTest);
Expand Down
Loading