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
6 changes: 5 additions & 1 deletion .github/sdk-update-exclude.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"exclude": [
// SkiaSharp held at 3.119.2: 3.119.4 ships iOS-26.2 assets that break iOS <26.2 (Xcode <26.2)
// builds -> no native libSkiaSharp -> iOS apps fail. See unoplatform/uno#23680, unoplatform/uno.chefs#1750.
// Remove this exclude when SkiaSharp 3.119.5 ships (mono/SkiaSharp#3798) or on the v4 move at Uno.Sdk 7.0
// (backport status, not in our control: mono/SkiaSharp#4031).
"SkiaSharp",
"SvgSkia",
"WinAppSdk"
]
}

6 changes: 3 additions & 3 deletions src/Uno.Sdk/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The Uno.Sdk powers the Uno Platform Single Project, including the ability to imp
| UnoUniversalImageLoaderVersion | 1.9.37 |
| UnoDspTasksVersion | 1.4.0 |
| UnoResizetizerVersion | 1.13.0-dev.17 |
| SkiaSharpVersion | 3.119.4 |
| SkiaSharpVersion | 3.119.2 |
| SvgSkiaVersion | 3.0.6 |
| WinAppSdkVersion | 1.7.250909003 |
| WinAppSdkBuildToolsVersion | 10.0.28000.2270 |
Expand Down Expand Up @@ -142,14 +142,14 @@ The Uno.Sdk powers the Uno Platform Single Project, including the ability to imp
},
{
"group": "hotdesign",
"version": "1.20.0-dev.473",
"version": "1.20.0-dev.477",
"packages": [
"Uno.UI.HotDesign"
]
},
{
"group": "SkiaSharp",
"version": "3.119.4",
"version": "3.119.2",
"packages": [
"SkiaSharp.Skottie",
"SkiaSharp.Views.Uno.WinUI",
Expand Down
4 changes: 2 additions & 2 deletions src/Uno.Sdk/packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@
},
{
"group": "hotdesign",
"version": "1.20.0-dev.473",
"version": "1.20.0-dev.477",
"packages": [
"Uno.UI.HotDesign"
]
},
{
"group": "SkiaSharp",
"version": "3.119.4",
"version": "3.119.2",
"packages": [
"SkiaSharp.Skottie",
"SkiaSharp.Views.Uno.WinUI",
Expand Down
2 changes: 1 addition & 1 deletion tools/Uno.Sdk.Updater/Config/ExcludeConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private static HashSet<string> Load()
try
{
using var fs = File.OpenRead(path);
using var doc = System.Text.Json.JsonDocument.Parse(fs);
using var doc = System.Text.Json.JsonDocument.Parse(fs, new System.Text.Json.JsonDocumentOptions { CommentHandling = System.Text.Json.JsonCommentHandling.Skip, AllowTrailingCommas = true });
if (doc.RootElement.TryGetProperty("exclude", out var arr) &&
arr.ValueKind == System.Text.Json.JsonValueKind.Array)
{
Expand Down
Loading