You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an alpha version of a Compose integration (Docs)
To support the Compose integration, add an alpha version of general Kotlin support, starting with utilities to convert a Glide request into a Flow (Docs, 7d9e1a3)
Enable animated WebP Decoding on P+ using framework APIs (ad35f5e)
Allow Drawables to be loaded with specific themes (17cae33)
Bugs
Register connectivity listeners on API < 24 on background threads (96596ae)
Disable ParcelFileDescriptor rewinding in Robolectric (9840c91)
Rewind ByteBuffers in between each image header parser to avoid spurious failures when multiple parsers read data (4f29ada)
Avoid duplicate notifications of Targets when an error request builder is set (5c232dd)
Deprecate Glide's Extensions, GlideApp, GlideRequest and GlideRequests. Extensions seem to be rarely used and add a lot of complexity to the otherwise fairly simple annotation processor. They're also trivially replicated with Kotlin's extension functions for people who're already using Kotlin. Without Extensions, GlideApp, GlideRequest and GlideRequests serve no additional purpose. Prior to Glide 4.9.0 they were used to merge RequestBuilder and RequestOptions, but now that's done in the library without codegen. See Generated API Deprecation for details.
Deprecate Android framework Fragment support. Applications should use androidx Fragments instead, which we'll continue to support (e802964)
Behavior Changes
Initialize Glide's registry on a background thread to avoid some work on the main thread (6ba4b54)
Update the state of a Request before calling Targets or RequestListeners. Request is generally treated as an internal API but it's possible this could result in some changes to the behavior of custom Targets or RequestListeners that try to use Request to introspect state (c38ce36)