[changed] The FirebaseStorageSwift library has been removed. All of its APIs are now included
in the FirebaseStorage library. Please remove references to FirebaseStorageSwift from Podfiles and
Swift Package Manager configurations. import FirebaseStorageSwift should be replaced with
import FirebaseStorage.
[changed] Backported StorageReference async/await APIs to iOS 13, etc. (#9483).
[changed] The global variable StorageErrorDomain is restored for Swift only.
8.15.0
[deprecated] The global variable FIRStorageErrorDomain is deprecated and will
be removed in a future release (#9569).
8.5.0
[fixed] Fixed an issue where Storage could not connect to local emulators using
http (#8389).
[added] Added four APIs to augment automatically generated async/await APIs. See
details via Xcode completion and at the
source.
Feedback appreciated about Firebase and async/await. (#8289)
8.3.0
[changed] Removed usage of a deprecated GTMSessionFetcher method (#8294).
8.2.0
[changed] Instances are now cached. Repeated invocations of Storage.storage()
return the same instance and retain the same settings.
8.0.0
[added] Added FirebaseStorage.useEmulator(), which allows the Storage SDK to
connect to the Cloud Storage for Firebase emulator.
[fixed] Fixed a crash when listAll() was called at the root location. (#5772)
[added] Added a check to FIRStorageUploadTask's putFile: to check if the passed in fileURL is a directory, and provides a clear error if it is. (#5750)
3.6.1
[fixed] Fix a rare case where a StorageTask would call its completion callbacks more than
once. (#5245)
3.6.0
[added] Added watchOS support for Firebase Storage. (#4955)
[fixed] Internal changes to addres -Wunused-property-ivar violation (#4281).
3.4.1
[fixed] Fix crash in FIRStorageUploadTask (#3750).
3.4.0
[fixed] Ensure that users don't accidently invoke Storage() instead of Storage.storage().
If your code calls the constructor of Storage directly, we will throw an assertion failure,
instead of crashing the process later as the instance is used (#3282).
3.3.0
[added] Added StorageReference.list() and StorageReference.listAll(), which allows developers to list the files and folders under the given StorageReference.
3.2.1
[fixed] Fixed crash when URL passed to StorageReference.putFile() is nil (#2852).
3.1.0
[fixed] StorageReference.putFile() now correctly propagates error if file to upload does not exist (#2458, #2350).
3.0.3
[changed] Storage operations can now be scheduled and controlled from any thread (#1302, #1388).
[fixed] Fixed an issue that prevented uploading of files whose names include semicolons.
3.0.2
[changed] Migrate to use FirebaseAuthInterop interfaces to access FirebaseAuth (#1660).
3.0.1
[fixed] Fixed potential EXC_BAD_ACCESS violation in the internal logic for processing finished downloads (#1565, #1747).
3.0.0
[removed] Removed downloadURLs property on StorageMetadata. Use StorageReference.downloadURL(completion:) to obtain a current download URL.
[changed] The maxOperationRetryTime timeout now applies to calls to StorageReference.getMetadata(completion:) and StorageReference.updateMetadata(completion:). These calls previously used the maxDownloadRetryTime and maxUploadRetryTime timeouts.
2.2.0
[changed] Deprecated downloadURLs property on StorageMetadata. Use StorageReference.downloadURL(completion:) to obtain a current download URL.
2.1.3
[changed] Addresses CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF warnings that surface in newer versions of Xcode and CocoaPods.
2.1.2
[added] Firebase Storage is now community-supported on tvOS.
2.1.1
[changed] Internal cleanup in the firebase-ios-sdk repository. Functionality of the Storage SDK is not affected.
2.1.0
[added] Added 'md5Hash' to FIRStorageMetadata.
2.0.2
[changed] Custom FIRStorageMetadata can now be cleared by setting individual properties to 'nil'.
2.0.1
[fixed] Fixed crash in FIRStorageDownloadTask that was caused by invoking callbacks that where no longer active.
[changed] Added 'size' to the NSDictionary representation of FIRStorageMetadata.
2.0.0
[changed] Initial Open Source release.
1.0.6
[fixed] Fixed crash when user-provided callbacks were nil.
[changed] Improved upload performance under spotty connectivity.
1.0.5
[fixed] Snapshot data is now always from the requested snapshot, rather than
the most recent snapshot.
[fixed] Fixed an issue with downloads that were not properly pausing.
1.0.4
[fixed] Fixed an issue causing us to not respect the developer-specified
timeouts for initial up- and download requests.
[fixed] Fixed uploading issues with filenames that contain the '+' character.