mobile
mobile copied to clipboard
[deps]: Update nuget minor
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
CommunityToolkit.Maui | 5.2.0 -> 5.3.0 |
||||
CommunityToolkit.Mvvm | 8.2.1 -> 8.2.2 |
||||
CsvHelper (source) | 30.0.1 -> 30.1.0 |
||||
Google.Apis.AndroidPublisher.v3 | 1.52.0.2350 -> 1.67.0.3339 |
||||
LiteDB (source) | 5.0.17 -> 5.0.19 |
||||
MessagePack (source) | 2.5.124 -> 2.5.140 |
||||
MessagePack.MSBuild.Tasks (source) | 2.5.124 -> 2.5.140 |
||||
SkiaSharp.Views.Maui.Controls (source) | 2.88.4-preview.84 -> 2.88.7 |
||||
SkiaSharp.Views.Maui.Controls.Compatibility (source) | 2.88.4-preview.84 -> 2.88.7 |
||||
Xamarin.AndroidX.Activity.Ktx (source) | 1.7.2.1 -> 1.8.2.1 |
||||
Xamarin.AndroidX.AutoFill (source) | 1.1.0.18 -> 1.1.0.22 |
||||
Xamarin.Firebase.Messaging (source) | 123.1.2.2 -> 123.3.1.1 |
||||
Xamarin.GooglePlayServices.SafetyNet (source) | 118.0.1.5 -> 118.0.1.8 |
||||
cake.tool (source) | 2.2.0 -> 2.3.0 |
Release Notes
CommunityToolkit/Maui (CommunityToolkit.Maui)
v5.3.0
: : BadgeCounter, Popups and AppTheme helpers!
This release is so full of great new stuff I almost don't know where to begin... Let's start with something else then, did you know that we have a Discord server now specifically for the .NET MAUI Community Toolkit? A great place to discuss how to get started with contributing, ask questions or just hang out! Join it today by clicking here (only valid for 30 days after this is posted).
Now, for this release... VERSION FIVE-THREE-OH 💥
Popups Now Better Than Ever!
Thanks to a great number of community contributions our Popups are now better than ever. Thank you so much @cat0363, @cucumber-sp and our very own @brminnick! We've fixed a number of bugs that have to do with sizing, positioning and propagating the BindingContext
to Popups, and also added a CloseAsync()
method to make closing the popup more reliable.
If you want to know all ins and outs of the Popup, check our documentation.
BadgeCounter
With our brand new BadgeCounter API it's now easier than ever to show a notification count on your app icon. You know the little red bubble over app icons on the device home screen? You can now set that value yourself, from your app with one line of code. 🤯
@VladislavAntonyuk did an amazing job once again. Read all about the implementation of this functionality on his blog or check out our official documentation on how to use it with .NET MAUI Community Toolkit.
AppThemeColor, AppThemeObject and AppThemeResource
These new APIs are great little helpers for when you support dark theme in your .NET MAUI apps. In .NET MAUI you have the AppThemeBinding
which is already great, but with this you can now make your XAML less verbose and reuse your app theme aware resources through styles and resource dictionaries.
As always, find the details in our documentation and let us know how you like it!
Thank you @dansiegel for the initial work on the .NET MAUI repo!
All the details
- 1207 UniformItemsLayout NoItems crash by @VladislavAntonyuk in https://github.com/CommunityToolkit/Maui/pull/1220
- Update PopupExtensions.shared.cs by @cat0363 in https://github.com/CommunityToolkit/Maui/pull/1229
- Fix Issue #1160 by @cat0363 in https://github.com/CommunityToolkit/Maui/pull/1234
- Fix Issue #1193 by @cat0363 in https://github.com/CommunityToolkit/Maui/pull/1248
- Fix Issue #1238 by @cat0363 in https://github.com/CommunityToolkit/Maui/pull/1249
- Fix Android DrawingView background image color by @VladislavAntonyuk in https://github.com/CommunityToolkit/Maui/pull/1251
- Call InvalidateMeasure on DockLayout when properties change affecting layout by @BretJohnson in https://github.com/CommunityToolkit/Maui/pull/1258
- Remove
VerticalStackLayout
fromStateContainerController
by @brminnick in https://github.com/CommunityToolkit/Maui/pull/1262 - Fix Issue #1256 by @cucumber-sp in https://github.com/CommunityToolkit/Maui/pull/1267
- Bugfix: Windows IconColorTintEffect HeightRequest by @kperdlich in https://github.com/CommunityToolkit/Maui/pull/1271
- Snackbar and Toast messages are omitted when length is equal to display width on iOS by @cat0363 in https://github.com/CommunityToolkit/Maui/pull/1281
- Add
Popup.CloseAsync()
by @brminnick in https://github.com/CommunityToolkit/Maui/pull/1223 - BadgeCounter #807 by @VladislavAntonyuk in https://github.com/CommunityToolkit/Maui/pull/1126
- Implement AppThemeColor, AppThemeObject, and AppThemeResource by @jfversluis in https://github.com/CommunityToolkit/Maui/pull/1264
- Update ValueConverterExtension to allow for comparison of Nullable types to corresponding underlying types by @BruceTheBrick in https://github.com/CommunityToolkit/Maui/pull/1307
- Add routing of BindingContext of Popup by @cat0363 in https://github.com/CommunityToolkit/Maui/pull/1309
- Fix display position and size of Popup by @cat0363 in https://github.com/CommunityToolkit/Maui/pull/1320
Humpty-Bumpty 🐫 & Other Housekeeping
- Bump CommunityToolkit.Maui.Markup from 3.1.0 to 3.2.0 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1204
- Bump Microsoft.NET.Test.Sdk from 17.6.0 to 17.6.1 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1217
- Bump Microsoft.NET.Test.Sdk from 17.6.1 to 17.6.2 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1226
- Bump Microsoft.Extensions.Http.Polly from 7.0.5 to 7.0.7 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1242
- Bump NuGet.Protocol from 6.6.0 to 6.6.1 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1244
- [Sample App] Add Button to Expander Sample by @brminnick in https://github.com/CommunityToolkit/Maui/pull/1228
- 1134 Update samples by @VladislavAntonyuk in https://github.com/CommunityToolkit/Maui/pull/1219
- Bump Microsoft.Extensions.Http.Polly from 7.0.7 to 7.0.8 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1263
- [housekeeping] Automated PR to fix formatting errors by @github-actions in https://github.com/CommunityToolkit/Maui/pull/1265
- Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1270
- Bump CommunityToolkit.Mvvm from 8.2.0 to 8.2.1 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1285
- Bump xunit.runner.visualstudio from 2.4.5 to 2.5.0 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1287
- Bump xunit from 2.4.2 to 2.5.0 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1286
- [Sample App] Update Popup Namespaces in Sample App by @brminnick in https://github.com/CommunityToolkit/Maui/pull/1241
- [housekeeping] Automated PR to fix formatting errors by @github-actions in https://github.com/CommunityToolkit/Maui/pull/1305
- [housekeeping] Automated PR to fix formatting errors by @github-actions in https://github.com/CommunityToolkit/Maui/pull/1290
- Bump Microsoft.Extensions.Http.Polly from 7.0.8 to 7.0.9 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1292
- ♻️ Replaced all Debug.WriteLine for Trace.WriteLine by @pictos in https://github.com/CommunityToolkit/Maui/pull/1311
- [housekeeping] Automated PR to fix formatting errors by @github-actions in https://github.com/CommunityToolkit/Maui/pull/1319
- Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.0 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1322
- Bump Microsoft.Extensions.Http.Polly from 7.0.9 to 7.0.10 in /samples by @dependabot in https://github.com/CommunityToolkit/Maui/pull/1323
New Contributors
A very, very big thank you to all of our contributors new and existing, we could not do this without you 👏 virtual stroopwafels for all of you!
- @cat0363 made their first contribution in https://github.com/CommunityToolkit/Maui/pull/1229
- @BretJohnson made their first contribution in https://github.com/CommunityToolkit/Maui/pull/1258
- @cucumber-sp made their first contribution in https://github.com/CommunityToolkit/Maui/pull/1267
- @BruceTheBrick made their first contribution in https://github.com/CommunityToolkit/Maui/pull/1307
- @niksedk made their first contribution in https://github.com/CommunityToolkit/Maui/pull/1314
Full Changelog: https://github.com/CommunityToolkit/Maui/compare/5.2.0...5.3.0
CommunityToolkit/dotnet (CommunityToolkit.Mvvm)
v8.2.2
: 8.2.2
What's Changed 🆕
- Fix forwarding enum values with negative values in attributes by @Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/736
- Add analyzer for [field: ObservableProperty] uses from auto-properties by @Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/735
- Fix minor typos in comments. by @Treit in https://github.com/CommunityToolkit/dotnet/pull/759
New Contributors
- @Treit made their first contribution in https://github.com/CommunityToolkit/dotnet/pull/759
Full Changelog: https://github.com/CommunityToolkit/dotnet/compare/v8.2.1...v8.2.2
mbdavid/LiteDB (LiteDB)
v5.0.19
What's Changed
- Detect infinite loops in document or index node loops
- Switch to using PackageLicenseExpression by @lahma in https://github.com/mbdavid/LiteDB/pull/2423
- Add LiteDb.Migration to readme by @JKamsker in https://github.com/mbdavid/LiteDB/pull/2429
- Fix issue: Id is null when anon. type is de/-serialized by @JKamsker in https://github.com/mbdavid/LiteDB/pull/2433
New Contributors
- @lahma made their first contribution in https://github.com/mbdavid/LiteDB/pull/2423
- @JKamsker made their first contribution in https://github.com/mbdavid/LiteDB/pull/2429
Full Changelog: https://github.com/mbdavid/LiteDB/compare/v5.0.18...v5.0.19
v5.0.18
What's New
- Added "AutoRebuild" option in Connection String
In this version, the Rebuild command has been completely redesigned to be able to recover a full or partial database in case of data corruption. When detecting a structural error (known as the ENSURE exception) the data file will be modified to indicate that this file may be corrupt. When reopening the database, a rebuild process can be performed recovering as much data as possible. Use the "auto-rebuild=true" option in the connection string to activate this functionality. Possible errors found during the rebuild process will be stored in a new collection called "_rebuild_errors". A backup of the original file is created with the "-backup" suffix
What's Changed
- Fixed left side IndexNode pointer to tail
- Added
readonly
to fields whose values are never modified or used asref
arguments by @Lehonti in https://github.com/mbdavid/LiteDB/pull/2352 - Clarify LiteDB.FSharp version support by @TeaDrivenDev in https://github.com/mbdavid/LiteDB/pull/2389
- Bugfix for https://github.com/mbdavid/LiteDB/issues/2385 Also adds full record support by fixing this bug. by @athendrix in https://github.com/mbdavid/LiteDB/pull/2384
- ResolveMember Extension by @pjy612 in https://github.com/mbdavid/LiteDB/pull/2236
- Fix Rebuild so that it truncates the database file correctly by @hizume in https://github.com/mbdavid/LiteDB/pull/2413
- Fix all kind of typos by @ltetak in https://github.com/mbdavid/LiteDB/pull/2410
- Simplified DiskWriterQueue with blocking concurrency by @ltetak in https://github.com/mbdavid/LiteDB/pull/2411
- Disk problems by @ltetak in https://github.com/mbdavid/LiteDB/pull/2412
- chore: throw exception when encounter unpaired surrogate instead of replace with U+FFFD by @anatawa12 in https://github.com/mbdavid/LiteDB/pull/2415
- New updates from master by @mbdavid in https://github.com/mbdavid/LiteDB/pull/2420
- v5.0.18 by @mbdavid in https://github.com/mbdavid/LiteDB/pull/2425
New Contributors
- @Lehonti made their first contribution in https://github.com/mbdavid/LiteDB/pull/2352
- @TeaDrivenDev made their first contribution in https://github.com/mbdavid/LiteDB/pull/2389
- @athendrix made their first contribution in https://github.com/mbdavid/LiteDB/pull/2384
- @hizume made their first contribution in https://github.com/mbdavid/LiteDB/pull/2413
- @ltetak made their first contribution in https://github.com/mbdavid/LiteDB/pull/2410
- @anatawa12 made their first contribution in https://github.com/mbdavid/LiteDB/pull/2415
Full Changelog: https://github.com/mbdavid/LiteDB/compare/v5.0.17...v5.0.18
MessagePack-CSharp/MessagePack-CSharp (MessagePack)
v2.5.140
What's Changed
- Fix releases links in README text by @KonH in https://github.com/MessagePack-CSharp/MessagePack-CSharp/pull/1688
- Better constrain dictionary detection by @AArnott in https://github.com/MessagePack-CSharp/MessagePack-CSharp/pull/1687
- Create FUNDING.yml by @AArnott in https://github.com/MessagePack-CSharp/MessagePack-CSharp/pull/1693
- Workaround mono runtime bug by @AArnott in https://github.com/MessagePack-CSharp/MessagePack-CSharp/pull/1696
- Add MESSAGEPACK_FORCE_AOT preprocessor directive by @brwhelan-msft in https://github.com/MessagePack-CSharp/MessagePack-CSharp/pull/1701
New Contributors
- @brwhelan-msft made their first contribution in https://github.com/MessagePack-CSharp/MessagePack-CSharp/pull/1701
Full Changelog: https://github.com/MessagePack-CSharp/MessagePack-CSharp/compare/v2.5.129...v2.5.140
v2.5.129
What's Changed
- Remove
long
toint
truncation of stream position by @AArnott in https://github.com/MessagePack-CSharp/MessagePack-CSharp/pull/1685
Full Changelog: https://github.com/MessagePack-CSharp/MessagePack-CSharp/compare/v2.5.124...v2.5.129
mono/SkiaSharp (SkiaSharp.Views.Maui.Controls)
v2.88.7
: Version 2.88.7
What's Changed
- Install missing Tizen packages after image update by @mattleibow in https://github.com/mono/SkiaSharp/pull/2693
- Add the new APIScan to the pipeline by @mattleibow in https://github.com/mono/SkiaSharp/pull/2694
- Only run the full compliance nightly by @mattleibow in https://github.com/mono/SkiaSharp/pull/2701
- [release/2.x] Revert the libjpeg-turbo update and roll back to 2.1.5.1 by @mattleibow in https://github.com/mono/SkiaSharp/pull/2702
Full Changelog: https://github.com/mono/SkiaSharp/compare/v2.88.6...v2.88.7
v2.88.6
: Version 2.88.6
What's Changed
- [release/2.x] Update libjpeg-turbo to 3.0.0 by @mattleibow in https://github.com/mono/SkiaSharp/pull/2581
- [release/2.x] libjpeg is not used by @github-actions in https://github.com/mono/SkiaSharp/pull/2589
- [release/2.x] Remove the unused arm64e architecture by @github-actions in https://github.com/mono/SkiaSharp/pull/2590
- [release/2.x] Update harfbuzz to 7.3.0 by @mattleibow in https://github.com/mono/SkiaSharp/pull/2577
- [release/2.x] Re-generate all the changelogs by @github-actions in https://github.com/mono/SkiaSharp/pull/2593
- [release/2.x] fix: Restore nosimd builds for edge enhanced security and safari by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2618
- [release/2.x] Update webp to 1.3.2 by @mattleibow in https://github.com/mono/SkiaSharp/pull/2623
Full Changelog: https://github.com/mono/SkiaSharp/compare/v2.88.5...v2.88.6
v2.88.5
: Version 2.88.5
What's Changed
- [release/2.x] fix(uno): Ensure that the canvas' context is active when rendering by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2560
- [release/2.x] fix(skxamlcanvas): [Wasm] Don't fail when the canvas can't be found by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2564
- [release/2.x] Floor outwards when converting to SKRectI by @mattleibow in https://github.com/mono/SkiaSharp/pull/2574
Full Changelog: https://github.com/mono/SkiaSharp/compare/v2.88.4...v2.88.5
v2.88.4
: Version 2.88.4
What's Changed
- Removing all .NET 5 SDK requirements by @mattleibow in https://github.com/mono/SkiaSharp/pull/2266
- Force an older version of the Windows SDK by @mattleibow in https://github.com/mono/SkiaSharp/pull/2273
- Update Windows App SDK by @mattleibow in https://github.com/mono/SkiaSharp/pull/2276
- feat(wasm): Add mt and mt+simd, fix harfbuzz for emsdk 3.1.12 by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2286
- Use the latest versions of some NuGets and SDKs by @mattleibow in https://github.com/mono/SkiaSharp/pull/2301
- Enable CodeQL by @Redth in https://github.com/mono/SkiaSharp/pull/2303
- Update some more NuGets by @mattleibow in https://github.com/mono/SkiaSharp/pull/2304
- [Tizen] Fixes Canvas Size calculation by @myroot in https://github.com/mono/SkiaSharp/pull/2322
- [ci] Add exclusions for PoliCheck and CredScan by @pjcollins in https://github.com/mono/SkiaSharp/pull/2389
- [ci] Use default feed to install the .NET SDK by @pjcollins in https://github.com/mono/SkiaSharp/pull/2393
- Set Uno iOS SKSwapChainPanel to non-opaque for consistency by @roubachof in https://github.com/mono/SkiaSharp/pull/2401
- Update SKSwapChainPanel.Android.cs by @roubachof in https://github.com/mono/SkiaSharp/pull/2400
- [Uno] Default Opaque to false for SKXamlCanvas on MacOS and iOS by @roubachof in https://github.com/mono/SkiaSharp/pull/2398
- Use the correct method for setting Opaque on macOS by @mattleibow in https://github.com/mono/SkiaSharp/pull/2477
- Switch to Debian archives by @mattleibow in https://github.com/mono/SkiaSharp/pull/2476
- Use the new XHarness .NET tool and latest .NET 6 MAUI by @mattleibow in https://github.com/mono/SkiaSharp/pull/2478
- Add
$schema
tocgmanifest.json
by @JamieMagee in https://github.com/mono/SkiaSharp/pull/2232 - Skip updating GitHub status when no token is available by @mattleibow in https://github.com/mono/SkiaSharp/pull/2479
- Add a manual, full-run pipeline by @mattleibow in https://github.com/mono/SkiaSharp/pull/2480
- Ship the .aar with the NuGet for android by @dellis1972 in https://github.com/mono/SkiaSharp/pull/2465
- Update Cake files to override deployment targets by @mattleibow in https://github.com/mono/SkiaSharp/pull/2482
- Update zlib to 1.2.13 by @mattleibow in https://github.com/mono/SkiaSharp/pull/2484
- Install a specific Tizen version by @mattleibow in https://github.com/mono/SkiaSharp/pull/2486
- Install .NET 7 by @mattleibow in https://github.com/mono/SkiaSharp/pull/2485
- chore: Add support for .NET 8 Preview 4 by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2457
- [Android] Additional check to avoid ObjectDisposedException by @FoggyFinder in https://github.com/mono/SkiaSharp/pull/2313
- Fix SKCanvasView dispose exception when the view is disposed before it's rendered by @jjzhang12 in https://github.com/mono/SkiaSharp/pull/2472
- Update bitmap SKAlphaType in SKXamlCanvas.Wasm.cs by @roubachof in https://github.com/mono/SkiaSharp/pull/2443
- Use the new DownloadBuildArtifacts task by @mattleibow in https://github.com/mono/SkiaSharp/pull/2489
- Update a few dependencies by @mattleibow in https://github.com/mono/SkiaSharp/pull/2487
- Run cve-bin-tool by @mattleibow in https://github.com/mono/SkiaSharp/pull/2490
- Update macOS and Xcode by @mattleibow in https://github.com/mono/SkiaSharp/pull/2425
- Add a .NET iOS & Mac Catalyst sample and .NET "Core" sample support by @mattleibow in https://github.com/mono/SkiaSharp/pull/2491
- Support for ARM64 macOS Machines by @mattleibow in https://github.com/mono/SkiaSharp/pull/2468
- Improve performance of hex string parsing in SKColor by @jwikberg in https://github.com/mono/SkiaSharp/pull/2467
- fix(wasm): Enable Wasm EH and SIMD in all configurations for net8+ by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2495
- Include the new WASM assets in Blazor for .NET 8 by @mattleibow in https://github.com/mono/SkiaSharp/pull/2497
- Update Cake to the latest 2.x version by @mattleibow in https://github.com/mono/SkiaSharp/pull/2500
- Pack the iossimulator RID artifacts by @mattleibow in https://github.com/mono/SkiaSharp/pull/2498
- Fixed ToRect extension method extension by @niza93 in https://github.com/mono/SkiaSharp/pull/2392
- feat: Move to JSImport for WinUI Target on net7.0 by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2428
- fix: Adjust net7.0-* resolution for Uno.WinUI targets by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2503
- Update libpng to v1.6.40 and libexpat to 2.5.0+more by @mattleibow in https://github.com/mono/SkiaSharp/pull/2510
- fix: Disambiguate SKGLView for uno and maui targets by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2529
- Removing nesting levels through block-scoped
using
statement by @Lehonti in https://github.com/mono/SkiaSharp/pull/2528 - Fix CI by @mattleibow in https://github.com/mono/SkiaSharp/pull/2554
- Include the NativeReference for Hot Restart by @mattleibow in https://github.com/mono/SkiaSharp/pull/2553
- [release/2.x] Try and follow more dotnet versions by @github-actions in https://github.com/mono/SkiaSharp/pull/2557
New Contributors
- @Redth made their first contribution in https://github.com/mono/SkiaSharp/pull/2303
- @pjcollins made their first contribution in https://github.com/mono/SkiaSharp/pull/2389
- @roubachof made their first contribution in https://github.com/mono/SkiaSharp/pull/2401
- @JamieMagee made their first contribution in https://github.com/mono/SkiaSharp/pull/2232
- @dellis1972 made their first contribution in https://github.com/mono/SkiaSharp/pull/2465
- @FoggyFinder made their first contribution in https://github.com/mono/SkiaSharp/pull/2313
- @jjzhang12 made their first contribution in https://github.com/mono/SkiaSharp/pull/2472
- @jwikberg made their first contribution in https://github.com/mono/SkiaSharp/pull/2467
- @niza93 made their first contribution in https://github.com/mono/SkiaSharp/pull/2392
- @Lehonti made their first contribution in https://github.com/mono/SkiaSharp/pull/2528
Full Changelog: https://github.com/mono/SkiaSharp/compare/v2.88.3...v2.88.4
v2.88.4-preview.96
: Version 2.88.4 (Preview Build 96)
What's Changed
- [release/2.x] Try and follow more dotnet versions by @github-actions in https://github.com/mono/SkiaSharp/pull/2557
Full Changelog: https://github.com/mono/SkiaSharp/compare/v2.88.4-preview.95...v2.88.4-preview.96
v2.88.4-preview.95
: Version 2.88.4 (Preview Build 95)
What's Changed
- Update libpng to v1.6.40 and libexpat to 2.5.0+more by @mattleibow in https://github.com/mono/SkiaSharp/pull/2510
- fix: Disambiguate SKGLView for uno and maui targets by @jeromelaban in https://github.com/mono/SkiaSharp/pull/2529
- Removing nesting levels through block-scoped
using
statement by @Lehonti in https://github.com/mono/SkiaSharp/pull/2528 - Fix CI by @mattleibow in https://github.com/mono/SkiaSharp/pull/2554
- Include the NativeReference for Hot Restart by @mattleibow in https://github.com/mono/SkiaSharp/pull/2553
New Contributors
- @Lehonti made their first contribution in https://github.com/mono/SkiaSharp/pull/2528
Full Changelog: https://github.com/mono/SkiaSharp/compare/v2.88.4-preview.82...v2.88.4-preview.95
cake-build/cake (cake.tool)
v2.3.0
- 3947 Easier Way to Read Process Output?.
- 3916 GitVersion: Add ShortSha property.
- 3487 Add alias for dotnet workload update command.
- 3486 Add alias for dotnet workload uninstall command.
- 3484 Add alias for dotnet workload restore command.
- 3483 Add alias for dotnet workload repair command.
- 3482 Add alias for dotnet workload list command.
- 3978 Microsoft.Extensions.DependencyInjection to 6.0.1.
- 3976 Update NuGet.* to 6.3.1.
- 3970 Update Basic.Reference.Assemblies.* to 1.3.0.
- 3965 Update Microsoft.CodeAnalysis.CSharp.Scripting to 4.3.1.
- 3956 Extensibility issue - CakeEngineActions is internal.
- 3933 Update NuGet.* to 6.3.0.
- 3920 Update Microsoft.NETCore.Platforms to 6.0.5.
- 3909 Update Autofac to 6.4.0.
- 3901 Update Microsoft.CodeAnalysis.CSharp.Scripting to 4.2.0.
- 3899 Microsoft.NETCore.Platforms to 6.0.4.
- 3897 Update NuGet.* to 6.2.1.
- 3890 Update NuGet.* to 6.2.0.
- 3880 Better support global script cache.
- 2953 Allow setting MSBuild target via MSBuildSettings using a string.
- 2591 Extensibility issue - CakeTaskBuilder is sealed and CakeTaskBuilder(CakeTask task) is internal. .
- 3931 Cake fails to load native libraries on Ubuntu 22.04.
- 3894 Guard against null Console instance on InfoFeature.
- 3879 Build script caching throws after running dry-run on non-changed Cake script.
- 3878 OpenCover filters should be case sensitive.
- 1852 Incorrect escaping of semi-colon in property values for MS Build.
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
Checkmarx One – Scan Summary & Details – ea49b676-d181-4f0c-88b8-e910444858f0
No New Or Fixed Issues Found
Checkmarx One – Scan Summary & Details – ea49b676-d181-4f0c-88b8-e910444858f0