3.3.9
Breaking Changes
FileStore.download(_ file: inout File)
and his overloaded version where removed. You now should use FileStore.download(_ file: File)
, so no need to pass the file as a reference (fileStore.download(&file)
) anymore
Bugfixes
- Crash when try to upload a file with a pre-defined
fileId
- Crash when a protocol marked as
@objc
compatible was used inside of anEntity
subclass - Warning about pending promises being deallocated during usage of
FileStore