Releases: kean/Nuke
Releases Β· kean/Nuke
Nuke 10.7.1
- Fix intermittent SwiftUI crash in NukeUI/FetchImage on onDisappear called during dealloc
Nuke 10.7.0
- Fix M4V support β #523, thanks to Son Changwoo
- Make
ImagePrefetcher
didComplete
closure public β #528, thanks to Winston Du - Rename internal
didEnterBackground
selector - #531
Nuke 10.5.2
- Revert
preparingForDisplay
changes made in #512 - Add URLSession & URLSessionDataTask descriptions - #517, thanks to Stavros Schizas
Nuke 10.5.1
- Fix build for Catalyst
Nuke 10.5.0
- Improve image decompressiong performance on iOS 15 and tvOS 15 by using preparingForDispaly() (requires Xcode 13) - #512
- On iOS 15, tvOS 15, image decompressiong now preserves 8 bits per pixel for grayscale images - #512
- Adopt extended static member lookup (SE-0299) (requires Xcode 13) - #513
// Before
ImageRequest(url: url, processors: [ImageProcessors.Resize(width: 320)])
// After
ImageRequest(url: url, processors: [.resize(width: 320)])
Nuke 10.4.1
- Fix build on watchOS (needs investigation why xcodebuild returns 0 for failed watchOS builds) - #505, thanks fo David Harris
Nuke 10.4
- Add an API for efficiently generating thumbnails or extracting the existing ones from the image data. It can reduce peak memory usage by up to x4 times depending on the original image size - #503
- Fix an issue with scale (
ImageRequest.UserInfoKey.scaleKey
) not being applied to progressively decoded images
Nuke 10.3.4
- Fix an issue where if you pass incorect strings (
String
) in the request, the pipeline eventually start failing silently - #502
Nuke 10.3.3
- Fix an issue with disk cache images being overwritten in some scenarios (with disk cache policies that enable encoding and storage of the processed images) - #500
Nuke 10.3.2
- Add podspec