diff --git a/docs/user-interface/controls/image.md b/docs/user-interface/controls/image.md index abf59ba371..649b5e1c76 100644 --- a/docs/user-interface/controls/image.md +++ b/docs/user-interface/controls/image.md @@ -214,6 +214,13 @@ Image image = new Image }; ``` +::: moniker range=">=net-maui-8.0" + +> [!IMPORTANT] +> Image caching is disabled on Android when loading an image from a stream with the [`ImageSource.FromStream`](xref:Microsoft.Maui.Controls.ImageSource.FromStream%2A) method. This is due to the lack of data from which to create a reasonable cache key. + +::: moniker-end + ## Load a font icon The [`FontImage`](xref:Microsoft.Maui.Controls.Xaml.FontImageExtension) markup extension enables you to display a font icon in any view that can display an . It provides the same functionality as the class, but with a more concise representation. diff --git a/docs/whats-new/dotnet-8.md b/docs/whats-new/dotnet-8.md index 4265a3e613..950dedee4a 100644 --- a/docs/whats-new/dotnet-8.md +++ b/docs/whats-new/dotnet-8.md @@ -51,6 +51,11 @@ The following types or members have been removed: - The `PhoneDialer.Current` property has been removed. Use `PhoneDialer.Default` instead. - `OpenGLView` has been removed. +The following behavior has changed from the previous release: + +- Use of the control from XAML now requires the following `xmlns` namespace declaration: `xmlns:maps="http://schemas.microsoft.com/dotnet/2021/maui/maps"`. +- Image caching is disabled on Android when loading an image from a stream with the [`ImageSource.FromStream`](xref:Microsoft.Maui.Controls.ImageSource.FromStream%2A) method. This is due to the lack of data from which to create a reasonable cache key. +