Skip to content

9.1.1: A handful of bugfixes before the new major release

Latest
Compare
Choose a tag to compare
@jfversluis jfversluis released this 08 Nov 08:52
· 2 commits to main since this release
63c0618

.NET 9 is almost upon us, just before the new major release that we will be introduction as part of there, here are a couple of bugfixes that you can use today!

A big thank you to @Bensley96 for the very first contribution to this project 👏

Requirements

The following tools are now required for CommunityToolkit.Maui.:

  • Xcode 16.0.0
    • Read the latest .NET MAUI Release wiki to always find the latest-supported version) of Xcode for .NET MAUI
    • We HIGHLY recommend using the open-source tool Xcodes to easily manage your installed Xcode versions
  • Update to the latest stable version of Visual Studio (or Jet Brains Rider)
  • Download/install .NET SDK v4.0.3
  • After installing the latest stable .NET SDK, update to the latest stable version of the .NET MAUI workload:
    • On macOS, open the Terminal and enter the following command: sudo dotnet workload install maui
    • On Windows, open the command prompt (or Powershell) and enter the following command: dotnet workload install maui
  • Add a global.json file to your application with the following parameters to ensure you're not using a unsupported preview version of .NET (example below)
    • The .NET MAUI Community Toolkit does not support preview releases of .NET

global.json

{
  "sdk": {
    "version": "8.0.403", 
    "rollForward": "latestMajor",
    "allowPrerelease": false
  }
}

What's Changed

🧼 Housekeeping 🧽

  • Bump xunit from 2.9.1 to 2.9.2 in /samples by @dependabot in #2234
  • [Housekeeping] Update NuGet Packages by @brminnick in #2254
  • [housekeeping] Automated PR to fix formatting errors by @github-actions in #2285
  • [housekeeping] Automated PR to fix formatting errors by @github-actions in #2292
  • [housekeeping] Automated PR to fix formatting errors by @github-actions in #2295
  • [housekeeping] Automated PR to fix formatting errors by @github-actions in #2318

New Contributors

Full Changelog: 9.1.0...9.1.1